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 @@