diff --git a/README.md b/README.md index bb218d3cd..baa6e835f 100644 --- a/README.md +++ b/README.md @@ -54,6 +54,9 @@ From small features such as always-expanded cards, all the way to larger feature The only thing you have to consider when suggesting a feature is the impact it will have on users who don't have a lot of experience with computers. ## Changelog +### 3.0.24 +- Fixed profile importing from 3.0.23 change + ### 3.0.23 - Updating a mod now shows the version you currently have installed. - Mod cards no longer expand if not previously opened when searching. diff --git a/package.json b/package.json index fe499cd70..91a783cbb 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "r2modman", - "version": "3.0.23", + "version": "3.0.24", "description": "r2modman", "productName": "r2modman", "cordovaId": "org.cordova.quasar.app", diff --git a/src/_managerinf/ManagerInformation.ts b/src/_managerinf/ManagerInformation.ts index 0a8d31838..ffd6741f2 100644 --- a/src/_managerinf/ManagerInformation.ts +++ b/src/_managerinf/ManagerInformation.ts @@ -1,6 +1,6 @@ import VersionNumber from 'src/model/VersionNumber'; export default class ManagerInformation { - public static VERSION: VersionNumber = new VersionNumber('3.0.23'); + public static VERSION: VersionNumber = new VersionNumber('3.0.24'); public static IS_PORTABLE: boolean = false; }