universal build

This commit is contained in:
vapormusic 2022-02-08 10:19:04 +07:00
parent 6b331cb22f
commit c817ba5267
2 changed files with 5 additions and 4 deletions

View file

@ -2,7 +2,7 @@
"name": "cider",
"applicationId": "Cider",
"productName": "Cider",
"version": "1.1",
"version": "1.1.0",
"description": "A new look into listening and enjoying music in style and performance.",
"license": "AGPL-3.0",
"main": "./build/index.js",
@ -23,6 +23,7 @@
"start:darwin": "yarn build && ELECTRON_ENABLE_LOGGING=true && electron ./build/index.js --enable-accelerated-mjpeg-decode --enable-accelerated-video --disable-gpu-driver-bug-workarounds --ignore-gpu-blacklist --enable-native-gpu-memory-buffers",
"pack": "electron-builder --dir",
"dist": "yarn build && electron-builder",
"dist:mac": "yarn build && electron-builder --mac --universal",
"dist:all": "yarn build && electron-builder -mwl",
"msft": "yarn build && electron-builder -c msft-package.json",
"postinstall": "electron-builder install-app-deps",

View file

@ -1884,7 +1884,7 @@ const app = new Vue({
self.library.backgroundNotification.show = false
self.searchLibrarySongs()
localStorage.setItem("librarySongs", JSON.stringify(library))
console.log(library)
// console.log(library)
}
}
@ -1992,7 +1992,7 @@ const app = new Vue({
self.library.backgroundNotification.show = false
localStorage.setItem("libraryAlbums", JSON.stringify(library))
self.searchLibraryAlbums(index)
console.log(library)
// console.log(library)
}
}
@ -2098,7 +2098,7 @@ const app = new Vue({
self.library.backgroundNotification.show = false
localStorage.setItem("libraryArtists", JSON.stringify(library))
self.searchLibraryArtists(index)
console.log(library)
// console.log(library)
}
}