Skip to content

Commit f1449ae

Browse files
committed
Replaced all secure.tibia.com references
- They always redirect to the frontpage - Replaced with www.tibia.com
1 parent 30ce941 commit f1449ae

File tree

5 files changed

+15
-8
lines changed

5 files changed

+15
-8
lines changed

CHANGELOG.rst

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,13 @@ Changelog
66
Due to this library relying on external content, older versions are not guaranteed to work.
77
Try to always use the latest version.
88

9+
.. _v2.0.1:
10+
11+
2.0.1 (2019-06-04)
12+
==================
13+
14+
- Replaced references to ``secure.tibia.com`` with ``www.tibia.com`` as the former always redirects to the front page.
15+
916
.. _v2.0.0:
1017

1118
2.0.0 (2019-06-03)

docs/intro.rst

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -90,10 +90,10 @@ Supported Sections
9090
+---------------------------+---------------------------------------+--------------------------------------+
9191

9292

93-
.. _Characters: https://secure.tibia.com/community/?subtopic=characters
94-
.. _Guilds: https://secure.tibia.com/community/?subtopic=guilds
95-
.. _Highscores: https://secure.tibia.com/community/?subtopic=highscores
96-
.. _Houses: https://secure.tibia.com/community/?subtopic=houses
97-
.. _Kill Statistics: https://secure.tibia.com/community/?subtopic=killstatistics
93+
.. _Characters: https://wwww.tibia.com/community/?subtopic=characters
94+
.. _Guilds: https://www.tibia.com/community/?subtopic=guilds
95+
.. _Highscores: https://www.tibia.com/community/?subtopic=highscores
96+
.. _Houses: https://www.tibia.com/community/?subtopic=houses
97+
.. _Kill Statistics: https://www.tibia.com/community/?subtopic=killstatistics
9898
.. _News: https://www.tibia.com/news/?subtopic=newsarchive
9999
.. _Worlds: https://www.tibia.com/community/?subtopic=worlds

tests/resources/tibiacom_about.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@
5959
"MMORPG",
6060
"Massively multiplayer online role-playing game"
6161
],
62-
"url":"https://secure.tibia.com",
62+
"url":"https://wwww.tibia.com",
6363
"image":"https://ssl-static-tibia.akamaized.net/images/global/general/streaming/youtube/poster.jpg",
6464
"screenshot":"https://ssl-static-tibia.akamaized.net/images/images/global/general/streaming/youtube/backgroundart.jpg",
6565
"sameAs": [

tibiapy/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
from tibiapy.world import *
1313
from tibiapy.client import *
1414

15-
__version__ = '2.0.0'
15+
__version__ = '2.0.1'
1616

1717
from logging import NullHandler
1818

tibiapy/highscores.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
results_pattern = re.compile(r'Results: (\d+)')
1818

19-
HIGHSCORES_URL = "https://secure.tibia.com/community/?subtopic=highscores&world=%s&list=%s&profession=%d&currentpage=%d"
19+
HIGHSCORES_URL = "https://wwww.tibia.com/community/?subtopic=highscores&world=%s&list=%s&profession=%d&currentpage=%d"
2020
HIGHSCORES_URL_TIBIADATA = "https://api.tibiadata.com/v2/highscores/%s/%s/%s.json"
2121

2222

0 commit comments

Comments
 (0)