Minor
This commit is contained in:
parent
3a736dea26
commit
4282fa544a
|
@ -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
|
||||
|
|
|
@ -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`
|
||||
|
|
|
@ -69,7 +69,7 @@
|
|||
|
||||
<dropdown :keep-open="false" wrap-class="btn-group ads" link-style="" link-class="btn btn-secondary dropdown-toggle dropdown-toggle-split" v-show="(conversation.channel.mode == 'both' || conversation.channel.mode == 'ads')">
|
||||
<button class="dropdown-item" type="button" @click="toggleAutoPostAds()">{{conversation.adManager.isActive() ? 'Pause' : 'Start'}} Posting Ads</button>
|
||||
<button class="dropdown-item" type="button" @click="showAdSettings()">Edit Channel Ads</button>
|
||||
<button class="dropdown-item" type="button" @click="showAdSettings()">Edit Channel Ads...</button>
|
||||
<div class="dropdown-divider"></div>
|
||||
<button class="dropdown-item" :class="{ selected: showNonMatchingAds }" type="button" @click="toggleNonMatchingAds()">Show Incompatible Ads</button>
|
||||
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
<a @click="removeAd(index)" title="Remove Ad"><i class="fas fa-times-circle"></i></a>
|
||||
</label>
|
||||
|
||||
<editor :id="'ad' + conversation.key + '-' + index" v-model="ads[index]" :hasToolbar="true" class="form-control">
|
||||
<editor :id="'ad' + conversation.key + '-' + index" v-model="ads[index]" :hasToolbar="true" class="form-control" :maxlength="50000">
|
||||
</editor>
|
||||
</div>
|
||||
<button class="btn btn-outline-secondary" @click="addAd()">Add Another</button>
|
||||
|
|
|
@ -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',
|
||||
|
|
|
@ -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,
|
||||
|
|
Loading…
Reference in New Issue