mirror of
http://git.eaglercraft.rip/eaglercraft/eaglercraft-1.8.git
synced 2025-04-29 01:51:58 -05:00

quality is now comparable to MSAA4, but provides antialiasing to pixels on upscaled textures as well which is not possible with conventional MSAA
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 = "u11";
|
|
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 = "u11";
|
|
|
|
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;
|
|
|
|
|
|
|
|
}
|