mirror of
https://github.com/wesnoth/wesnoth
synced 2025-04-28 20:03:18 +00:00
parent
3d13628bb8
commit
59b6049f9f
@ -35,6 +35,7 @@
|
|||||||
### Miscellaneous and Bug Fixes
|
### Miscellaneous and Bug Fixes
|
||||||
* wmllint now validates `rank=` values in `[campaign]` (issue #7224)
|
* wmllint now validates `rank=` values in `[campaign]` (issue #7224)
|
||||||
* Fixed a crash when checking if abilities are active during game initialisation after loading a saved game. (issues #5643, #7238)
|
* Fixed a crash when checking if abilities are active during game initialisation after loading a saved game. (issues #5643, #7238)
|
||||||
|
* wmlxgettext now outputs Unix-like paths in .pot file comments even on Windows (issue #7380)
|
||||||
|
|
||||||
## Version 1.17.11
|
## Version 1.17.11
|
||||||
### Campaigns
|
### Campaigns
|
||||||
|
@ -17,6 +17,8 @@ def autoscan(pathdir):
|
|||||||
value = re.sub(r'^\/', '', value)
|
value = re.sub(r'^\/', '', value)
|
||||||
else:
|
else:
|
||||||
value = re.sub(r'^(?:[A-Za-z]\:)?\\', '', value)
|
value = re.sub(r'^(?:[A-Za-z]\:)?\\', '', value)
|
||||||
|
# use Unix path separators even on Windows
|
||||||
|
value = value.replace("\\", "/")
|
||||||
filelist.append(value)
|
filelist.append(value)
|
||||||
# end if m
|
# end if m
|
||||||
# end for name
|
# end for name
|
||||||
|
Loading…
x
Reference in New Issue
Block a user