From 5e73a77ee26f573078e4b58a997dd36debfe2971 Mon Sep 17 00:00:00 2001 From: Cade Ayres Date: Wed, 13 Nov 2024 22:14:05 +0000 Subject: [PATCH] Updated CHANGELOG and versions (#1548) --- CHANGELOG.md | 16 ++++++++++++++++ package.json | 2 +- src/_managerinf/ManagerInformation.ts | 2 +- 3 files changed, 18 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 32c0737d7..3a6a08d73 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,15 @@ +### 3.1.53 +#### Games added +- WEBFISHING + +#### Other changes +- BONELAB support should now function correctly + - Assemblies will no longer be regenerated on every launch +- "Preloader fix" has been replaced with "Reset \ installation" + - This will delete the entire game directory and prompt Steam to re-validate files + - The preloader fix was originally a solution for old Risk of Rain 2 modded installations using SeikoML failing to + launch + ### 3.1.52 #### Small quality of life changes - Upgraded from Electron v11 to v24 @@ -6,6 +18,10 @@ - Fixed sorting by download count - Reduced time taken to install when a mod has a large number of dependencies +#### Games added +- Old Market Simulator +- Subterranauts + ### 3.1.51 #### Memory and performance improvements The TS team have been working hard to improve the following: diff --git a/package.json b/package.json index 25257af8c..69797535d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "r2modman", - "version": "3.1.52", + "version": "3.1.53", "description": "A simple and easy to use mod manager for many games using Thunderstore.", "productName": "r2modman", "author": "ebkr", diff --git a/src/_managerinf/ManagerInformation.ts b/src/_managerinf/ManagerInformation.ts index 6450fe194..b68d2ee9a 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.52'); + public static VERSION: VersionNumber = new VersionNumber('3.1.53'); public static IS_PORTABLE: boolean = false; public static APP_NAME: string = "r2modman"; }