Skip to content

Commit aabbd99

Browse files
committed
fixing typo in token name
1 parent d88b046 commit aabbd99

6 files changed

+13
-33
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# CHANGELOG
22

3+
## v2.4.1
4+
5+
- fix: plugin will no longer fail to load in DE and FR client
6+
37
## v2.4.0
48

59
- add: newly learned skills will be detected automatically and become visible and usable in TW II

TravelWindowII.plugin

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<Information>
44
<Name>Travel Window II</Name>
55
<Author>Hyoss</Author>
6-
<Version>v2.4.0</Version>
6+
<Version>v2.4.1</Version>
77
<Description>
88
This plugin creates a single window that contains all the available travel skills, including the race, class and reputation skills.
99
It is a further development of Travel Window, that has been worked on by multiple authors before.

TravelWindowII.plugincompendium

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22
<PluginConfig xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
33
<Id>1113</Id>
44
<Name>Travel Window II</Name>
5-
<Version>v2.4.0</Version>
5+
<Version>v2.4.1</Version>
66
<Author>Hyoss</Author>
77
<InfoUrl>http://www.lotrointerface.com/downloads/info1113</InfoUrl>
88
<DownloadUrl>http://www.lotrointerface.com/downloads/download1113</DownloadUrl>
99
<Descriptors>
1010
<descriptor>TravelWindowII\TravelWindowII.plugin</descriptor>
1111
</Descriptors>
1212
<Dependencies />
13-
</PluginConfig>
13+
</PluginConfig>

doc/lotroforums.txt

+2-10
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,7 @@
11
A new version is available!
22

3-
v2.4.0
3+
v2.4.1
44

5-
- add: newly learned skills will be detected automatically and become visible and usable in TW II
6-
- add: new option to use skill name as label instead of location name
7-
- add: incorporated RU translations by Svertalf
8-
- add: new options tab with list of still learnable travel skills
9-
- add: acquisition method for skills on still learnable skills tab (beta, EN only)
10-
- enhance: checkboxes in options now have better labels so checkbox marked means "turned on"
11-
- enhance: minor improvements to main window, mostly fixing scaling issues
12-
13-
Huge kudos to @whiterabbit963 for making this release possible!
5+
- fix: plugin will no longer fail to load in DE and FR client
146

157
Download it at [url=https://www.lotrointerface.com/downloads/fileinfo.php?id=1113]Lotrointerface[/url], [url=https://github.com/wduda/TravelWindowII/releases]GitHub[/url], via [url=https://github.com/JeremyStepp/OneLauncher]OneLauncher[/url] or via [url=https://www.lotrointerface.com/downloads/info663-LOTROPluginCompendium.html]Plugin Compendium[/url].

doc/lotrointerface.txt

+2-18
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,6 @@ This is a full plugin and can be installed standalone. Follow the general plugin
99
I recommend you install and manage your plugins with the LOTRO Plugin Compendium found at this URL, since it will install plugins cleanly: [URL="http://www.lotrointerface.com/downloads/info663-LOTROPluginCompendium.html"]LOTRO Plugin Compendium App[/URL]
1010

1111
[SIZE="3"]FAQ:[/SIZE]
12-
How can I make a newly learned skill show up in Travel Window II?
13-
These three options work:
14-
[LIST]
15-
[*] right-click anywhere on TW II, select "Check untrained skills" from the menu, the skill will show up
16-
[*] open options window, go to Enable tab, click "Check untrained skills" button, the skill will show up
17-
[*] relog the character
18-
[/LIST]
19-
2012
Why does my racial skill show up even though I do not have the racial trait equipped?
2113
[LIST]
2214
[*]Because once the trait is acquired, it is classified as a "learned" skill by LOTRO itself, even though it is greyed out. Travel Window II, unfortunately, has no way of knowing if you have the racial trait equipped and the skill is usable. If you are not using the skill permanently, you can use the Enable/Disable options to hide it like any other skill.
@@ -29,16 +21,8 @@ Use the mousewheel while hovering over the travel skill icon to change the selec
2921

3022
Version history:
3123

32-
v2.4.0
33-
34-
- add: newly learned skills will be detected automatically and become visible and usable in TW II
35-
- add: new option to use skill name as label instead of location name
36-
- add: incorporated RU translations by Svertalf
37-
- add: new options tab with list of still learnable travel skills
38-
- add: acquisition method for skills on still learnable skills tab (beta, EN only)
39-
- enhance: checkboxes in options now have better labels so checkbox marked means "turned on"
40-
- enhance: minor improvements to main window, mostly fixing scaling issues
24+
v2.4.1
4125

42-
Huge kudos to @whiterabbit963 for making this release possible!
26+
- fix: plugin will no longer fail to load in DE and FR client
4327

4428
Rest of changelog found [URL="https://github.com/wduda/TravelWindowII/blob/master/CHANGELOG.md"]here[/URL].

src/LocaleStrings.lua

+2-2
Original file line numberDiff line numberDiff line change
@@ -778,8 +778,8 @@ LC_DE.token.TOKEN_OF_LAKE_AND_RIVERS = ""
778778
LC_FR.token.TOKEN_OF_LAKE_AND_RIVERS = ""
779779

780780
LC_EN.token.MARK_OF_LONGBEARDS = "Mark of the Longbeards"
781-
LC_DE.token.TOKEN_OF_LAKE_AND_RIVERS = ""
782-
LC_FR.token.TOKEN_OF_LAKE_AND_RIVERS = ""
781+
LC_DE.token.MARK_OF_LONGBEARDS = ""
782+
LC_FR.token.MARK_OF_LONGBEARDS = ""
783783

784784
LC_EN.token.GULMARK = "Gúlmark"
785785
LC_DE.token.GULMARK = ""

0 commit comments

Comments
 (0)