From 470e211541dd2211d91c3d30599a61b657d787b5 Mon Sep 17 00:00:00 2001 From: Emanuel Rabina Date: Sun, 10 Jan 2021 17:15:17 +1300 Subject: [PATCH] 0.31.2 --- CHANGELOG.md | 13 +++++++++++++ build.gradle | 2 +- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3431b48b..b22cc67f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,19 @@ Changelog ========= +### 0.31.2 + - Upgrade the reflections library which came with a change that removes the + large Google Guava dependency - we're now 2MB lighter + - Use the current desktop refresh rate in full screen mode instead of always + replacing it with the highest the monitor can do + - Added a resource manager which can search for items inside a directory and + all its subdirectories, loosening one restriction of the map viewer only + working with my current setup. However, a new restriction is that it doesn't + yet work on `.mix` files inside `.mix` files, so it's still somewhat specific + to my workspace 😅 + - Sped up map rendering and reduced memory usage by reusing map tiles already + encountered + ### 0.31.1 - Lean on Java's built-in blowfish cipher to replace the BlowfishJ library I'd been using. diff --git a/build.gradle b/build.gradle index a16e845b..98e7e271 100644 --- a/build.gradle +++ b/build.gradle @@ -21,7 +21,7 @@ plugins { // Global configuration allprojects { group = 'nz.net.ultraq.redhorizon' - version = '0.31.2-SNAPSHOT' + version = '0.31.2' } // Root project configuration