From ef123fdddc9f65240088b744d8855fdf6f3fb872 Mon Sep 17 00:00:00 2001 From: "Mr. Stallion" Date: Sun, 25 Oct 2020 11:55:21 -0500 Subject: [PATCH] More settings --- CHANGELOG.md | 4 ++ chat/CharacterSearch.vue | 8 ++- chat/SettingsView.vue | 72 ++++++++++++++++++++++++-- chat/UserMenu.vue | 14 ++--- chat/common.ts | 5 ++ chat/interfaces.ts | 5 ++ site/character_page/character_page.vue | 5 +- site/character_page/kinks.vue | 7 +++ 8 files changed, 107 insertions(+), 13 deletions(-) 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 @@