chore(client): rename marquee -> ticker

This commit is contained in:
syuilo 2022-07-03 16:50:51 +09:00 committed by Chloe Kudryavtsev
parent e0844df234
commit 4b6b670ec9
4 changed files with 6 additions and 6 deletions

View File

@ -23,7 +23,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: For notes with specified visibility, show recipients when hovering over visibility symbol. @Johann150
- 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
- Make possible to delete an account by admin @syuilo

View File

@ -1242,7 +1242,7 @@ _widgets:
trends: "トレンド"
clock: "時計"
rss: "RSSリーダー"
rssMarquee: "RSSリーダー(マーキー)"
rssTicker: "RSSティッカー"
activity: "アクティビティ"
photos: "フォト"
digitalClock: "デジタル時計"

View File

@ -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')));
@ -29,7 +29,7 @@ export const widgets = [
'timeline',
'calendar',
'rss',
'rssMarquee',
'rssTicker',
'trends',
'clock',
'activity',

View File

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