Floating menu option (#726)

* Add floating menu

* Fix

* Updates

* Add auto-queue change test

* Fix
This commit is contained in:
pythongosssss
2024-09-16 03:28:04 +01:00
committed by Chenlei Hu
parent 73a7f7dae0
commit 2d1ff64951
14 changed files with 629 additions and 15 deletions

View File

@@ -355,3 +355,12 @@ export const useQueuePendingTaskCountStore = defineStore(
}
}
)
export type AutoQueueMode = 'disabled' | 'instant' | 'change'
export const useQueueSettingsStore = defineStore('queueSettingsStore', {
state: () => ({
mode: 'disabled' as AutoQueueMode,
batchCount: 1
})
})