Merge branch 'develop'
This commit is contained in:
commit
4590e90037
6 changed files with 7 additions and 13 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -315,3 +315,4 @@ src/renderer/workbox-962786f2.js.map
|
|||
*.p12
|
||||
keys.sh
|
||||
|
||||
.yarnrc.yml
|
||||
|
|
|
@ -13,13 +13,14 @@
|
|||
},
|
||||
"homepage": "https://cider.sh/",
|
||||
"buildResources": "resources",
|
||||
"packageManager": "yarn@3.1.1",
|
||||
"scripts": {
|
||||
"build": "tsc",
|
||||
"watch": "tsc --watch",
|
||||
"start": "run-script-os",
|
||||
"start:win32": "npm run build && set 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",
|
||||
"start:linux": "npm run build && export 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",
|
||||
"start:darwin": "npm run build && export 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",
|
||||
"start:win32": "npm run 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",
|
||||
"start:linux": "npm run 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",
|
||||
"start:darwin": "npm run 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": "npm run build && electron-builder",
|
||||
"dist:all": "npm run build && electron-builder -mwl",
|
||||
|
@ -165,6 +166,6 @@
|
|||
"dmg"
|
||||
]
|
||||
},
|
||||
"artifactName" : "${productName}.${ext}"
|
||||
"artifactName": "${productName}.${ext}"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -16,5 +16,4 @@ Several changes have been made to configuration options and will be listed below
|
|||
been modified, the ones not mentioned in the list need modifying.
|
||||
|
||||
* `settings.option.experimental.closeButtonBehaviour`: Changed to `close_button_hide` - Should be "Close Button Should Hide the Application". `.quit`, `.minimizeTaskbar` and `.minimizeTray` have been removed. Translations done for en_US.
|
||||
* `term.loadingPlaylist`: Added for `en_US` and `en_PISS`.
|
||||
* `action.update`: Added for `en_US`.
|
|
@ -124,7 +124,6 @@
|
|||
"term.videos": "piss videos 😳",
|
||||
"term.menu": "piss menu",
|
||||
"term.check": "piss!",
|
||||
"term.loadingPlaylist": "pissing all over your songs hold on just a second im almost done...",
|
||||
|
||||
// Home
|
||||
"home.title": "piss central",
|
||||
|
|
|
@ -124,7 +124,6 @@
|
|||
"term.videos": "Videos",
|
||||
"term.menu": "Menu",
|
||||
"term.check": "Check",
|
||||
"term.loadingPlaylist": "Loading playlist...", // Text shown at the bottom of a playlist's body while loading song pages
|
||||
|
||||
// Home
|
||||
"home.title": "Home",
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
<div class="spinner"></div>
|
||||
</div>
|
||||
</template>
|
||||
<template>
|
||||
<template v-if="app.playlists.loadingState == 1">
|
||||
<div class="playlist-display"
|
||||
:style="{
|
||||
'--bgColor': (data.attributes.artwork != null && data.attributes.artwork['bgColor'] != null) ? ('#' + data.attributes.artwork.bgColor) : '',
|
||||
|
@ -133,10 +133,6 @@
|
|||
v-for="(item,index) in data.relationships.tracks.data"></mediaitem-list-item>
|
||||
</draggable>
|
||||
|
||||
<div class="mt-3" v-if="app.playlists.loadingState != 1">
|
||||
<div class="spinner" style="width: 25px; height: 25px;"></div>
|
||||
<span>{{$root.getLz("term.loadingPlaylist")}}</span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
@ -481,7 +477,6 @@
|
|||
const truekind = (!kind.endsWith("s")) ? (kind + "s") : kind;
|
||||
|
||||
let query = (this.data ?? app.showingPlaylist).relationships.tracks.data.map(item => new MusicKit.MediaItem(item));
|
||||
console.log(query);
|
||||
app.mk.stop().then(function () {
|
||||
app.mk.setQueue({[truekind]: [id]}).then(function () {
|
||||
app.mk.play().then(function () {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue