Fixed modorder not being saved properly
This commit is contained in:
parent
c0078f37fd
commit
b205ac8abd
3 changed files with 11 additions and 1 deletions
|
@ -11,6 +11,13 @@
|
|||
"notice" : "Important: Return FTL to an unmodded state before switching to a new version."
|
||||
},
|
||||
"changelog" : [
|
||||
{
|
||||
"version" : "1.6",
|
||||
"hidden" : "true",
|
||||
"changes" : [
|
||||
"Fixed modorder not being saved properly"
|
||||
]
|
||||
},
|
||||
{
|
||||
"version" : "1.5",
|
||||
"hidden" : "false",
|
||||
|
|
|
@ -1,5 +1,8 @@
|
|||
Changelog
|
||||
|
||||
1.6:
|
||||
- Fixed modorder not being saved properly
|
||||
|
||||
1.5:
|
||||
- Added 'no info... yet' message when mods/ scan is still in-progress
|
||||
- Fixed modman.command double-clicking on linux?
|
||||
|
|
|
@ -459,7 +459,7 @@ public class ManagerFrame extends JFrame implements ActionListener, ModsScanObse
|
|||
bw = new BufferedWriter(new OutputStreamWriter( os, Charset.forName("UTF-8") ));
|
||||
|
||||
for ( ModFileInfo modFileInfo : tableState.getItems() ) {
|
||||
bw.write( modFileInfo.getName() );
|
||||
bw.write( modFileInfo.getFile().getName() );
|
||||
bw.write( "\r\n" );
|
||||
}
|
||||
bw.flush();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue