From 778a62b4005bb33c09a4f8fefbb0468b6044fec0 Mon Sep 17 00:00:00 2001 From: Makkkkus <37084190+Makkkkus@users.noreply.github.com> Date: Fri, 6 Dec 2024 00:21:04 +0100 Subject: [PATCH] Increment version and update changelog --- ChangeLog.md | 16 ++++++++++++++++ build.gradle | 2 +- src/client/java/minicraft/core/Game.java | 2 +- 3 files changed, 18 insertions(+), 2 deletions(-) diff --git a/ChangeLog.md b/ChangeLog.md index fb763bd32..c091a0c81 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -7,6 +7,22 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html), but some sections are changed to compliant this project. +## [2.2.1] + +### Additions +* Added inventory capacity counter + +### Fixes +* Prevent creepers from blowing up stairs +* Updated localisation +* Fixed Russian font +* Fixed performance issues +* Fixed corner rendering of some tiles +* Fixed overworld rendering as totally black at night +* Fixed some keys not bound to cursor mappings +* Fixed a wrong texture +* Fixed problems with screenshot feature + ## [2.2.0] ### Additions diff --git a/build.gradle b/build.gradle index 3e430917d..b23440e61 100644 --- a/build.gradle +++ b/build.gradle @@ -6,7 +6,7 @@ plugins { allprojects { apply plugin: "java" - version = "2.2.0" + version = "2.2.1" sourceCompatibility = 8 [compileJava, compileTestJava]*.options*.encoding = 'UTF-8' diff --git a/src/client/java/minicraft/core/Game.java b/src/client/java/minicraft/core/Game.java index b5a61c39e..3d9cebc8e 100644 --- a/src/client/java/minicraft/core/Game.java +++ b/src/client/java/minicraft/core/Game.java @@ -25,7 +25,7 @@ protected Game() { public static final String NAME = "Minicraft Plus"; // This is the name on the application window. - public static final Version VERSION = new Version("2.2.0"); + public static final Version VERSION = new Version("2.2.1"); public static InputHandler input; // Input used in Game, Player, and just about all the *Menu classes. public static Player player;