diff --git a/apps/stage-tamagotchi/src/stores/shortcuts.ts b/apps/stage-tamagotchi/src/stores/shortcuts.ts index 33df89550..a6cddf059 100644 --- a/apps/stage-tamagotchi/src/stores/shortcuts.ts +++ b/apps/stage-tamagotchi/src/stores/shortcuts.ts @@ -73,7 +73,7 @@ export const useShortcutsStore = defineStore('shortcuts', () => { const shortcuts = ref([ { name: 'tamagotchi.settings.pages.themes.window-shortcuts.toggle-move.label', - shortcut: useVersionedLocalStorage('shortcuts/window/move', 'Shift+Alt+N', { defaultVersion: '1.0.2', satisfiesVersionBy: v => v !== '1.0.2', onVersionMismatch: () => ({ action: 'reset' }) }), // Shift + Alt + N + shortcut: useVersionedLocalStorage('shortcuts/window/move', 'Shift+Alt+N', { defaultVersion: '1.0.2', satisfiesVersionBy: v => v === '1.0.2', onVersionMismatch: () => ({ action: 'reset' }) }), // Shift + Alt + N group: 'window', type: 'move', handle: async () => { @@ -82,7 +82,7 @@ export const useShortcutsStore = defineStore('shortcuts', () => { }, { name: 'tamagotchi.settings.pages.themes.window-shortcuts.toggle-resize.label', - shortcut: useVersionedLocalStorage('shortcuts/window/resize', 'Shift+Alt+A', { defaultVersion: '1.0.2', satisfiesVersionBy: v => v !== '1.0.2', onVersionMismatch: () => ({ action: 'reset' }) }), // Shift + Alt + A + shortcut: useVersionedLocalStorage('shortcuts/window/resize', 'Shift+Alt+A', { defaultVersion: '1.0.2', satisfiesVersionBy: v => v === '1.0.2', onVersionMismatch: () => ({ action: 'reset' }) }), // Shift + Alt + A group: 'window', type: 'resize', handle: async () => { @@ -91,7 +91,7 @@ export const useShortcutsStore = defineStore('shortcuts', () => { }, { name: 'tamagotchi.settings.pages.themes.window-shortcuts.toggle-ignore-mouse-event.label', - shortcut: useVersionedLocalStorage('shortcuts/window/debug', 'Shift+Alt+I', { defaultVersion: '1.0.2', satisfiesVersionBy: v => v !== '1.0.2', onVersionMismatch: () => ({ action: 'reset' }) }), // Shift + Alt + I + shortcut: useVersionedLocalStorage('shortcuts/window/debug', 'Shift+Alt+I', { defaultVersion: '1.0.2', satisfiesVersionBy: v => v === '1.0.2', onVersionMismatch: () => ({ action: 'reset' }) }), // Shift + Alt + I group: 'window', type: 'ignore-mouse-event', handle: async () => {