Updated urls

This commit is contained in:
Vhati 2017-12-11 22:00:17 -05:00
parent bf51b4b06e
commit 5e5dfb1eed
7 changed files with 23 additions and 23 deletions

View file

@ -1,17 +1,17 @@
Slipstream Mod Manager Slipstream Mod Manager
====================== ======================
Slipstream is a mod manager for the game FasterThanLight ([FTL](http://www.ftlgame.com/)), making it easy to install multiple mods at the same time and, later, revert to vanilla gameplay. Slipstream is a mod manager for the game FasterThanLight ([FTL](https://subsetgames.com/)), making it easy to install multiple mods at the same time and, later, revert to vanilla gameplay.
It is the successor to Grognak's Mod Manager ([GMM](http://www.ftlgame.com/forum/viewtopic.php?p=9994)). It is the successor to Grognak's Mod Manager ([GMM](https://subsetgames.com/forum/viewtopic.php?p=9994)).
<a href="https://raw.github.com/Vhati/Slipstream-Mod-Manager/master/img/screenshot01.png"><img src="https://raw.github.com/Vhati/Slipstream-Mod-Manager/master/img/screenshot01.png" width="145px" height="auto" /></a> <a href="https://raw.github.com/Vhati/Slipstream-Mod-Manager/master/img/screenshot01.png"><img src="https://raw.github.com/Vhati/Slipstream-Mod-Manager/master/img/screenshot01.png" width="145px" height="auto" /></a>
To download compiled binaries, [click here](https://sourceforge.net/projects/slipstreammodmanager/). To download compiled binaries, [click here](https://sourceforge.net/projects/slipstreammodmanager/).
Comments can be made in a forum thread [here](http://www.ftlgame.com/forum/viewtopic.php?f=12&t=17102). Comments can be made in a forum thread [here](https://subsetgames.com/forum/viewtopic.php?f=12&t=17102).
I can accept PayPal donations [here](http://vhati.github.io/donate.html). I can accept PayPal donations [here](https://vhati.github.io/donate.html).
That would be fantastic. That would be fantastic.
@ -20,7 +20,7 @@ Requirements
* Java (1.6 or higher). * Java (1.6 or higher).
* http://www.java.com/en/download/ * http://www.java.com/en/download/
* FTL (1.01-1.6.2, Windows/OSX/Linux, Steam/GOG/Standalone). * FTL (1.01-1.6.2, Windows/OSX/Linux, Steam/GOG/Standalone).
* http://www.ftlgame.com/ * https://subsetgames.com/
* WinXP SP1 can't run Java 1.7. * WinXP SP1 can't run Java 1.7.
* (1.7 was built with VisualStudio 2010, causing a DecodePointer error.) * (1.7 was built with VisualStudio 2010, causing a DecodePointer error.)
* To get 1.6, you may have to google "jdk-6u45-windows-i586.exe". * To get 1.6, you may have to google "jdk-6u45-windows-i586.exe".

File diff suppressed because one or more lines are too long

View file

@ -269,16 +269,16 @@ Pitfalls
FTL Bug (fixed in 1.03.3): If a ship is modded to have level 5 shields, FTL Bug (fixed in 1.03.3): If a ship is modded to have level 5 shields,
asteroid storms will be abnormally fast. asteroid storms will be abnormally fast.
http://www.ftlgame.com/forum/viewtopic.php?f=9&t=11057 https://subsetgames.com/forum/viewtopic.php?f=9&t=11057
The game will crash at the main menu or hangar if an event choice loads The game will crash at the main menu or hangar if an event choice loads
another event, which has a choice that loads the previous event. FTL another event, which has a choice that loads the previous event. FTL
does not like event loops. does not like event loops.
http://www.ftlgame.com/forum/viewtopic.php?f=12&t=12265 https://subsetgames.com/forum/viewtopic.php?f=12&t=12265
When adding a music track to sounds.xml, the explore and battle theme When adding a music track to sounds.xml, the explore and battle theme
files are played simultaneously as one song (mixing between them when files are played simultaneously as one song (mixing between them when
entering/exiting combat). They should have similar duration because if one entering/exiting combat). They should have similar duration because if one
is longer than the other, there may be noticeable silence at the end of the is longer than the other, there may be noticeable silence at the end of the
shorter piece. shorter piece.
http://www.ftlgame.com/forum/viewtopic.php?f=12&t=9111 https://subsetgames.com/forum/viewtopic.php?f=12&t=9111

View file

@ -17,7 +17,7 @@ Requirements
http://www.java.com/en/download/ http://www.java.com/en/download/
FTL (1.01-1.5.13, Windows/OSX/Linux, Steam/GOG/Standalone). FTL (1.01-1.5.13, Windows/OSX/Linux, Steam/GOG/Standalone).
http://www.ftlgame.com/ https://subsetgames.com/
Setup Setup

View file

@ -17,7 +17,7 @@ Requirements
http://www.java.com/en/download/ http://www.java.com/en/download/
FTL (1.01-1.6.2, Windows/OSX/Linux, Steam/GOG/Standalone). FTL (1.01-1.6.2, Windows/OSX/Linux, Steam/GOG/Standalone).
http://www.ftlgame.com/ https://subsetgames.com/
* WinXP SP1 can't run Java 1.7. * WinXP SP1 can't run Java 1.7.
(1.7 was built with VisualStudio 2010, causing a DecodePointer error.) (1.7 was built with VisualStudio 2010, causing a DecodePointer error.)

View file

@ -29,7 +29,7 @@ public class FTLModManager {
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( "1.7" ); public static final ComparableVersion APP_VERSION = new ComparableVersion( "1.7" );
public static final String APP_URL = "http://www.ftlgame.com/forum/viewtopic.php?f=12&t=17102"; public static final String APP_URL = "https://subsetgames.com/forum/viewtopic.php?f=12&t=17102";
public static final String APP_AUTHOR = "Vhati"; public static final String APP_AUTHOR = "Vhati";

View file

@ -68,27 +68,27 @@ public class ForumScraper {
private static final Logger log = LogManager.getLogger( ForumScraper.class ); private static final Logger log = LogManager.getLogger( ForumScraper.class );
private static final String MASTER_LIST_URL = "http://www.ftlgame.com/forum/viewtopic.php?f=11&t=2645"; private static final String MASTER_LIST_URL = "https://subsetgames.com/forum/viewtopic.php?f=11&t=2645";
private static final String FORUM_URL_FRAGMENT = "http://www.ftlgame.com/forum/viewtopic.php"; private static final String FORUM_URL_FRAGMENT = "https://subsetgames.com/forum/viewtopic.php";
public static void main( String[] args ) { public static void main( String[] args ) {
List<String> ignoredURLs = new ArrayList<String>(); List<String> ignoredURLs = new ArrayList<String>();
ignoredURLs.add( "http://www.ftlgame.com/forum/viewtopic.php?f=11&t=11561" ); ignoredURLs.add( "https://subsetgames.com/forum/viewtopic.php?f=11&t=11561" );
ignoredURLs.add( "http://www.ftlgame.com/forum/viewtopic.php?f=12&t=11083" ); ignoredURLs.add( "https://subsetgames.com/forum/viewtopic.php?f=12&t=11083" );
ignoredURLs.add( "http://www.ftlgame.com/forum/viewtopic.php?f=4&t=2938" ); ignoredURLs.add( "https://subsetgames.com/forum/viewtopic.php?f=4&t=2938" );
ignoredURLs.add( "http://www.moddb.com/mods/better-planets-and-backgrounds/downloads/better-asteroids" ); ignoredURLs.add( "http://www.moddb.com/mods/better-planets-and-backgrounds/downloads/better-asteroids" );
ignoredURLs.add( "http://www.ftlgame.com/forum/viewtopic.php?f=4&t=2947" ); ignoredURLs.add( "https://subsetgames.com/forum/viewtopic.php?f=4&t=2947" );
ignoredURLs.add( "http://www.ftlgame.com/forum/viewtopic.php?f=12&t=11604" ); ignoredURLs.add( "https://subsetgames.com/forum/viewtopic.php?f=12&t=11604" );
// Hissatsu's post on "Advanced Battle Systems". // Hissatsu's post on "Advanced Battle Systems".
ignoredURLs.add( "http://www.ftlgame.com/forum/viewtopic.php?f=11&t=11469&start=60#p55171" ); ignoredURLs.add( "https://subsetgames.com/forum/viewtopic.php?f=11&t=11469&start=60#p55171" );
// SpaceDock is an app. // SpaceDock is an app.
ignoredURLs.add( "http://www.ftlgame.com/forum/viewtopic.php?f=11&t=16842" ); ignoredURLs.add( "https://subsetgames.com/forum/viewtopic.php?f=11&t=16842" );
// Beginning Scrap Advantage is bundled in GMM. // Beginning Scrap Advantage is bundled in GMM.
ignoredURLs.add( "http://www.ftlgame.com/forum/viewtopic.php?f=4&t=2464" ); ignoredURLs.add( "https://subsetgames.com/forum/viewtopic.php?f=4&t=2464" );
// Engi Scrap Advantage is bundled in SMM. // Engi Scrap Advantage is bundled in SMM.
ignoredURLs.add( "http://www.ftlgame.com/forum/viewtopic.php?f=12&t=17102" ); ignoredURLs.add( "https://subsetgames.com/forum/viewtopic.php?f=12&t=17102" );
BasicParser parser = new BasicParser(); BasicParser parser = new BasicParser();