Added 'Engi Scrap Advantage' example mod and incremented version
This commit is contained in:
parent
724a40c5a2
commit
1a0bb938ac
8 changed files with 36 additions and 9 deletions
|
@ -2,13 +2,30 @@
|
|||
"history_versions" : {
|
||||
"1" : {
|
||||
"latest" : {
|
||||
"version" : "1.1",
|
||||
"version" : "1.2",
|
||||
"urls" : {
|
||||
"Windows" : "http://sourceforge.net/projects/slipstreammodmanager/files/Slipstream/1.1/Slipstream%20Mod%20Manager%20v1.1-Win.zip/download",
|
||||
"Unix" : "http://sourceforge.net/projects/slipstreammodmanager/files/Slipstream/1.1/Slipstream%20Mod%20Manager%20v1.1-Unix.tar.gz/download"
|
||||
"Forum" : "http://www.ftlgame.com/forum/viewtopic.php?f=12&t=17102",
|
||||
"Mac/Linux" : "N/A",
|
||||
"Windows" : "N/A"
|
||||
}
|
||||
},
|
||||
"changelog" : [
|
||||
{
|
||||
"version" : "1.2",
|
||||
"changes" : [
|
||||
"Added a commandline interface",
|
||||
"Incorporated strict-then-sloppy XML parsing into the patch process",
|
||||
"Added special XML tags for advanced appending",
|
||||
"Added XML Sandbox for tinkering with append tags",
|
||||
"Added 'Engi Scrap Advantage' example mod",
|
||||
"Added scrollbars to progress popups to show long error messages",
|
||||
"The main window's geometry is saved on exit",
|
||||
"Added urls in the statusbar when hovering over links",
|
||||
"Added periodic checking for SMM updates",
|
||||
"Added FTL launching on Linux",
|
||||
"Fixed critical bugs in InputStreams returned by FTLDat"
|
||||
]
|
||||
},
|
||||
{
|
||||
"version": "1.1",
|
||||
"changes" : [
|
||||
|
|
2
pom.xml
2
pom.xml
|
@ -2,7 +2,7 @@
|
|||
<modelVersion>4.0.0</modelVersion>
|
||||
<groupId>net.vhati.modmanager</groupId>
|
||||
<artifactId>ftl-mod-manager</artifactId>
|
||||
<version>1.1</version>
|
||||
<version>1.2</version>
|
||||
<name>Slipstream Mod Manager</name>
|
||||
|
||||
<!-- Determined by mvn versions:display-plugin-updates -->
|
||||
|
|
File diff suppressed because one or more lines are too long
BIN
skel_common/mods/Beginning Scrap Advantage.ftl
Normal file
BIN
skel_common/mods/Beginning Scrap Advantage.ftl
Normal file
Binary file not shown.
BIN
skel_common/mods/Engi Scrap Advantage 1.0.ftl
Normal file
BIN
skel_common/mods/Engi Scrap Advantage 1.0.ftl
Normal file
Binary file not shown.
|
@ -2,4 +2,12 @@ Drop any .ftl files here and restart Slipstream in order to be able to patch the
|
|||
|
||||
The last-used order is remembered with modorder.txt, if it exists here.
|
||||
|
||||
Beginning Scrap Advantage is a simple example mod. All it does is give you some extra scrap when you first start a game. Rename .ftl to .zip and extract it in order to study it further.
|
||||
|
||||
"Beginning Scrap Advantage" is a simple example mod. All it does is give you some extra scrap when you first start a game. Rename .ftl to .zip and extract it in order to study it further.
|
||||
|
||||
|
||||
"Engi Scrap Advantage" is another example mod demonstrating advanced XML tags to chain-load existing events. All it does is give you some extra scrap when you enter an Engi sector.
|
||||
|
||||
See also: "readme_modders.txt".
|
||||
|
||||
Those special tags require Slipstream Mod Manager 1.2+.
|
||||
|
|
|
@ -1,9 +1,11 @@
|
|||
Changelog
|
||||
|
||||
???:
|
||||
1.2:
|
||||
- Added a commandline interface
|
||||
- Incorporated strict-then-sloppy XML parsing into the patch process
|
||||
- Added XML Sandbox for syntax tinkering
|
||||
- Added special XML tags for advanced appending
|
||||
- Added XML Sandbox for tinkering with append tags
|
||||
- Added 'Engi Scrap Advantage' example mod
|
||||
- Added scrollbars to progress popups to show long error messages
|
||||
- The main window's geometry is saved on exit
|
||||
- Added urls in the statusbar when hovering over links
|
||||
|
|
|
@ -25,7 +25,7 @@ public class FTLModManager {
|
|||
private static final Logger log = LogManager.getLogger(FTLModManager.class);
|
||||
|
||||
public static final String APP_NAME = "Slipstream Mod Manager";
|
||||
public static final ComparableVersion APP_VERSION = new ComparableVersion( "???" );
|
||||
public static final ComparableVersion APP_VERSION = new ComparableVersion( "1.2" );
|
||||
public static final String APP_URL = "http://www.ftlgame.com/forum/viewtopic.php?f=12&t=17102";
|
||||
public static final String APP_AUTHOR = "Vhati";
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue