diff --git a/CHANGELOG.md b/CHANGELOG.md index fb1fcc1..8733e91 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## Canary +* Fixed max ad length for automated ads to be 50,000 characters +* Fixed 'unsure' sexual orientation to display correctly in character preview + + ## 1.5.0 * Use `Ctrl+Tab`, `Ctrl+Shift+Tab`, `Ctrl+PgDown`, and `Ctrl+PgUp` to switch between character tabs * Better search rankings diff --git a/README.md b/README.md index b1163be..b232f44 100644 --- a/README.md +++ b/README.md @@ -75,7 +75,7 @@ This repository contains a heavily customized version of the mainline F-Chat 3.0 1. Open a conversation channel of your preference, such as `#Sex Driven LFRP` 1. Locate `Ads` dropdown at the top right corner of the channel view -1. Click `Ads > Edit Channel Ads` +1. Click `Ads > Edit Channel Ads...` 1. Enter one or more ads 1. Click `Save settings` 1. Click `Ads > Start Posting Ads` diff --git a/chat/ConversationView.vue b/chat/ConversationView.vue index 4849094..749edb1 100644 --- a/chat/ConversationView.vue +++ b/chat/ConversationView.vue @@ -69,7 +69,7 @@ - + diff --git a/chat/ads/ConversationAdSettings.vue b/chat/ads/ConversationAdSettings.vue index 8f21790..0b5081e 100644 --- a/chat/ads/ConversationAdSettings.vue +++ b/chat/ads/ConversationAdSettings.vue @@ -13,7 +13,7 @@ - + diff --git a/chat/localize.ts b/chat/localize.ts index 7f5a46c..12920e3 100644 --- a/chat/localize.ts +++ b/chat/localize.ts @@ -20,7 +20,7 @@ const strings: {[key: string]: string | undefined} = { 'admgr.postingBegins': 'Posting beings in {0}m {1}s', 'admgr.nextPostDue': 'Next ad in {0}m {1}s', 'admgr.expiresIn': ', auto-posting expires in {0}m {1}s', - 'admgr.noAds': 'No ads have been set up -- auto-posting will be cancelled. Click "Ads > Edit Channel Ads" to set up your ads.', + 'admgr.noAds': 'No ads have been set up -- auto-posting will be cancelled. Click "Ads > Edit Channel Ads..." to set up your ads.', 'admgr.activeHeader': 'Auto-Posting Ads', 'admgr.comingNext': 'Coming Next', 'admgr.renew': 'Renew', diff --git a/learn/matcher-types.ts b/learn/matcher-types.ts index e595a3f..8c59d87 100644 --- a/learn/matcher-types.ts +++ b/learn/matcher-types.ts @@ -37,8 +37,7 @@ export enum Orientation { Gay = 5, Bisexual = 6, Asexual = 7, - Unsure = 8, - Cuntboy = 59, + Unsure = 59, BiMalePreference = 89, BiFemalePreference = 90, Pansexual = 127,