mirror of
https://github.com/Kuingsmile/PicList.git
synced 2026-07-10 23:21:27 +08:00
🚧 WIP: shortcut setting page
This commit is contained in:
@@ -1,17 +1,16 @@
|
||||
// from v2.1.2
|
||||
const updateShortKeyFromVersion212 = (db, shortKeyConfig) => {
|
||||
let needUpgrade = false
|
||||
Object.keys(shortKeyConfig).forEach(item => {
|
||||
if (typeof shortKeyConfig[item] === 'string') {
|
||||
needUpgrade = true
|
||||
shortKeyConfig[item] = {
|
||||
enable: true,
|
||||
key: shortKeyConfig[item],
|
||||
name: `picgo:${item}`,
|
||||
lable: '快捷上传'
|
||||
}
|
||||
if (shortKeyConfig.upload) {
|
||||
needUpgrade = true
|
||||
shortKeyConfig['picgo:upload'] = {
|
||||
enable: true,
|
||||
key: shortKeyConfig.upload,
|
||||
name: 'picgo:upload',
|
||||
label: '快捷上传'
|
||||
}
|
||||
})
|
||||
delete shortKeyConfig.upload
|
||||
}
|
||||
if (needUpgrade) {
|
||||
db.read().set('settings.shortKey', shortKeyConfig).write()
|
||||
return shortKeyConfig
|
||||
|
||||
Reference in New Issue
Block a user