Skip to content

Commit

Permalink
Misskey最新版に追従
Browse files Browse the repository at this point in the history
  • Loading branch information
mattyatea committed Aug 23, 2024
1 parent 9846cfa commit a5979ce
Show file tree
Hide file tree
Showing 4 changed files with 1,322 additions and 1,019 deletions.
8 changes: 4 additions & 4 deletions locales/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5396,10 +5396,6 @@ export interface Locale extends ILocale {
* センシティブなメディアです。表示しますか?
*/
"sensitiveMediaRevealConfirm": string;
/**
* デフォルトのプロファイルに追加する
*/
"addToDefaultEmojiPicker": string;
/**
* 作成したリスト
*/
Expand All @@ -5408,6 +5404,10 @@ export interface Locale extends ILocale {
* 作成したアンテナ
*/
"createdAntennas": string;
/**
* デフォルトのプロファイルに追加する
*/
"addToDefaultEmojiPicker": string;
"_delivery": {
/**
* 配信状態
Expand Down
5 changes: 3 additions & 2 deletions packages/frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@
"photoswipe": "5.4.4",
"punycode": "2.3.1",
"rollup": "4.19.1",
"rollup-plugin-visualizer": "^5.12.0",
"sanitize-html": "2.13.0",
"sass": "1.77.8",
"shiki": "1.12.0",
Expand All @@ -75,8 +76,8 @@
"vite": "5.3.5",
"vue": "3.4.37",
"vue-virtual-scroller": "2.0.0-beta.8",
"wavesurfer.js": "^7.7.14",
"vuedraggable": "next"
"vuedraggable": "next",
"wavesurfer.js": "^7.7.14"
},
"devDependencies": {
"@misskey-dev/summaly": "5.1.0",
Expand Down
3 changes: 3 additions & 0 deletions packages/frontend/src/timelines.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ export const basicTimelineTypes = [
'local',
'social',
'global',
'media'
] as const;

export type BasicTimelineType = typeof basicTimelineTypes[number];
Expand All @@ -29,6 +30,8 @@ export function basicTimelineIconClass(timeline: BasicTimelineType): string {
return 'ti ti-universe';
case 'global':
return 'ti ti-whirl';
case 'media':
return 'ti ti-photo';
}
}

Expand Down
Loading

0 comments on commit a5979ce

Please sign in to comment.