refactor(lib,playback): fold utils/cache+themes into lib; playbackScheduleFormat→playback (drains utils/format)

This commit is contained in:
Psychotoxical
2026-06-30 20:33:25 +02:00
parent 31d4a87401
commit 6becd57798
47 changed files with 69 additions and 69 deletions
@@ -13,9 +13,9 @@ import {
assetUrl,
fetchRegistry,
type RegistryTheme,
} from '@/utils/themes/themeRegistry';
import { installThemeFromRegistry } from '@/utils/themes/installThemeFromRegistry';
import { uninstallTheme } from '@/utils/themes/uninstallTheme';
} from '@/lib/themes/themeRegistry';
import { installThemeFromRegistry } from '@/lib/themes/installThemeFromRegistry';
import { uninstallTheme } from '@/lib/themes/uninstallTheme';
import { isNewer } from '@/utils/componentHelpers/appUpdaterHelpers';
type ModeFilter = 'all' | 'dark' | 'light';