diff --git a/README.md b/README.md index 0305748fe..6263fb934 100644 --- a/README.md +++ b/README.md @@ -7,6 +7,9 @@ - Installing to the Risk of Rain 2 folder will cause problems. DO NOT DO THIS. It's an application, not a mod. ## Latest Updates +### 3.0.19 +- Fixed a bug where the installed search bar wasn't working + ### 3.0.18 - Lots of performance improvements. - Pagination. @@ -40,15 +43,15 @@ If I'm not free, there's a high chance that someone else will be readily availab Installed mod view -![](https://i.imgur.com/8BAxYiB.png) +![](https://i.imgur.com/XNVQBuQ.png) Downloadable mods -![](https://i.imgur.com/DNl7kVy.png) +![](https://i.imgur.com/Do6Awz0.png) Dark theme -![](https://i.imgur.com/rPLesah.png) +![](https://i.imgur.com/szsyGWB.png) Config editor diff --git a/package.json b/package.json index 0f03f503b..05795efc8 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "r2modman", - "version": "3.0.18", + "version": "3.0.19", "description": "r2modman", "productName": "r2modman", "cordovaId": "org.cordova.quasar.app", diff --git a/src/_managerinf/ManagerInformation.ts b/src/_managerinf/ManagerInformation.ts index 46c877a86..959c5572f 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.18'); + public static VERSION: VersionNumber = new VersionNumber('3.0.19'); public static IS_PORTABLE: boolean = false; } \ No newline at end of file diff --git a/src/pages/Manager.vue b/src/pages/Manager.vue index 51a904eae..fe3bbdacc 100644 --- a/src/pages/Manager.vue +++ b/src/pages/Manager.vue @@ -783,7 +783,7 @@ @Watch('localSearchFilter') filterLocalModList() { this.searchableLocalModList = this.localModList.filter((x: ManifestV2) => { - return x.getName().toLowerCase().search(this.thunderstoreSearchFilter.toLowerCase()) >= 0 || this.thunderstoreSearchFilter.trim() === ''; + return x.getName().toLowerCase().search(this.localSearchFilter.toLowerCase()) >= 0 || this.localSearchFilter.trim() === ''; }); }