From ac52f30679a27054f2c6335c142f3f2938c948ab Mon Sep 17 00:00:00 2001 From: "Mr. Stallion" Date: Thu, 25 Mar 2021 16:54:10 -0500 Subject: [PATCH] Unpin preview with middle click --- CHANGELOG.md | 8 +++++++- README.md | 1 + bbcode/IconView.vue | 2 +- bbcode/UrlTagView.vue | 2 +- chat/Chat.vue | 6 +++++- chat/ChatView.vue | 9 +++++++-- chat/UserView.vue | 2 +- chat/preview/ImagePreview.vue | 10 +++++++++- electron/Index.vue | 18 +++++++++++++++++- electron/Window.vue | 4 ++-- 10 files changed, 51 insertions(+), 11 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6193aa2..6e515e0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,13 @@ # Changelog +## 1.12.0 +* Post length preference is now part of the profile match score +* Improved kink match scoring +* Middle click a link to pin or unpin preview + + ## 1.11.0 -* Kinks are now part of the profile matching score +* Kinks are now part of the profile match score * Merged with the latest official F-Chat codebase * Fixed broken `[collapse]` when wrapped in `[heading]` diff --git a/README.md b/README.md index 1af3676..b6d1024 100644 --- a/README.md +++ b/README.md @@ -93,6 +93,7 @@ This repository contains a heavily customized version of the mainline F-Chat 3.0 * Sexual preference * Dominance preference * Human/anthro preference + * Post length preference * Non-custom kinks * Species 1. Maching for non-binary genders relies on kinks. For example, if your non-binary character has a preference for females, make sure 'females' are listed as a favorite kink. diff --git a/bbcode/IconView.vue b/bbcode/IconView.vue index 6cd745a..aa151fe 100644 --- a/bbcode/IconView.vue +++ b/bbcode/IconView.vue @@ -5,7 +5,7 @@ @mouseover.prevent="show()" @mouseenter.prevent="show()" @mouseleave.prevent="dismiss()" - @click.middle.prevent="toggleStickyness()" + @click.middle.prevent.stop="toggleStickyness()" @click.right.passive="dismiss(true)" @click.left.passive="dismiss(true)" > diff --git a/bbcode/UrlTagView.vue b/bbcode/UrlTagView.vue index e3a3fe6..864a550 100644 --- a/bbcode/UrlTagView.vue +++ b/bbcode/UrlTagView.vue @@ -11,7 +11,7 @@ @mouseover.prevent="show()" @mouseenter.prevent="show()" @mouseleave.prevent="dismiss()" - @click.middle.prevent="toggleStickyness()" + @click.middle.prevent.stop="toggleStickyness()" >{{text}} - +
{{error}}
@@ -220,6 +220,10 @@ core.connection.connect(this.selectedCharacter.name); } + + getChatView(): ChatView | undefined { + return this.$refs['chatview'] as ChatView; + } } diff --git a/chat/ChatView.vue b/chat/ChatView.vue index f2c787f..6ac7f6d 100644 --- a/chat/ChatView.vue +++ b/chat/ChatView.vue @@ -34,7 +34,7 @@ + @click.middle.prevent.stop="conversation.close()">
{{conversation.character.name}} @@ -54,7 +54,7 @@
+ @click.middle.prevent.stop="conversation.close()"> {{conversation.name}} diff --git a/chat/UserView.vue b/chat/UserView.vue index ff66ab3..5210851 100644 --- a/chat/UserView.vue +++ b/chat/UserView.vue @@ -1,5 +1,5 @@ - + diff --git a/electron/Window.vue b/electron/Window.vue index 51c14cf..1c533bb 100644 --- a/electron/Window.vue +++ b/electron/Window.vue @@ -94,7 +94,7 @@ async mounted(): Promise { log.debug('init.window.mounting'); // top bar devtools - browserWindow.webContents.openDevTools({ mode: 'detach' }); + // browserWindow.webContents.openDevTools({ mode: 'detach' }); updateSupportedLanguages(browserWindow.webContents.session.availableSpellCheckerLanguages); @@ -262,7 +262,7 @@ ); // tab devtools - view.webContents.openDevTools(); + // view.webContents.openDevTools(); // console.log('ADD TAB LANGUAGES', getSafeLanguages(this.settings.spellcheckLang), this.settings.spellcheckLang); view.webContents.session.setSpellCheckerLanguages(getSafeLanguages(this.settings.spellcheckLang));