improvement(wrapped): 年度总结仅保留 Modern 主题

- 移除复古主题切换入口(控制面板/左上角按钮)与 Win98/CRT 相关 UI

- 简化 useWrappedTheme:仅保留 off(Modern),历史主题值自动回退

- Modern 下也展示 LuckyBlock 占位图,并同步更新 README 说明
This commit is contained in:
2977094657
2026-02-18 19:11:47 +08:00
parent b281d016be
commit c68e4fffeb
5 changed files with 22 additions and 227 deletions

View File

@@ -115,7 +115,7 @@
@error="onShownAvatarError"
/>
<img
v-else-if="isGameboy && phase === 'idle'"
v-else-if="(isGameboy || isModern) && phase === 'idle'"
src="/assets/images/LuckyBlock.png"
class="w-full h-full object-contain"
alt="Lucky Block"
@@ -258,6 +258,7 @@ const props = defineProps({
const { theme } = useWrappedTheme()
const isGameboy = computed(() => theme.value === 'gameboy')
const isModern = computed(() => theme.value === 'off')
const isRetro = computed(() => isGameboy.value)
const nfInt = new Intl.NumberFormat('zh-CN', { maximumFractionDigits: 0 })