Skip to content

Commit

Permalink
1.2.0 Version Bump
Browse files Browse the repository at this point in the history
  • Loading branch information
DeadlyMC committed Sep 2, 2019
1 parent e440faf commit 3d482e7
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 7 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ apply plugin: 'java'
apply plugin: 'net.minecraftforge.gradle.forge'
apply plugin: 'org.spongepowered.mixin'

version = "1.1.3"
version = "1.2.0"
group = "carpet.forge" // http://maven.apache.org/guides/mini/guide-naming-conventions.html
archivesBaseName = "forgedcarpet"

Expand Down Expand Up @@ -137,7 +137,7 @@ processResources {
jar {
manifest.attributes(
'FMLCorePlugin': 'carpet.forge.core.CarpetCore',
'FMLCorePluginContainsFMLMod': 'carpet.forge.CarpetServer',
'FMLCorePluginContainsFMLMod': 'carpet.forge.ForgedCarpet',
'TweakClass': 'org.spongepowered.asm.launch.MixinTweaker',
'ForceLoadAsMod': 'true',
'TweakOrder': 0
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/carpet/forge/CarpetSettings.java
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

public class CarpetSettings
{
public static final String carpetVersion = "v19_05_02";
public static final String carpetVersion = "v1.2.0";
public static final String minecraftVersion = "1.12.2";
public static final Logger LOG = LogManager.getLogger();
public static boolean locked = false;
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/carpet/forge/utils/Reference.java
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ public class Reference {

public static final String MOD_ID = "fc1122";
public static final String MOD_NAME = "ForgedCarpet";
public static final String MOD_VERSION = "1.1.3";
public static final String MOD_VERSION = "1.2.0";
public static final String ACCEPTED_MC_VERSIONS = "1.12.2";
public static final String FINGERPRINT = "@FINGERPRINT@";
public static final String UPDATE_URL = "https://raw.githubusercontent.com/DeadlyMC/ForgedCarpet112/master/update.json";
Expand Down
7 changes: 4 additions & 3 deletions update.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"homepage": "https://minecraft.curseforge.com/projects/forgedcarpet/files",
"promos": {
"1.12.2-latest": "1.1.3",
"1.12.2-recommended": "1.1.3"
"1.12.2-latest": "1.2.0",
"1.12.2-recommended": "1.2.0"
},
"1.12.2": {
"Alpha1": "\n\nPlease ignore the mod version in game.\nThe first ever alpha release of the Carpet Mod port to Forge is out!\nI have managed to port over the following with it:\n\n ObserversDoNonUpdate\n Flippin Cactus\n TNTDoNotUpdate\n Hopper Counters (Not Tested)\n RSTurbo\n New Light\n FlyingMachineTransparent\n LlamaOverFeedingFix\n PistonGhostBlocksFix\n MiningGhostBlocksFix\n BoundingBoxFix\n CommandCameraMode\n CommandPing\n CommandBlockInfo\n CommandSpawn (Not Tested)\n CommandEntityInfo\n CommandAutoSave\n CommandCounter\n CommandFillBiome\n\nThis is an alpha release so don't be surprised to see any Crashes/Bugs......But none have been encountered yet\n",
Expand All @@ -11,6 +11,7 @@
"1.1.0": "v1.1.0 of ForgedCarpet112 is out and with it comes lots of crash fixes and more!\n\n- Liteloader compatibility!\n- Added huskSpawningInTemples rule\n- Added silverFishDropGravel rule\n- fillUpdates and fillLimits now work for the new /carpetfill, /carpetsetblock and\t\n /carpetclone commands. This ensures better compatibility with other mods\n- Added the forge update checker. There will be green icon next to my mod whenever\n updates are available.\n \nFixes:\n- Fixed profiler crash in nether ",
"1.1.1": "Fixed crash with forge only clients",
"1.1.2": "Fixed items not stacking and causing a huge amount of lag especially in farms",
"1.1.3": "Fixed crash with tweakeroo"
"1.1.3": "Fixed crash with tweakeroo",
"1.2.0": "ForgedCarpet-1.2.0\nv1.2.0 of ForgedCarpet is now out!\nWith it comes a bunch of bugfixes, features and a way smoother game experience ;)\n\nChanges in 1.2.0 :\n- Carpet rules should now load properly when changing worlds.\n- Newlight shouldn't lag the game now.\n- Removed disableSpawnChunks, tickingAreas, tileTickLimit, commandRNG, commandStructure. (Lemme know if u wanted any of these rules)\n- `shulkerSpawningInEndCities` to allow shulkers to spawn withing end city bounding boxes.\n- `antiCheatSpeed` option to disable various server side movement limits towards the cheaty players.\n- `/carpet carpets` to give non-op players access to certain carpet commands.\n- `relaxedBlockPlacement` to allow players to place pumpkins and fence gates in mid air.\n- `explosionNoBlockDamage` to disable tnt explosion damage.\n- `rotatorBlock` to rotate blocks via dispenser with a cactus.\n- `customMOTD` to change server MOTD ingame.\n- `railPowerLimit` to change the power limit for rails.\n- `desertShrubs` can form when trying to plant saplings in arid climates without water nearby.\n- `renewableSponges` via summoning a lightning on a regular guardians and converting them to elder guardians.\n- `xpNoCooldown` to make players absorb xp instantly.\n- `portalCreativeDelay` -> Portals won't let a creative player go through instantly andHolding obsidian in either hand won't let you\n through at all.\n- Backend changes."
}
}

0 comments on commit 3d482e7

Please sign in to comment.