diff --git a/package.json b/package.json index 915d93cf9..e920e418c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "calckey", - "version": "12.119.0-calc.8.2", + "version": "12.119.0-calc.8.4", "codename": "aqua", "repository": { "type": "git", diff --git a/packages/client/src/account.ts b/packages/client/src/account.ts index 8421ad23d..28d23430a 100644 --- a/packages/client/src/account.ts +++ b/packages/client/src/account.ts @@ -207,7 +207,7 @@ export async function openAccountMenu(opts: { avatar: $i, }, null, ...(opts.includeCurrentAccount ? [createItem($i)] : []), ...accountItemPromises, { type: 'parent', - icon: 'ph-plus', + icon: 'ph-plus-bold', text: i18n.ts.addAccount, children: [{ text: i18n.ts.existingAccount, @@ -218,7 +218,7 @@ export async function openAccountMenu(opts: { }], }, { type: 'link', - icon: 'ph-users', + icon: 'ph-users-bold', text: i18n.ts.manageAccounts, to: '/settings/accounts', }]], ev.currentTarget ?? ev.target, { diff --git a/packages/client/src/components/MkAbuseReportWindow.vue b/packages/client/src/components/MkAbuseReportWindow.vue index b52e5814c..4c9e740a9 100644 --- a/packages/client/src/components/MkAbuseReportWindow.vue +++ b/packages/client/src/components/MkAbuseReportWindow.vue @@ -1,7 +1,7 @@ diff --git a/packages/client/src/components/MkMediaBanner.vue b/packages/client/src/components/MkMediaBanner.vue index ff4fd6977..ab389a6e3 100644 --- a/packages/client/src/components/MkMediaBanner.vue +++ b/packages/client/src/components/MkMediaBanner.vue @@ -1,7 +1,7 @@ diff --git a/packages/client/src/components/MkMediaVideo.vue b/packages/client/src/components/MkMediaVideo.vue index b5757f6f7..b76b243f6 100644 --- a/packages/client/src/components/MkMediaVideo.vue +++ b/packages/client/src/components/MkMediaVideo.vue @@ -1,7 +1,7 @@ diff --git a/packages/client/src/components/MkMenu.vue b/packages/client/src/components/MkMenu.vue index 5f44edca1..fb614e751 100644 --- a/packages/client/src/components/MkMenu.vue +++ b/packages/client/src/components/MkMenu.vue @@ -16,33 +16,33 @@ - + {{ item.text }} - + - + {{ item.text }} - + {{ item.text }} diff --git a/packages/client/src/components/MkModalPageWindow.vue b/packages/client/src/components/MkModalPageWindow.vue index fd91e869b..a39f91212 100644 --- a/packages/client/src/components/MkModalPageWindow.vue +++ b/packages/client/src/components/MkModalPageWindow.vue @@ -2,13 +2,13 @@
- + {{ pageMetadata?.value.title }} - +
@@ -68,22 +68,22 @@ const contextmenu = $computed(() => { type: 'label', text: path, }, { - icon: 'ph-arrows-out-simple', + icon: 'ph-arrows-out-simple-bold', text: i18n.ts.showInPage, action: expand, }, { - icon: 'ph-arrow-square-out', + icon: 'ph-arrow-square-out-bold', text: i18n.ts.popout, action: popout, }, null, { - icon: 'ph-arrow-square-out', + icon: 'ph-arrow-square-out-bold', text: i18n.ts.openInNewTab, action: () => { window.open(pageUrl, '_blank'); modal.close(); }, }, { - icon: 'ph-link-simple', + icon: 'ph-link-simple-bold', text: i18n.ts.copyLink, action: () => { copyToClipboard(pageUrl); diff --git a/packages/client/src/components/MkModalWindow.vue b/packages/client/src/components/MkModalWindow.vue index 6ea2ffed3..048499ccb 100644 --- a/packages/client/src/components/MkModalWindow.vue +++ b/packages/client/src/components/MkModalWindow.vue @@ -2,12 +2,12 @@
- + - - + +
diff --git a/packages/client/src/components/MkNote.vue b/packages/client/src/components/MkNote.vue index 96fb9a6be..39af7ee09 100644 --- a/packages/client/src/components/MkNote.vue +++ b/packages/client/src/components/MkNote.vue @@ -10,12 +10,12 @@ :class="{ renote: isRenote }" > -
{{ i18n.ts.pinnedNote }}
-
{{ i18n.ts.promotion }}
-
{{ i18n.ts.featured }}
+
{{ i18n.ts.pinnedNote }}
+
{{ i18n.ts.promotion }}
+
{{ i18n.ts.featured }}
- +
diff --git a/packages/client/src/components/MkNotification.vue b/packages/client/src/components/MkNotification.vue index a75174351..7876a293e 100644 --- a/packages/client/src/components/MkNotification.vue +++ b/packages/client/src/components/MkNotification.vue @@ -5,16 +5,16 @@
- - - - - - - - - - + + + + + + + + + + - + - + - + - + @@ -52,14 +52,14 @@ - + - + - + - + {{ i18n.ts.youGotNewFollower }}
{{ i18n.ts.followRequestAccepted }} diff --git a/packages/client/src/components/MkPageWindow.vue b/packages/client/src/components/MkPageWindow.vue index 1511a7ee5..5dd753a51 100644 --- a/packages/client/src/components/MkPageWindow.vue +++ b/packages/client/src/components/MkPageWindow.vue @@ -57,7 +57,7 @@ const buttonsLeft = $computed(() => { if (history.length > 1) { buttons.push({ - icon: 'ph--left', + icon: 'ph--left-bold', onClick: back, }); } @@ -66,7 +66,7 @@ const buttonsLeft = $computed(() => { }); const buttonsRight = $computed(() => { const buttons = [{ - icon: 'ph-arrows-out-simple', + icon: 'ph-arrows-out-simple-bold', title: i18n.ts.showInPage, onClick: expand, }]; @@ -86,22 +86,22 @@ provide('shouldOmitHeaderTitle', true); provide('shouldHeaderThin', true); const contextmenu = $computed(() => ([{ - icon: 'ph-arrows-out-simple', + icon: 'ph-arrows-out-simple-bold', text: i18n.ts.showInPage, action: expand, }, { - icon: 'ph-arrow-square-out', + icon: 'ph-arrow-square-out-bold', text: i18n.ts.popout, action: popout, }, { - icon: 'ph-arrow-square-out', + icon: 'ph-arrow-square-out-bold', text: i18n.ts.openInNewTab, action: () => { window.open(url + router.getCurrentPath(), '_blank'); windowEl.close(); }, }, { - icon: 'ph-link-simple', + icon: 'ph-link-simple-bold', text: i18n.ts.copyLink, action: () => { copyToClipboard(url + router.getCurrentPath()); diff --git a/packages/client/src/components/MkPoll.vue b/packages/client/src/components/MkPoll.vue index d9d6350ba..e1e13321f 100644 --- a/packages/client/src/components/MkPoll.vue +++ b/packages/client/src/components/MkPoll.vue @@ -4,7 +4,7 @@
  • - + ({{ $t('_poll.votesCount', { n: choice.votes }) }}) diff --git a/packages/client/src/components/MkPollEditor.vue b/packages/client/src/components/MkPollEditor.vue index 7bec8d9ea..90a5ce40d 100644 --- a/packages/client/src/components/MkPollEditor.vue +++ b/packages/client/src/components/MkPollEditor.vue @@ -1,14 +1,14 @@ @@ -113,19 +113,19 @@ export default defineComponent({ if (this.menu) return; this.menu = os.popupMenu([{ text: this.$ts.renameFile, - icon: 'ph-cursor-text', + icon: 'ph-cursor-text-bold', action: () => { this.rename(file); }, }, { text: file.isSensitive ? this.$ts.unmarkAsSensitive : this.$ts.markAsSensitive, - icon: file.isSensitive ? 'ph-eye-slash' : 'ph-eye', + icon: file.isSensitive ? 'ph-eye-slash-bold' : 'ph-eye-bold', action: () => { this.toggleSensitive(file); }, }, { text: this.$ts.describeFile, - icon: 'ph-cursor-text', + icon: 'ph-cursor-text-bold', action: () => { this.describe(file); }, }, { text: this.$ts.attachCancel, - icon: 'ph-circle-wavy-warning', + icon: 'ph-circle-wavy-warning-bold', action: () => { this.detachMedia(file.id); }, }], ev.currentTarget ?? ev.target).then(() => this.menu = null); }, diff --git a/packages/client/src/components/MkQuoteButton.vue b/packages/client/src/components/MkQuoteButton.vue index e09d78ba2..760fae872 100644 --- a/packages/client/src/components/MkQuoteButton.vue +++ b/packages/client/src/components/MkQuoteButton.vue @@ -4,7 +4,7 @@ class="eddddedb _button" @click="quote()" > - + diff --git a/packages/client/src/components/MkRemoteCaution.vue b/packages/client/src/components/MkRemoteCaution.vue index ad371f14e..343a3fa9e 100644 --- a/packages/client/src/components/MkRemoteCaution.vue +++ b/packages/client/src/components/MkRemoteCaution.vue @@ -1,5 +1,5 @@ diff --git a/packages/client/src/pages/about-calckey.vue b/packages/client/src/pages/about-calckey.vue index 20ad86322..498d21b4b 100644 --- a/packages/client/src/pages/about-calckey.vue +++ b/packages/client/src/pages/about-calckey.vue @@ -20,7 +20,7 @@ @@ -210,6 +210,6 @@ const headerTabs = $computed(() => []); definePageMetadata({ title: i18n.ts.security, - icon: 'ph-lock', + icon: 'ph-lock-bold', }); diff --git a/packages/client/src/pages/admin/settings.vue b/packages/client/src/pages/admin/settings.vue index 06d192f2f..8aecbe05f 100644 --- a/packages/client/src/pages/admin/settings.vue +++ b/packages/client/src/pages/admin/settings.vue @@ -14,7 +14,7 @@ - + @@ -24,7 +24,7 @@ - + @@ -62,27 +62,27 @@ - + - + - + - + - + @@ -145,12 +145,12 @@ @@ -160,7 +160,7 @@ - + @@ -290,7 +290,7 @@ function save() { const headerActions = $computed(() => [{ asFullButton: true, - icon: 'ph-check', + icon: 'ph-check-bold', text: i18n.ts.save, handler: save, }]); @@ -299,6 +299,6 @@ const headerTabs = $computed(() => []); definePageMetadata({ title: i18n.ts.general, - icon: 'ph-gear-six', + icon: 'ph-gear-six-bold', }); diff --git a/packages/client/src/pages/admin/users.vue b/packages/client/src/pages/admin/users.vue index 517d63497..247ac6270 100644 --- a/packages/client/src/pages/admin/users.vue +++ b/packages/client/src/pages/admin/users.vue @@ -115,17 +115,17 @@ function show(user) { } const headerActions = $computed(() => [{ - icon: 'ph-magnifying-glass', + icon: 'ph-magnifying-glass-bold', text: i18n.ts.search, handler: searchUser, }, { asFullButton: true, - icon: 'ph-plus', + icon: 'ph-plus-bold', text: i18n.ts.addUser, handler: addUser, }, { asFullButton: true, - icon: 'ph-magnifying-glass', + icon: 'ph-magnifying-glass-bold', text: i18n.ts.lookup, handler: lookupUser, }]); @@ -134,7 +134,7 @@ const headerTabs = $computed(() => []); definePageMetadata(computed(() => ({ title: i18n.ts.users, - icon: 'ph-users', + icon: 'ph-users-bold', }))); diff --git a/packages/client/src/pages/announcements.vue b/packages/client/src/pages/announcements.vue index aae6069fe..8328bf7d3 100644 --- a/packages/client/src/pages/announcements.vue +++ b/packages/client/src/pages/announcements.vue @@ -10,7 +10,7 @@
  • @@ -46,7 +46,7 @@ const headerTabs = $computed(() => []); definePageMetadata({ title: i18n.ts.announcements, - icon: 'ph-megaphone-simple', + icon: 'ph-megaphone-simple-bold', }); diff --git a/packages/client/src/pages/antenna-timeline.vue b/packages/client/src/pages/antenna-timeline.vue index 12828dbaa..0f9b72bd2 100644 --- a/packages/client/src/pages/antenna-timeline.vue +++ b/packages/client/src/pages/antenna-timeline.vue @@ -72,11 +72,11 @@ watch(() => props.antennaId, async () => { }, { immediate: true }); const headerActions = $computed(() => antenna ? [{ - icon: 'ph-calendar-blank', + icon: 'ph-calendar-blank-bold', text: i18n.ts.jumpToSpecifiedDate, handler: timetravel, }, { - icon: 'ph-gear-six', + icon: 'ph-gear-six-bold', text: i18n.ts.settings, handler: settings, }] : []); @@ -85,7 +85,7 @@ const headerTabs = $computed(() => []); definePageMetadata(computed(() => antenna ? { title: antenna.name, - icon: 'ph-flying-saucer', + icon: 'ph-flying-saucer-bold', } : null)); diff --git a/packages/client/src/pages/api-console.vue b/packages/client/src/pages/api-console.vue index bb5edd1a1..cd1689d0e 100644 --- a/packages/client/src/pages/api-console.vue +++ b/packages/client/src/pages/api-console.vue @@ -15,7 +15,7 @@ - +
    @@ -84,6 +84,6 @@ const headerTabs = $computed(() => []); definePageMetadata({ title: 'API console', - icon: 'ph-terminal-window', + icon: 'ph-terminal-window-bold', }); diff --git a/packages/client/src/pages/channel-editor.vue b/packages/client/src/pages/channel-editor.vue index 612f81a4c..224e36814 100644 --- a/packages/client/src/pages/channel-editor.vue +++ b/packages/client/src/pages/channel-editor.vue @@ -12,14 +12,14 @@
    - {{ channelId ? i18n.ts.save : i18n.ts.create }} + {{ channelId ? i18n.ts.save : i18n.ts.create }}
    @@ -110,10 +110,10 @@ const headerTabs = $computed(() => []); definePageMetadata(computed(() => props.channelId ? { title: i18n.ts._channel.edit, - icon: 'ph-television', + icon: 'ph-television-bold', } : { title: i18n.ts._channel.create, - icon: 'ph-television', + icon: 'ph-television-bold', })); diff --git a/packages/client/src/pages/channel.vue b/packages/client/src/pages/channel.vue index 047b132b5..77a3483cc 100644 --- a/packages/client/src/pages/channel.vue +++ b/packages/client/src/pages/channel.vue @@ -6,15 +6,15 @@