mirror of
https://git.webmc.xyz/Starlike-Client/Starlike-Client
synced 2025-06-05 18:32:01 -09:00
Starlike v0.2.1
This commit is contained in:
parent
3d46f68aee
commit
044d551e70
3
SIGNED_CLIENT.env
Normal file
3
SIGNED_CLIENT.env
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
SIGNED_CLIENT_INTEGER="201"
|
||||||
|
SIGNED_CLIENT_VERSION="0.2.1"
|
||||||
|
SIGNED_CLIENT_CHANGELOG="Bugfix"
|
@ -1 +1 @@
|
|||||||
0.2.0
|
0.2.1
|
@ -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
|
|
@ -14,7 +14,8 @@
|
|||||||
}else {
|
}else {
|
||||||
window.eaglercraftXOpts = {
|
window.eaglercraftXOpts = {
|
||||||
container: "game_frame",
|
container: "game_frame",
|
||||||
assetsURI: "assets.epk"
|
assetsURI: "assets.epk",
|
||||||
|
enableSignatureBadge: false
|
||||||
};
|
};
|
||||||
|
|
||||||
var q = window.location.search;
|
var q = window.location.search;
|
||||||
|
@ -67,6 +67,7 @@ public class RecipesCrafting {
|
|||||||
Character.valueOf('S'), Items.steel, Character.valueOf('U'), Items.uranium_rod });
|
Character.valueOf('S'), Items.steel, Character.valueOf('U'), Items.uranium_rod });
|
||||||
parCraftingManager.addRecipe(new ItemStack(Items.titanium_drill, 1), new Object[] { "TTT", "TDT", "TTT",
|
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 });
|
Character.valueOf('T'), Items.titanium_ingot, Character.valueOf('D'), Items.platinum_drill });
|
||||||
|
/*
|
||||||
parCraftingManager.addRecipe(new ItemStack(Blocks.mosaic, 4, BlockMosaic.EnumType.OAK.getMetadata()),
|
parCraftingManager.addRecipe(new ItemStack(Blocks.mosaic, 4, BlockMosaic.EnumType.OAK.getMetadata()),
|
||||||
new Object[] { "##", "##", Character.valueOf('#'),
|
new Object[] { "##", "##", Character.valueOf('#'),
|
||||||
new ItemStack(Blocks.planks, 1, BlockPlanks.EnumType.OAK.getMetadata()) });
|
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()),
|
parCraftingManager.addRecipe(new ItemStack(Blocks.mosaic, 4, BlockMosaic.EnumType.DARK_OAK.getMetadata()),
|
||||||
new Object[] { "##", "##", Character.valueOf('#'),
|
new Object[] { "##", "##", Character.valueOf('#'),
|
||||||
new ItemStack(Blocks.planks, 1, BlockPlanks.EnumType.DARK_OAK.getMetadata()) });
|
new ItemStack(Blocks.planks, 1, BlockPlanks.EnumType.DARK_OAK.getMetadata()) });
|
||||||
|
*/
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -9,7 +9,7 @@ public class EaglercraftVersion {
|
|||||||
/// Customize these to fit your fork:
|
/// Customize these to fit your fork:
|
||||||
|
|
||||||
public static final String projectForkName = "Starlike Client";
|
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 projectForkVendor = "SpeedSlicer and zumbiepig";
|
||||||
|
|
||||||
public static final String projectForkURL = "";
|
public static final String projectForkURL = "";
|
||||||
@ -32,7 +32,7 @@ public class EaglercraftVersion {
|
|||||||
public static final boolean enableUpdateService = true;
|
public static final boolean enableUpdateService = true;
|
||||||
|
|
||||||
public static final String updateBundlePackageName = "dev.zumbiepig.starlikeclient.client";
|
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;
|
public static final String updateLatestLocalStorageKey = "latestUpdate_" + updateBundlePackageName;
|
||||||
|
|
||||||
@ -55,7 +55,7 @@ public class EaglercraftVersion {
|
|||||||
public static final String mainMenuStringC = null;
|
public static final String mainMenuStringC = null;
|
||||||
public static final String mainMenuStringD = "Copyright Mojang AB. Do not distribute!";
|
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 mainMenuStringF = "Made by " + projectForkVendor;
|
||||||
|
|
||||||
public static final String mainMenuStringG = null;
|
public static final String mainMenuStringG = null;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user