+ :tabs="[l('settings.tabs.general'), l('settings.tabs.notifications'), 'F-Chat Rising 🦄', l('settings.tabs.hideAds'), l('settings.tabs.import')]">
{{l('settings.disallowedTags')}}
@@ -119,22 +119,70 @@
+
Matching
+
Colorize ads, profiles, and names of compatible and incompatible characters
+
+
+
+
+ Show quick match results in the right click character menu
+
+
+
+
+
+
+ Show quick match results in search results
+
+
+
+
+
+
+
+
+
+
+
+
Preview
+
+
- Show link previews when the mouse hovers over a link
+ Show a link/image preview when the mouse hovers over a link
+
+
+
+
+ Show a character preview when mouse hovers over a character name
+
+
+
+
+
Profile
+
+
Automatically compare kinks when viewing a character profile
+
+
+
+
+ Automatically expand custom kinks
+
+
+
@@ -197,6 +245,12 @@
risingLinkPreview!: boolean;
risingAutoCompareKinks!: boolean;
+ risingAutoExpandCustomKinks!: boolean;
+ risingCharacterPreview!: boolean;
+ risingComparisonInUserMenu!: boolean;
+ risingComparisonInSearch!: boolean;
+
+
async load(): Promise {
const settings = core.state.settings;
this.playSound = settings.playSound;
@@ -224,6 +278,11 @@
this.risingAdScore = settings.risingAdScore;
this.risingLinkPreview = settings.risingLinkPreview;
this.risingAutoCompareKinks = settings.risingAutoCompareKinks;
+
+ this.risingAutoExpandCustomKinks = settings.risingAutoExpandCustomKinks;
+ this.risingCharacterPreview = settings.risingCharacterPreview;
+ this.risingComparisonInUserMenu = settings.risingComparisonInUserMenu;
+ this.risingComparisonInSearch = settings.risingComparisonInSearch;
}
async doImport(): Promise {
@@ -270,7 +329,12 @@
risingAdScore: this.risingAdScore,
risingLinkPreview: this.risingLinkPreview,
- risingAutoCompareKinks: this.risingAutoCompareKinks
+ risingAutoCompareKinks: this.risingAutoCompareKinks,
+
+ risingAutoExpandCustomKinks: this.risingAutoExpandCustomKinks,
+ risingCharacterPreview: this.risingCharacterPreview,
+ risingComparisonInUserMenu: this.risingComparisonInUserMenu,
+ risingComparisonInSearch: this.risingComparisonInSearch
};
if(this.notifications) await core.notifications.requestPermission();
}
@@ -282,4 +346,4 @@
margin-left: 0;
margin-right: 0;
}
-
\ No newline at end of file
+
diff --git a/chat/UserMenu.vue b/chat/UserMenu.vue
index 72064e3..d2821c2 100644
--- a/chat/UserMenu.vue
+++ b/chat/UserMenu.vue
@@ -238,14 +238,16 @@ import _ from 'lodash';
this.position = {left: `${touch.clientX}px`, top: `${touch.clientY}px`};
this.match = null;
- const myProfile = core.characters.ownProfile;
- const theirProfile = await core.cache.profileCache.get(this.character.name);
+ if (core.state.settings.risingComparisonInUserMenu) {
+ const myProfile = core.characters.ownProfile;
+ const theirProfile = await core.cache.profileCache.get(this.character.name);
- if (myProfile && theirProfile) {
- const match = Matcher.identifyBestMatchReport(myProfile.character, theirProfile.character.character);
+ if (myProfile && theirProfile) {
+ const match = Matcher.identifyBestMatchReport(myProfile.character, theirProfile.character.character);
- if (_.keys(match.merged).length > 0) {
- this.match = match.merged;
+ if (_.keys(match.merged).length > 0) {
+ this.match = match.merged;
+ }
}
}
diff --git a/chat/common.ts b/chat/common.ts
index 2f70686..c604ef7 100644
--- a/chat/common.ts
+++ b/chat/common.ts
@@ -46,6 +46,11 @@ export class Settings implements ISettings {
risingAdScore = true;
risingLinkPreview = true;
risingAutoCompareKinks = true;
+
+ risingAutoExpandCustomKinks = true;
+ risingCharacterPreview = true;
+ risingComparisonInUserMenu = true;
+ risingComparisonInSearch = true;
}
diff --git a/chat/interfaces.ts b/chat/interfaces.ts
index 241b4b4..cfd42e2 100644
--- a/chat/interfaces.ts
+++ b/chat/interfaces.ts
@@ -211,6 +211,11 @@ export namespace Settings {
readonly risingAdScore: boolean;
readonly risingLinkPreview: boolean;
readonly risingAutoCompareKinks: boolean;
+
+ readonly risingAutoExpandCustomKinks: boolean;
+ readonly risingCharacterPreview: boolean;
+ readonly risingComparisonInUserMenu: boolean;
+ readonly risingComparisonInSearch: boolean;
}
}
diff --git a/site/character_page/character_page.vue b/site/character_page/character_page.vue
index f788db8..9d6db38 100644
--- a/site/character_page/character_page.vue
+++ b/site/character_page/character_page.vue
@@ -42,7 +42,7 @@
-
+
@@ -135,6 +135,7 @@
refreshing = false;
error = '';
tab = '0';
+ autoExpandCustoms = false;
/* guestbookPostCount: number | null = null;
friendCount: number | null = null;
@@ -173,6 +174,8 @@
@Watch('name')
async onCharacterSet(): Promise {
this.tab = '0';
+ this.autoExpandCustoms = core.state.settings.risingAutoExpandCustomKinks;
+
await this.load();
// Kludge kluge
diff --git a/site/character_page/kinks.vue b/site/character_page/kinks.vue
index 488c821..fcf1ae6 100644
--- a/site/character_page/kinks.vue
+++ b/site/character_page/kinks.vue
@@ -89,6 +89,9 @@
readonly character!: Character;
@Prop
readonly oldApi?: true;
+ @Prop({required: true})
+ readonly autoExpandCustoms!: boolean;
+
shared = Store;
characterToCompare = Utils.settings.defaultCharacter;
highlightGroup: number | undefined;
@@ -193,6 +196,8 @@
if ((this.character) && (this.character.is_self))
return;
+ this.expandedCustoms = this.autoExpandCustoms;
+
if (core.state.settings.risingAutoCompareKinks) {
await this.compareKinks(core.characters.ownProfile, true);
}
@@ -203,6 +208,8 @@
if ((this.character) && (this.character.is_self))
return;
+ this.expandedCustoms = this.autoExpandCustoms;
+
if (core.state.settings.risingAutoCompareKinks) {
await this.compareKinks(core.characters.ownProfile, true);
}