From 7ff9c20e29e6799310e34362f6b9e22fd7f5aa9f Mon Sep 17 00:00:00 2001 From: Cade Ayres Date: Mon, 21 Oct 2024 21:13:50 +0100 Subject: [PATCH] Updated versions and CHANGELOG --- CHANGELOG.md | 19 +++++++++++++++++++ package.json | 2 +- src/_managerinf/ManagerInformation.ts | 2 +- 3 files changed, 21 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index caf48b1ec..0536628cf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,22 @@ +### 3.1.51 +#### Memory and performance improvements +The TS team have been working hard to improve the following: +- Application memory usage has been significantly reduced. + - Expect the manager to use at least 50% less RAM and in many cases an even greater reduction. + - This will stop the white screen issues that have been reported by some people. +- Mod install performance +- Profile import performance + +#### Games added +- TCG Card Shop Simulator +- Distance +- Five Nights at Freddy's: Into the Pit +- Tank Team +- Hard Time III +- Paquerette Down the Bunburrows +- Shapez 2 +- Gorebox + ### 3.1.50 #### Games added - Risk of Rain Returns diff --git a/package.json b/package.json index e2aa080db..b7c0fd4bc 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "r2modman", - "version": "3.1.50", + "version": "3.1.51", "description": "A simple and easy to use mod manager for several games using Thunderstore.", "productName": "r2modman", "author": "ebkr", diff --git a/src/_managerinf/ManagerInformation.ts b/src/_managerinf/ManagerInformation.ts index 3f4bd7e7d..5b392e7a0 100644 --- a/src/_managerinf/ManagerInformation.ts +++ b/src/_managerinf/ManagerInformation.ts @@ -1,7 +1,7 @@ import VersionNumber from '../model/VersionNumber'; export default class ManagerInformation { - public static VERSION: VersionNumber = new VersionNumber('3.1.50'); + public static VERSION: VersionNumber = new VersionNumber('3.1.51'); public static IS_PORTABLE: boolean = false; public static APP_NAME: string = "r2modman"; }