chore(client): rename marquee -> ticker
This commit is contained in:
parent
e0844df234
commit
4b6b670ec9
4 changed files with 6 additions and 6 deletions
|
@ -23,7 +23,7 @@ You should also include the user name that made the change.
|
||||||
- Client: Improve control panel @syuilo
|
- Client: Improve control panel @syuilo
|
||||||
- Client: Show warning in control panel when there is an unresolved abuse report @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: 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: Removing entries from a clip @futchitwo
|
||||||
- Client: Poll highlights in explore page @syuilo
|
- Client: Poll highlights in explore page @syuilo
|
||||||
- Make possible to delete an account by admin @syuilo
|
- Make possible to delete an account by admin @syuilo
|
||||||
|
|
|
@ -1242,7 +1242,7 @@ _widgets:
|
||||||
trends: "トレンド"
|
trends: "トレンド"
|
||||||
clock: "時計"
|
clock: "時計"
|
||||||
rss: "RSSリーダー"
|
rss: "RSSリーダー"
|
||||||
rssMarquee: "RSSリーダー(マーキー)"
|
rssTicker: "RSSティッカー"
|
||||||
activity: "アクティビティ"
|
activity: "アクティビティ"
|
||||||
photos: "フォト"
|
photos: "フォト"
|
||||||
digitalClock: "デジタル時計"
|
digitalClock: "デジタル時計"
|
||||||
|
|
|
@ -6,7 +6,7 @@ export default function(app: App) {
|
||||||
app.component('MkwTimeline', defineAsyncComponent(() => import('./timeline.vue')));
|
app.component('MkwTimeline', defineAsyncComponent(() => import('./timeline.vue')));
|
||||||
app.component('MkwCalendar', defineAsyncComponent(() => import('./calendar.vue')));
|
app.component('MkwCalendar', defineAsyncComponent(() => import('./calendar.vue')));
|
||||||
app.component('MkwRss', defineAsyncComponent(() => import('./rss.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('MkwTrends', defineAsyncComponent(() => import('./trends.vue')));
|
||||||
app.component('MkwClock', defineAsyncComponent(() => import('./clock.vue')));
|
app.component('MkwClock', defineAsyncComponent(() => import('./clock.vue')));
|
||||||
app.component('MkwActivity', defineAsyncComponent(() => import('./activity.vue')));
|
app.component('MkwActivity', defineAsyncComponent(() => import('./activity.vue')));
|
||||||
|
@ -29,7 +29,7 @@ export const widgets = [
|
||||||
'timeline',
|
'timeline',
|
||||||
'calendar',
|
'calendar',
|
||||||
'rss',
|
'rss',
|
||||||
'rssMarquee',
|
'rssTicker',
|
||||||
'trends',
|
'trends',
|
||||||
'clock',
|
'clock',
|
||||||
'activity',
|
'activity',
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
<template>
|
<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 #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>
|
<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 MkContainer from '@/components/ui/container.vue';
|
||||||
import { useInterval } from '@/scripts/use-interval';
|
import { useInterval } from '@/scripts/use-interval';
|
||||||
|
|
||||||
const name = 'rssMarquee';
|
const name = 'rssTicker';
|
||||||
|
|
||||||
const widgetPropsDef = {
|
const widgetPropsDef = {
|
||||||
url: {
|
url: {
|
Loading…
Reference in a new issue