mirror of
http://git.eaglercraft.rip/eaglercraft/eaglercraft-1.8.git
synced 2025-04-30 02:01:59 -05:00

When you enter fullscreen via F11 or video settings you can now use regular ESC again to pause and unpause the game and close your inventory and use CTRL as the sprint key without closing the tab. This greatly improves user experience when you are a new player and don't understand yet that regular vanilla ESC and CTRL+W messes up the game.
47 lines
1.6 KiB
Java
47 lines
1.6 KiB
Java
package net.lax1dude.eaglercraft.v1_8;
|
|
|
|
public class EaglercraftVersion {
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
/// Customize these to fit your fork:
|
|
|
|
public static final String projectForkName = "EaglercraftX";
|
|
public static final String projectForkVersion = "u8";
|
|
public static final String projectForkVendor = "lax1dude";
|
|
|
|
public static final String projectForkURL = "https://gitlab.com/lax1dude/eaglercraftx-1.8";
|
|
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
// Do not change these, they must stay as credit to lax1dude's
|
|
// original repository for maintaining the project:
|
|
|
|
public static final String projectOriginName = "EaglercraftX";
|
|
public static final String projectOriginAuthor = "lax1dude";
|
|
public static final String projectOriginRevision = "1.8";
|
|
public static final String projectOriginVersion = "u8";
|
|
|
|
public static final String projectOriginURL = "https://gitlab.com/lax1dude/eaglercraftx-1.8";
|
|
|
|
|
|
// Miscellaneous variables:
|
|
|
|
public static final String mainMenuStringA = "Minecraft 1.8.8";
|
|
public static final String mainMenuStringB = projectOriginName + " " +
|
|
projectOriginRevision + "-" + projectOriginVersion;
|
|
public static final String mainMenuStringC = "Rewritten by " + projectOriginAuthor;
|
|
public static final String mainMenuStringD = "Resources Copyright Mojang AB";
|
|
|
|
public static final String mainMenuStringE = projectForkName + " " + projectForkVersion;
|
|
public static final String mainMenuStringF = "Made by " + projectForkVendor;
|
|
|
|
public static final boolean mainMenuEnableGithubButton = true;
|
|
|
|
|
|
|
|
}
|