← Back to team overview

widelands-dev team mailing list archive

Re: [Merge] lp:~widelands-dev/widelands/revised_maps into lp:widelands

 

But there are a mix of encodings. Go to your folder where current trunk /data/maps is stored and run:

find -name "elemental" -exec file {} \;

The output is something like:

./The_Far_North.wmf/elemental: UTF-8 Unicode text, with very long lines                      
./MP_Scenarios/Smugglers.wmf/elemental: ASCII text                                           
./MP_Scenarios/Island_Hopping.wmf/elemental: UTF-8 Unicode text                              
./Four_Mountains.wmf/elemental: ASCII text                                                   
./Rendez-Vous.wmf/elemental: ASCII text, with very long lines                                
./Fellowships.wmf/elemental: UTF-8 Unicode text                                              
./Finnish_Lakes.wmf/elemental: ASCII text                                                    
./Mystical_Maze.wmf/elemental: ASCII text
[...]

You could also retrieve the encodings of all files:

find -type f -exec file {} \;

Then you will see that also files like "player_position", "objective" or "port_spaces" are encoded in ASCII. I guess those files aren't edited by hand of a windows user.

Time for a new bug report?
-- 
https://code.launchpad.net/~widelands-dev/widelands/revised_maps/+merge/289704
Your team Widelands Developers is subscribed to branch lp:~widelands-dev/widelands/revised_maps.


References