mirror of
https://github.com/th-ch/youtube-music.git
synced 2026-01-10 10:11:46 +00:00
46 lines
1.0 KiB
JavaScript
46 lines
1.0 KiB
JavaScript
const Store = require("electron-store");
|
|
|
|
const defaults = require("./defaults");
|
|
|
|
const migrations = {
|
|
">=1.11.0": (store) => {
|
|
if (store.get("options.resumeOnStart") === undefined) {
|
|
store.set("options.resumeOnStart", true);
|
|
}
|
|
},
|
|
">=1.7.0": (store) => {
|
|
const enabledPlugins = store.get("plugins");
|
|
if (!Array.isArray(enabledPlugins)) {
|
|
console.warn("Plugins are not in array format, cannot migrate");
|
|
return;
|
|
}
|
|
|
|
// Include custom options
|
|
const plugins = {
|
|
adblocker: {
|
|
enabled: true,
|
|
cache: true,
|
|
additionalBlockLists: [],
|
|
},
|
|
downloader: {
|
|
enabled: false,
|
|
ffmpegArgs: [], // e.g. ["-b:a", "192k"] for an audio bitrate of 192kb/s
|
|
downloadFolder: undefined, // Custom download folder (absolute path)
|
|
},
|
|
};
|
|
enabledPlugins.forEach((enabledPlugin) => {
|
|
plugins[enabledPlugin] = {
|
|
...plugins[enabledPlugin],
|
|
enabled: true,
|
|
};
|
|
});
|
|
store.set("plugins", plugins);
|
|
},
|
|
};
|
|
|
|
module.exports = new Store({
|
|
defaults,
|
|
clearInvalidConfig: false,
|
|
migrations,
|
|
});
|