Skip to content

Commit

Permalink
Merge pull request #197 from ebkr/feature/196/fix-installed-search
Browse files Browse the repository at this point in the history
Feature/196/fix installed search
  • Loading branch information
ebkr authored May 19, 2020
2 parents d63508e + c040f11 commit 53f0a7f
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 6 deletions.
9 changes: 6 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "r2modman",
"version": "3.0.18",
"version": "3.0.19",
"description": "r2modman",
"productName": "r2modman",
"cordovaId": "org.cordova.quasar.app",
Expand Down
2 changes: 1 addition & 1 deletion src/_managerinf/ManagerInformation.ts
Original file line number Diff line number Diff line change
@@ -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;
}
2 changes: 1 addition & 1 deletion src/pages/Manager.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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() === '';
});
}
Expand Down

0 comments on commit 53f0a7f

Please sign in to comment.