Fixed modorder not being saved properly

This commit is contained in:
Vhati 2014-10-25 01:23:17 -04:00
parent c0078f37fd
commit b205ac8abd
3 changed files with 11 additions and 1 deletions

View file

@ -11,6 +11,13 @@
"notice" : "Important: Return FTL to an unmodded state before switching to a new version." "notice" : "Important: Return FTL to an unmodded state before switching to a new version."
}, },
"changelog" : [ "changelog" : [
{
"version" : "1.6",
"hidden" : "true",
"changes" : [
"Fixed modorder not being saved properly"
]
},
{ {
"version" : "1.5", "version" : "1.5",
"hidden" : "false", "hidden" : "false",

View file

@ -1,5 +1,8 @@
Changelog Changelog
1.6:
- Fixed modorder not being saved properly
1.5: 1.5:
- Added 'no info... yet' message when mods/ scan is still in-progress - Added 'no info... yet' message when mods/ scan is still in-progress
- Fixed modman.command double-clicking on linux? - Fixed modman.command double-clicking on linux?

View file

@ -459,7 +459,7 @@ public class ManagerFrame extends JFrame implements ActionListener, ModsScanObse
bw = new BufferedWriter(new OutputStreamWriter( os, Charset.forName("UTF-8") )); bw = new BufferedWriter(new OutputStreamWriter( os, Charset.forName("UTF-8") ));
for ( ModFileInfo modFileInfo : tableState.getItems() ) { for ( ModFileInfo modFileInfo : tableState.getItems() ) {
bw.write( modFileInfo.getName() ); bw.write( modFileInfo.getFile().getName() );
bw.write( "\r\n" ); bw.write( "\r\n" );
} }
bw.flush(); bw.flush();