Fixes
This commit is contained in:
parent
a884f528de
commit
cd77ece220
|
@ -7,7 +7,9 @@
|
||||||
<div class="row ad-viewer" ref="pageBody">
|
<div class="row ad-viewer" ref="pageBody">
|
||||||
<template v-for="message in messages">
|
<template v-for="message in messages">
|
||||||
<h3>#{{message.channelName}} <span class="message-time">{{formatTime(message.datePosted)}}</span></h3>
|
<h3>#{{message.channelName}} <span class="message-time">{{formatTime(message.datePosted)}}</span></h3>
|
||||||
<div v-bbcode="message.message" class="border-bottom"></div>
|
<div class="border-bottom">
|
||||||
|
<bbcode :text="message.message"></bbcode>
|
||||||
|
</div>
|
||||||
</template>
|
</template>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
@ -26,9 +28,10 @@ import { AdCachedPosting } from '../../learn/ad-cache';
|
||||||
import core from '../core';
|
import core from '../core';
|
||||||
import {formatTime} from '../common';
|
import {formatTime} from '../common';
|
||||||
import UserView from '../UserView.vue';
|
import UserView from '../UserView.vue';
|
||||||
|
import { BBCodeView } from '../../bbcode/view';
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
components: {modal: Modal, user: UserView}
|
components: {modal: Modal, user: UserView, bbcode: BBCodeView(core.bbCodeParser)}
|
||||||
})
|
})
|
||||||
export default class AdView extends CustomDialog {
|
export default class AdView extends CustomDialog {
|
||||||
@Prop({required: true})
|
@Prop({required: true})
|
||||||
|
|
|
@ -213,6 +213,8 @@ export class CacheManager {
|
||||||
const message = data.message;
|
const message = data.message;
|
||||||
const channel = data.channel;
|
const channel = data.channel;
|
||||||
|
|
||||||
|
console.log('CHANNEL AD', data);
|
||||||
|
|
||||||
this.adCache.register(
|
this.adCache.register(
|
||||||
{
|
{
|
||||||
name: message.sender.name,
|
name: message.sender.name,
|
||||||
|
|
|
@ -70,16 +70,15 @@ This repository contains a heavily customized version of the mainline F-Chat 3.0
|
||||||
|
|
||||||
* Collect data on ads / responses to determine which ads work best
|
* Collect data on ads / responses to determine which ads work best
|
||||||
* Preview mode should allow detaching from the main window
|
* Preview mode should allow detaching from the main window
|
||||||
* Split chat view
|
* Split chat view / separate window for specific chats?
|
||||||
* Improve log browsing
|
* Improve log browsing
|
||||||
* Reposition ad settings and toggle
|
* Reposition ad settings and toggle
|
||||||
* Save character's status messages
|
* Save character's status messages
|
||||||
* Conversation bot API
|
* Conversation bot API
|
||||||
* Filter unmatching ads is not channel specific -- it's either on everywhere or nowhere
|
* 'Filter unmatching ads' is not channel specific -- it's either on everywhere or nowhere
|
||||||
* Fix e621 URLs
|
|
||||||
* AD UI Cleanup / hide to popovers
|
* AD UI Cleanup / hide to popovers
|
||||||
* Reset preview mode
|
* image loading animation
|
||||||
* Better image fitting & loading animation
|
* Ad cache is broken
|
||||||
|
|
||||||
|
|
||||||
# F-List Exported
|
# F-List Exported
|
||||||
|
|
Loading…
Reference in New Issue