From bbc2ca2f83616bc40448397dd1cc23749685ebe1 Mon Sep 17 00:00:00 2001 From: "Mr. Stallion" Date: Sun, 2 Jan 2022 16:37:57 -0600 Subject: [PATCH] Smart filters and M1 build --- CHANGELOG.md | 5 +- README.md | 6 +- chat/CharacterSearch.vue | 10 +-- chat/SettingsView.vue | 57 ++++++++++++--- chat/UserView.vue | 38 ++++++---- chat/common.ts | 11 ++- chat/conversations.ts | 101 ++++++++++++++++++--------- chat/preview/CharacterPreview.vue | 67 +++++++++++++++++- docs/_config.yml | 15 ++-- electron/pack.js | 62 +++++++++-------- electron/package.json | 2 +- learn/filter/smart-filter.ts | 111 +++++++++++++++++++++++------- learn/filter/types.ts | 9 +-- learn/matcher.ts | 50 +++++++++++++- learn/profile-cache.ts | 5 +- package.json | 2 +- 16 files changed, 415 insertions(+), 136 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 49cf4ea..ce03ff5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,8 @@ # Changelog -## Canary -* Added a way to hide/filter out characters, messages, and ads (Settings > Identity Politics) +## 1.17.0 +* Added a way to hide/filter out characters, messages, and ads (Settings > Smart Filters) +* Added MacOS M1 build ## 1.16.2 * Fixed broken auto-ads diff --git a/README.md b/README.md index f509eff..b691e0b 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # Download -[Windows](https://github.com/mrstallion/fchat-rising/releases/download/v1.16.2/F-Chat-Rising-1.16.2-win.exe) (75 MB) -| [MacOS](https://github.com/mrstallion/fchat-rising/releases/download/v1.16.2/F-Chat-Rising-1.16.2-macos.dmg) (76 MB) -| [Linux](https://github.com/mrstallion/fchat-rising/releases/download/v1.16.2/F-Chat-Rising-1.16.2-linux.AppImage) (76 MB) +[Windows](https://github.com/mrstallion/fchat-rising/releases/download/v1.17.0/F-Chat-Rising-1.17.0-win.exe) (75 MB) +| [MacOS](https://github.com/mrstallion/fchat-rising/releases/download/v1.17.0/F-Chat-Rising-1.17.0-macos.dmg) (76 MB) +| [Linux](https://github.com/mrstallion/fchat-rising/releases/download/v1.17.0/F-Chat-Rising-1.17.0-linux.AppImage) (76 MB) # F-Chat Rising diff --git a/chat/CharacterSearch.vue b/chat/CharacterSearch.vue index 43bf674..d6ae424 100644 --- a/chat/CharacterSearch.vue +++ b/chat/CharacterSearch.vue @@ -270,7 +270,7 @@ core.connection.onMessage('FKS', async (data) => { const results = data.characters.map((x) => ({ character: core.characters.get(x), profile: null })) .filter((x) => core.state.hiddenUsers.indexOf(x.character.name) === -1 && !x.character.isIgnored) - .filter((x) => this.isSpeciesMatch(x) && this.isBodyTypeMatch(x) && this.isSmartFilterMatch(x)) + .filter((x) => this.isSpeciesMatch(x) && this.isBodyTypeMatch(x) && !this.isSmartFiltered(x)) .sort(sort); // pre-warm cache @@ -348,7 +348,7 @@ private resort(results = this.results) { this.results = (_.filter( results, - (x) => this.isSpeciesMatch(x) && this.isBodyTypeMatch(x) + (x) => this.isSpeciesMatch(x) && this.isBodyTypeMatch(x) && !this.isSmartFiltered(x) ) as SearchResult[]).sort(sort); } @@ -399,12 +399,12 @@ return this.data.bodytypes.indexOf(bodytype!.value) > -1 } - isSmartFilterMatch(result: SearchResult) { + isSmartFiltered(result: SearchResult) { if (!core.state.settings.risingFilter.hideSearchResults) { - return true; + return false; } - return result.profile ? !result.profile?.match.isFiltered : true; + return !!result.profile?.match.isFiltered; } getSpeciesOptions(): SearchSpecies[] { diff --git a/chat/SettingsView.vue b/chat/SettingsView.vue index e2cb43b..c14d9fa 100644 --- a/chat/SettingsView.vue +++ b/chat/SettingsView.vue @@ -1,7 +1,7 @@