Merge branch 'develop' of https://github.com/ciderapp/Cider into develop

This commit is contained in:
yazninja 2022-05-16 13:58:29 +08:00
commit 166f9b9167
2 changed files with 14 additions and 14 deletions

View file

@ -52,39 +52,39 @@ export class Store {
}, },
"keybindings": { "keybindings": {
"search": [ "search": [
process.platform == "darwin" ? "Command" : "Control", "CommandOrControl",
"F" "F"
], ],
"listnow": [ "listnow": [
process.platform == "darwin" ? "Command" : "Control", "CommandOrControl",
"L" "L"
], ],
"browse": [ "browse": [
process.platform == "darwin" ? "Command" : "Control", "CommandOrControl",
"B" "B"
], ],
"recentAdd": [ "recentAdd": [
process.platform == "darwin" ? "Command" : "Control", "CommandOrControl",
"G" "G"
], ],
"songs" : [ "songs" : [
process.platform == "darwin" ? "Command" : "Control", "CommandOrControl",
"J" "J"
], ],
"albums": [ "albums": [
process.platform == "darwin" ? "Command" : "Control", "CommandOrControl",
"S" "A"
], ],
"artists": [ "artists": [
process.platform == "darwin" ? "Command" : "Control", "CommandOrControl",
"D" "D"
], ],
"togglePrivateSession": [ "togglePrivateSession": [
process.platform == "darwin" ? "Command" : "Control", "CommandOrControl",
"P" "P"
], ],
"webRemote": [ "webRemote": [
process.platform == "darwin" ? "Command" : "Control", "CommandOrControl",
"W" "W"
], ],
"audioSettings": [ "audioSettings": [
@ -100,12 +100,12 @@ export class Store {
"C" "C"
], ],
"settings": [ "settings": [
process.platform == "darwin" ? "Option" : "Shift", "CommandOrControl", // Who the hell uses a different key for this? Fucking Option?
"S" "S"
], ],
"openDeveloperTools": [ "openDeveloperTools": [
process.platform == "darwin" ? "Command" : "Control", "CommandOrControl",
process.platform == "darwin" ? "Option" : "Shift", "Shift",
"I" "I"
] ]
}, },

View file

@ -1275,7 +1275,7 @@
</div> </div>
<div class="md-option-segment md-option-segment_auto"> <div class="md-option-segment md-option-segment_auto">
<label> <label>
<input type="checkbox" disabled a-v-model="app.cfg.connectUser.sync.settings" <input type="checkbox" a-v-model="app.cfg.connectUser.sync.settings"
@click="app.cfg.connectUser.sync.settings = !app.cfg.connectUser.sync.settings" @click="app.cfg.connectUser.sync.settings = !app.cfg.connectUser.sync.settings"
switch/> switch/>
</label> </label>