From 1f2f62d85147e267d15f594a0699e26cac9b4e26 Mon Sep 17 00:00:00 2001 From: Aizistral Date: Fri, 22 Dec 2023 15:21:16 +0100 Subject: [PATCH] Build 2.29.0 coming right up --- common.gradle | 6 +++--- docs/README.md | 4 ++-- docs/changelog.html | 17 +++++++++++++++++ gradle.properties | 4 ++-- .../enigmaticlegacy/EnigmaticLegacy.java | 2 +- version.txt | 2 +- 6 files changed, 26 insertions(+), 9 deletions(-) diff --git a/common.gradle b/common.gradle index e04a37e0..b5e0a3ba 100644 --- a/common.gradle +++ b/common.gradle @@ -103,7 +103,7 @@ curseforge { changelogType = 'html' changelog = file('docs/changelog.html') - addGameVersion '1.19.4' + addGameVersion project.version_mc addGameVersion 'Forge' addGameVersion 'Java 17' @@ -126,8 +126,8 @@ modrinth { versionType = "release" changelog = "See on CurseForge: https://www.curseforge.com/minecraft/mc-mods/enigmatic-legacy/files" uploadFile = jar - gameVersions = ["1.19.4"] - loaders = ['forge'] + gameVersions = [ project.version_mc ] + loaders = [ 'forge' ] dependencies { // The scope can be `required`, `optional`, or `incompatible` required.project "nU0bVIaL" diff --git a/docs/README.md b/docs/README.md index 4b115388..0b013486 100644 --- a/docs/README.md +++ b/docs/README.md @@ -1,8 +1,8 @@ # Enigmatic Legacy [![](http://cf.way2muchnoise.eu/versions/enigmatic-legacy.svg)](https://www.curseforge.com/minecraft/mc-mods/enigmatic-legacy) [![](http://cf.way2muchnoise.eu/full_enigmatic-legacy_downloads.svg)](https://www.curseforge.com/minecraft/mc-mods/enigmatic-legacy/files) -**Current Version:** 2.28.0 +**Current Version:** 2.29.0 -**Minecraft Version:** 1.19.4 +**Minecraft Version:** 1.20.1 **Forge Version:** 43.1.0 or later. diff --git a/docs/changelog.html b/docs/changelog.html index 7d188caf..208bb87c 100644 --- a/docs/changelog.html +++ b/docs/changelog.html @@ -1,5 +1,22 @@

The Changelog:


+
[Release 2.29.0]:
+

+ - First and last 1.20.1 port;
+ - Fixed Unholy Stone not working properly;
+ - Added Amulet of Deception and Soul Dust as WIP items;
+ - Added a blacklist of creative-only items for Randomium mod;
+ - Overhauled texture and model of The Eternal Cake (thanks to SkySem);
+ - All permanent item entities (soul crystals, abyssal hearts, that kind of stuff) now possess glowing effect;
+ - Overhauled textures of Emblem of Monster Slayer and Emblem of Bloodstained Valor (courtesy of SoulRacer65);
+ - Implemented Sack of Astral Dust (textures by SoulRacer65);
+ - Implemented The Judgement;
+ - Fixed entity tick error when receiving damage (thanks yanggx98, #465);
+ - Optimized performance of flight scrolls (thanks leafreynolds, #462);
+ - Updated Russian and improved English localization (thanks FETREX-DEV, #441).
+



+ +

[Release 2.28.0]:

 - First and last 1.19.4 port;
diff --git a/gradle.properties b/gradle.properties index 8efa41c3..fb3c93d2 100644 --- a/gradle.properties +++ b/gradle.properties @@ -6,7 +6,7 @@ org.gradle.daemon=false the_acknowledgment_edition=20 # Mod -mod_version=2.28.0 +mod_version=2.29.0 mod_group=com.aizistral.enigmaticlegacy mod_id=enigmaticlegacy mod_name=Enigmatic Legacy @@ -17,7 +17,7 @@ mod_author=Aizistral mod_description=This mod is designed to provide tools that will aid you in exploring seemingly endless reaches of Minecraft's worlds. As well as new resources, powerful gear and ancient relics - to reward you for doing so. Despite revolving around themes of arcane and mystery, Enigmatic Legacy doesn't stray too far away from what vanilla has to offer, instead attempting to expand upon it's mechanics and fill in the holes left open. -mod_credits=Terraria and some of it's mods, for inspiring my creations functionally and visually; Minecraft Dungeons, for blocks and models that make me question why we don't have anything like this in Minecraft itself; Botania and it's creator known as Vazkii, for some basic code I could conveniently borrow instead of having to re-invent the wheel; frdovahkick, for amazing work over some of the textures in the mod. +mod_credits=Terraria and some of it's mods, for inspiring my creations functionally and visually; Minecraft Dungeons, for blocks and models that make me question why we don't have anything like this in Minecraft itself; Botania and it's creator known as Vazkii, for some basic code I could conveniently borrow instead of having to re-invent the wheel; frdovahkick, for amazing work over some of the textures in the mod; SkySem, for some models and textures created on-comission; SoulRacer65, for some textures overhauls and entirely new textures. mod_icon=EL_logo.png mod_license=Enigmatic Legacy License diff --git a/src/main/java/com/aizistral/enigmaticlegacy/EnigmaticLegacy.java b/src/main/java/com/aizistral/enigmaticlegacy/EnigmaticLegacy.java index 923b3e47..d35ecb78 100644 --- a/src/main/java/com/aizistral/enigmaticlegacy/EnigmaticLegacy.java +++ b/src/main/java/com/aizistral/enigmaticlegacy/EnigmaticLegacy.java @@ -179,7 +179,7 @@ @Mod(EnigmaticLegacy.MODID) public class EnigmaticLegacy { public static final String MODID = "enigmaticlegacy"; - public static final String VERSION = "2.28.0"; + public static final String VERSION = "2.29.0"; public static final String RELEASE_TYPE = "Release"; public static final String NAME = "Enigmatic Legacy"; diff --git a/version.txt b/version.txt index 2785cb49..7fd286ec 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -2.28.0 Release \ No newline at end of file +2.29.0 Release \ No newline at end of file