chore(client): rename marquee -> ticker
This commit is contained in:
parent
66ffb253a2
commit
57c6db6952
4 changed files with 6 additions and 6 deletions
|
@ -22,7 +22,7 @@ You should also include the user name that made the change.
|
|||
- Client: Improve control panel @syuilo
|
||||
- Client: Show warning in control panel when there is an unresolved abuse report @syuilo
|
||||
- Client: Add instance-cloud widget @syuilo
|
||||
- Client: Add rss-marquee widget @syuilo
|
||||
- Client: Add rss-ticker widget @syuilo
|
||||
- Client: Removing entries from a clip @futchitwo
|
||||
- Client: Poll highlights in explore page @syuilo
|
||||
- ユーザーにモデレーションメモを残せる機能 @syuilo
|
||||
|
|
|
@ -1251,7 +1251,7 @@ _widgets:
|
|||
trends: "トレンド"
|
||||
clock: "時計"
|
||||
rss: "RSSリーダー"
|
||||
rssMarquee: "RSSリーダー(マーキー)"
|
||||
rssTicker: "RSSティッカー"
|
||||
activity: "アクティビティ"
|
||||
photos: "フォト"
|
||||
digitalClock: "デジタル時計"
|
||||
|
|
|
@ -6,7 +6,7 @@ export default function(app: App) {
|
|||
app.component('MkwTimeline', defineAsyncComponent(() => import('./timeline.vue')));
|
||||
app.component('MkwCalendar', defineAsyncComponent(() => import('./calendar.vue')));
|
||||
app.component('MkwRss', defineAsyncComponent(() => import('./rss.vue')));
|
||||
app.component('MkwRssMarquee', defineAsyncComponent(() => import('./rss-marquee.vue')));
|
||||
app.component('MkwRssTicker', defineAsyncComponent(() => import('./rss-ticker.vue')));
|
||||
app.component('MkwTrends', defineAsyncComponent(() => import('./trends.vue')));
|
||||
app.component('MkwClock', defineAsyncComponent(() => import('./clock.vue')));
|
||||
app.component('MkwActivity', defineAsyncComponent(() => import('./activity.vue')));
|
||||
|
@ -30,7 +30,7 @@ export const widgets = [
|
|||
'timeline',
|
||||
'calendar',
|
||||
'rss',
|
||||
'rssMarquee',
|
||||
'rssTicker',
|
||||
'trends',
|
||||
'clock',
|
||||
'activity',
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<template>
|
||||
<MkContainer :naked="widgetProps.transparent" :show-header="widgetProps.showHeader" class="mkw-rss-marquee">
|
||||
<MkContainer :naked="widgetProps.transparent" :show-header="widgetProps.showHeader" class="mkw-rss-ticker">
|
||||
<template #header><i class="fas fa-rss-square"></i>RSS</template>
|
||||
<template #func><button class="_button" @click="configure"><i class="fas fa-cog"></i></button></template>
|
||||
|
||||
|
@ -27,7 +27,7 @@ import * as os from '@/os';
|
|||
import MkContainer from '@/components/ui/container.vue';
|
||||
import { useInterval } from '@/scripts/use-interval';
|
||||
|
||||
const name = 'rssMarquee';
|
||||
const name = 'rssTicker';
|
||||
|
||||
const widgetPropsDef = {
|
||||
url: {
|
Loading…
Reference in a new issue