diff --git a/SIGNED_CLIENT.env b/SIGNED_CLIENT.env new file mode 100644 index 00000000..bf3a8201 --- /dev/null +++ b/SIGNED_CLIENT.env @@ -0,0 +1,3 @@ +SIGNED_CLIENT_INTEGER="201" +SIGNED_CLIENT_VERSION="0.2.1" +SIGNED_CLIENT_CHANGELOG="Bugfix" diff --git a/desktopRuntime/resources/EPKVersionIdentifier.txt b/desktopRuntime/resources/EPKVersionIdentifier.txt index 341cf11f..7dff5b89 100644 --- a/desktopRuntime/resources/EPKVersionIdentifier.txt +++ b/desktopRuntime/resources/EPKVersionIdentifier.txt @@ -1 +1 @@ -0.2.0 \ No newline at end of file +0.2.1 \ No newline at end of file diff --git a/desktopRuntime/resources/UpdateDownloadSources.txt b/desktopRuntime/resources/UpdateDownloadSources.txt index f9ef8acf..c6ced65f 100644 --- a/desktopRuntime/resources/UpdateDownloadSources.txt +++ b/desktopRuntime/resources/UpdateDownloadSources.txt @@ -1,2 +1 @@ -url: https://starlike.zumbiepig.dev/latest_update.dat -url: https://starlike.orionzleon.me/latest_update.dat +url: https://starlike.orionzleon.me/latest_update.dat \ No newline at end of file diff --git a/javascript/index.html b/javascript/index.html index 51d98ed8..a576f6bf 100644 --- a/javascript/index.html +++ b/javascript/index.html @@ -14,7 +14,8 @@ }else { window.eaglercraftXOpts = { container: "game_frame", - assetsURI: "assets.epk" + assetsURI: "assets.epk", + enableSignatureBadge: false }; var q = window.location.search; diff --git a/src/game/java/net/minecraft/item/crafting/RecipesCrafting.java b/src/game/java/net/minecraft/item/crafting/RecipesCrafting.java index 4bd611c1..f129eaf5 100644 --- a/src/game/java/net/minecraft/item/crafting/RecipesCrafting.java +++ b/src/game/java/net/minecraft/item/crafting/RecipesCrafting.java @@ -67,6 +67,7 @@ public class RecipesCrafting { Character.valueOf('S'), Items.steel, Character.valueOf('U'), Items.uranium_rod }); parCraftingManager.addRecipe(new ItemStack(Items.titanium_drill, 1), new Object[] { "TTT", "TDT", "TTT", Character.valueOf('T'), Items.titanium_ingot, Character.valueOf('D'), Items.platinum_drill }); + /* parCraftingManager.addRecipe(new ItemStack(Blocks.mosaic, 4, BlockMosaic.EnumType.OAK.getMetadata()), new Object[] { "##", "##", Character.valueOf('#'), new ItemStack(Blocks.planks, 1, BlockPlanks.EnumType.OAK.getMetadata()) }); @@ -85,5 +86,6 @@ public class RecipesCrafting { parCraftingManager.addRecipe(new ItemStack(Blocks.mosaic, 4, BlockMosaic.EnumType.DARK_OAK.getMetadata()), new Object[] { "##", "##", Character.valueOf('#'), new ItemStack(Blocks.planks, 1, BlockPlanks.EnumType.DARK_OAK.getMetadata()) }); + */ } } \ No newline at end of file diff --git a/src/main/java/net/lax1dude/eaglercraft/v1_8/EaglercraftVersion.java b/src/main/java/net/lax1dude/eaglercraft/v1_8/EaglercraftVersion.java index 1c2847a7..9e9c6b5d 100644 --- a/src/main/java/net/lax1dude/eaglercraft/v1_8/EaglercraftVersion.java +++ b/src/main/java/net/lax1dude/eaglercraft/v1_8/EaglercraftVersion.java @@ -9,7 +9,7 @@ public class EaglercraftVersion { /// Customize these to fit your fork: public static final String projectForkName = "Starlike Client"; - public static final String projectForkVersion = "0.2.0"; + public static final String projectForkVersion = "0.2.1"; public static final String projectForkVendor = "SpeedSlicer and zumbiepig"; public static final String projectForkURL = ""; @@ -32,7 +32,7 @@ public class EaglercraftVersion { public static final boolean enableUpdateService = true; public static final String updateBundlePackageName = "dev.zumbiepig.starlikeclient.client"; - public static final int updateBundlePackageVersionInt = 200; // (0.2.1 would be 000201 or just 201) + public static final int updateBundlePackageVersionInt = 201; // (0.2.1 would be 000201 or just 201) public static final String updateLatestLocalStorageKey = "latestUpdate_" + updateBundlePackageName; @@ -55,7 +55,7 @@ public class EaglercraftVersion { public static final String mainMenuStringC = null; public static final String mainMenuStringD = "Copyright Mojang AB. Do not distribute!"; - public static final String mainMenuStringE = projectForkName + " " + projectForkVersion; + public static final String mainMenuStringE = " " + projectForkName + " " + projectForkVersion; public static final String mainMenuStringF = "Made by " + projectForkVendor; public static final String mainMenuStringG = null;