diff --git a/CHANGELOG.md b/CHANGELOG.md index f460316..06e58e1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## Canary +* More conifugrable settings for F-Chat Rising + + ## 1.3.0 * Improved species search and matching * Toggle ads button shows up in channels list if you have set up ads for the channel diff --git a/chat/CharacterSearch.vue b/chat/CharacterSearch.vue index 27c709e..74a5c09 100644 --- a/chat/CharacterSearch.vue +++ b/chat/CharacterSearch.vue @@ -36,10 +36,10 @@
- +
@@ -110,6 +110,7 @@ resultsComplete = false; characterImage = characterImage; options!: ExtendedSearchData; + shouldShowMatch = true; data: ExtendedSearchData = { kinks: [], @@ -354,6 +355,9 @@ this.results = undefined; return; } + + this.shouldShowMatch = core.state.settings.risingComparisonInSearch; + this.error = ''; const data: Connection.ClientCommands['FKS'] & {[key: string]: (string | number)[]} = {kinks: []}; for(const key in this.data) { diff --git a/chat/SettingsView.vue b/chat/SettingsView.vue index ff6d637..4985d25 100644 --- a/chat/SettingsView.vue +++ b/chat/SettingsView.vue @@ -1,7 +1,7 @@