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