diff --git a/README.md b/README.md index 4477b2c24..d51800577 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.26 +- Fixed error thrown related to libraryfolders.vdf not being parsed. + ### 3.0.25 - Installed mod list now has sort filters. - Thunderstore mod list can be updated via settings. No more having to restart! diff --git a/package.json b/package.json index 13a42b1c5..6ebebe1b4 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "r2modman", - "version": "3.0.25", + "version": "3.0.26", "description": "r2modman", "productName": "r2modman", "cordovaId": "org.cordova.quasar.app", diff --git a/src/_managerinf/ManagerInformation.ts b/src/_managerinf/ManagerInformation.ts index 23035b0c7..d56809bb9 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.25'); + public static VERSION: VersionNumber = new VersionNumber('3.0.26'); public static IS_PORTABLE: boolean = false; }