diff --git a/package.json b/package.json index bb69a3d357..2a924ff573 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "sharkey", - "version": "2023.12.1+egirls.1", + "version": "2023.12.1+egirls.2", "codename": "shonk", "repository": { "type": "git", diff --git a/packages/backend/src/core/ReactionService.ts b/packages/backend/src/core/ReactionService.ts index 8af01b3f99..bf93ff28de 100644 --- a/packages/backend/src/core/ReactionService.ts +++ b/packages/backend/src/core/ReactionService.ts @@ -29,7 +29,7 @@ import { CustomEmojiService } from '@/core/CustomEmojiService.js'; import { RoleService } from '@/core/RoleService.js'; import { FeaturedService } from '@/core/FeaturedService.js'; -const FALLBACK = '❤'; +const FALLBACK = '⭐'; const PER_NOTE_REACTION_USER_PAIR_CACHE_MAX = 16; const legacies: Record = { diff --git a/packages/frontend/src/components/MkNote.vue b/packages/frontend/src/components/MkNote.vue index 8a3b4cef48..0b30173547 100644 --- a/packages/frontend/src/components/MkNote.vue +++ b/packages/frontend/src/components/MkNote.vue @@ -133,10 +133,10 @@ SPDX-License-Identifier: AGPL-3.0-only diff --git a/packages/frontend/src/navbar.ts b/packages/frontend/src/navbar.ts index d615c751ee..bf487ae226 100644 --- a/packages/frontend/src/navbar.ts +++ b/packages/frontend/src/navbar.ts @@ -82,7 +82,7 @@ export const navbarItemDef = reactive({ }, favorites: { title: i18n.ts.favorites, - icon: 'ph-star ph-bold ph-lg', + icon: 'ph-bookmarks ph-bold ph-lg', show: computed(() => $i != null), to: '/my/favorites', }, diff --git a/packages/frontend/src/pages/channel.vue b/packages/frontend/src/pages/channel.vue index b0873ea336..8d71397d91 100644 --- a/packages/frontend/src/pages/channel.vue +++ b/packages/frontend/src/pages/channel.vue @@ -10,8 +10,8 @@ SPDX-License-Identifier: AGPL-3.0-only
- - + +
diff --git a/packages/frontend/src/pages/clip.vue b/packages/frontend/src/pages/clip.vue index 9b5f0224cc..858569cb47 100644 --- a/packages/frontend/src/pages/clip.vue +++ b/packages/frontend/src/pages/clip.vue @@ -12,8 +12,8 @@ SPDX-License-Identifier: AGPL-3.0-only
- {{ clip.favoritedCount }} - {{ clip.favoritedCount }} + {{ clip.favoritedCount }} + {{ clip.favoritedCount }}
diff --git a/packages/frontend/src/pages/favorites.vue b/packages/frontend/src/pages/favorites.vue index 10f4a96a98..94690db66a 100644 --- a/packages/frontend/src/pages/favorites.vue +++ b/packages/frontend/src/pages/favorites.vue @@ -40,7 +40,7 @@ const pagination = { definePageMetadata({ title: i18n.ts.favorites, - icon: 'ph-star ph-bold ph-lg', + icon: 'ph-bookmarks-simple ph-bold ph-lg', }); diff --git a/packages/frontend/src/pages/flash/flash-index.vue b/packages/frontend/src/pages/flash/flash-index.vue index 2b9346fcac..fc7ac39407 100644 --- a/packages/frontend/src/pages/flash/flash-index.vue +++ b/packages/frontend/src/pages/flash/flash-index.vue @@ -84,7 +84,7 @@ const headerTabs = computed(() => [{ }, { key: 'liked', title: i18n.ts._play.liked, - icon: 'ph-heart ph-bold ph-lg', + icon: 'ph-star ph-bold ph-lg', }]); definePageMetadata(computed(() => ({ diff --git a/packages/frontend/src/pages/flash/flash.vue b/packages/frontend/src/pages/flash/flash.vue index 5fae1248e9..ba83f73eb4 100644 --- a/packages/frontend/src/pages/flash/flash.vue +++ b/packages/frontend/src/pages/flash/flash.vue @@ -15,8 +15,8 @@ SPDX-License-Identifier: AGPL-3.0-only
- {{ flash.likedCount }} - {{ flash.likedCount }} + {{ flash.likedCount }} + {{ flash.likedCount }} @@ -28,7 +28,7 @@ SPDX-License-Identifier: AGPL-3.0-only
{{ flash.summary }}
Play
- {{ flash.likedCount }} + {{ flash.likedCount }}
diff --git a/packages/frontend/src/pages/gallery/index.vue b/packages/frontend/src/pages/gallery/index.vue index 936d9b8393..f2eac21a16 100644 --- a/packages/frontend/src/pages/gallery/index.vue +++ b/packages/frontend/src/pages/gallery/index.vue @@ -111,7 +111,7 @@ const headerTabs = computed(() => [{ }, { key: 'liked', title: i18n.ts._gallery.liked, - icon: 'ph-heart ph-bold ph-lg', + icon: 'ph-star ph-bold ph-lg', }, { key: 'my', title: i18n.ts._gallery.my, diff --git a/packages/frontend/src/pages/gallery/post.vue b/packages/frontend/src/pages/gallery/post.vue index 54a8790ef9..516739a18e 100644 --- a/packages/frontend/src/pages/gallery/post.vue +++ b/packages/frontend/src/pages/gallery/post.vue @@ -23,8 +23,8 @@ SPDX-License-Identifier: AGPL-3.0-only
diff --git a/packages/frontend/src/pages/list.vue b/packages/frontend/src/pages/list.vue index d6c6685a79..a51c575e30 100644 --- a/packages/frontend/src/pages/list.vue +++ b/packages/frontend/src/pages/list.vue @@ -26,8 +26,8 @@ SPDX-License-Identifier: AGPL-3.0-only
- {{ list.likedCount }} - {{ list.likedCount }} + {{ list.likedCount }} + {{ list.likedCount }} {{ i18n.ts.import }} diff --git a/packages/frontend/src/pages/my-clips/index.vue b/packages/frontend/src/pages/my-clips/index.vue index d787e53bb0..ec4ec2f390 100644 --- a/packages/frontend/src/pages/my-clips/index.vue +++ b/packages/frontend/src/pages/my-clips/index.vue @@ -96,7 +96,7 @@ const headerTabs = computed(() => [{ }, { key: 'favorites', title: i18n.ts.favorites, - icon: 'ph-heart ph-bold ph-lg', + icon: 'ph-star ph-bold ph-lg', }]); definePageMetadata({ diff --git a/packages/frontend/src/pages/page.vue b/packages/frontend/src/pages/page.vue index 6b06da9a24..199b97ccde 100644 --- a/packages/frontend/src/pages/page.vue +++ b/packages/frontend/src/pages/page.vue @@ -29,8 +29,8 @@ SPDX-License-Identifier: AGPL-3.0-only
diff --git a/packages/frontend/src/pages/pages.vue b/packages/frontend/src/pages/pages.vue index a7ca433ed3..e9cbeaa9de 100644 --- a/packages/frontend/src/pages/pages.vue +++ b/packages/frontend/src/pages/pages.vue @@ -82,7 +82,7 @@ const headerTabs = computed(() => [{ }, { key: 'liked', title: i18n.ts._pages.liked, - icon: 'ph-heart ph-bold ph-lg', + icon: 'ph-star ph-bold ph-lg', }]); definePageMetadata(computed(() => ({ diff --git a/packages/frontend/src/pages/settings/import-export.vue b/packages/frontend/src/pages/settings/import-export.vue index 7ca1faf406..e16a0e0835 100644 --- a/packages/frontend/src/pages/settings/import-export.vue +++ b/packages/frontend/src/pages/settings/import-export.vue @@ -29,7 +29,7 @@ SPDX-License-Identifier: AGPL-3.0-only
- + diff --git a/packages/frontend/src/scripts/get-note-menu.ts b/packages/frontend/src/scripts/get-note-menu.ts index a409f1b775..275ad8f2cf 100644 --- a/packages/frontend/src/scripts/get-note-menu.ts +++ b/packages/frontend/src/scripts/get-note-menu.ts @@ -318,11 +318,11 @@ export function getNoteMenu(props: { } : undefined, { type: 'divider' }, statePromise.then(state => state.isFavorited ? { - icon: 'ph-star-half ph-bold ph-lg', + icon: 'ph-bookmarks ph-bold ph-lg', text: i18n.ts.unfavorite, action: () => toggleFavorite(false), } : { - icon: 'ph-star ph-bold ph-lg', + icon: 'ph-bookmark-simple ph-bold ph-lg', text: i18n.ts.favorite, action: () => toggleFavorite(true), }),