Update Presence

Adds RuneLitePlusPlugin
-adds option for RL+ presence (disabled by default)
-Redirects a lot of older RL links to our updated ones.

Prepare for next development iteration 0.1.2
This commit is contained in:
zeruth
2019-05-10 04:40:09 -04:00
parent d4e6d2d6fb
commit e811375eaa
10 changed files with 222 additions and 35 deletions

View File

@@ -81,7 +81,7 @@ import org.slf4j.LoggerFactory;
@Slf4j
public class RuneLite
{
public static final String RUNELIT_VERSION = "0.1.1";
public static final String RUNELIT_VERSION = "0.1.2";
public static final File RUNELITE_DIR = new File(System.getProperty("user.home"), ".runelite");
public static final File PROFILES_DIR = new File(RUNELITE_DIR, "profiles");
public static final File PLUGIN_DIR = new File(RUNELITE_DIR, "plugins");
@@ -108,7 +108,7 @@ public class RuneLite
private SessionManager sessionManager;
@Inject
private DiscordService discordService;
public DiscordService discordService;
@Inject
private ClientSessionManager clientSessionManager;
@@ -309,9 +309,6 @@ public class RuneLite
// Close the splash screen
splashScreen.close();
// Initialize Discord service
discordService.init();
// Register event listeners
eventBus.register(clientUI);
eventBus.register(pluginManager);