Added 'Engi Scrap Advantage' example mod and incremented version

This commit is contained in:
Vhati 2013-09-08 05:49:39 -04:00
parent 724a40c5a2
commit 1a0bb938ac
8 changed files with 36 additions and 9 deletions

View file

@ -2,13 +2,30 @@
"history_versions" : { "history_versions" : {
"1" : { "1" : {
"latest" : { "latest" : {
"version" : "1.1", "version" : "1.2",
"urls" : { "urls" : {
"Windows" : "http://sourceforge.net/projects/slipstreammodmanager/files/Slipstream/1.1/Slipstream%20Mod%20Manager%20v1.1-Win.zip/download", "Forum" : "http://www.ftlgame.com/forum/viewtopic.php?f=12&t=17102",
"Unix" : "http://sourceforge.net/projects/slipstreammodmanager/files/Slipstream/1.1/Slipstream%20Mod%20Manager%20v1.1-Unix.tar.gz/download" "Mac/Linux" : "N/A",
"Windows" : "N/A"
} }
}, },
"changelog" : [ "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", "version": "1.1",
"changes" : [ "changes" : [

View file

@ -2,7 +2,7 @@
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<groupId>net.vhati.modmanager</groupId> <groupId>net.vhati.modmanager</groupId>
<artifactId>ftl-mod-manager</artifactId> <artifactId>ftl-mod-manager</artifactId>
<version>1.1</version> <version>1.2</version>
<name>Slipstream Mod Manager</name> <name>Slipstream Mod Manager</name>
<!-- Determined by mvn versions:display-plugin-updates --> <!-- Determined by mvn versions:display-plugin-updates -->

File diff suppressed because one or more lines are too long

Binary file not shown.

Binary file not shown.

View file

@ -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. 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+.

View file

@ -1,9 +1,11 @@
Changelog Changelog
???: 1.2:
- Added a commandline interface - Added a commandline interface
- Incorporated strict-then-sloppy XML parsing into the patch process - 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 - Added scrollbars to progress popups to show long error messages
- The main window's geometry is saved on exit - The main window's geometry is saved on exit
- Added urls in the statusbar when hovering over links - Added urls in the statusbar when hovering over links

View file

@ -25,7 +25,7 @@ public class FTLModManager {
private static final Logger log = LogManager.getLogger(FTLModManager.class); private static final Logger log = LogManager.getLogger(FTLModManager.class);
public static final String APP_NAME = "Slipstream Mod Manager"; 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_URL = "http://www.ftlgame.com/forum/viewtopic.php?f=12&t=17102";
public static final String APP_AUTHOR = "Vhati"; public static final String APP_AUTHOR = "Vhati";