fix: bugs

This commit is contained in:
qier222 2021-03-25 19:29:55 +08:00
parent 91ae6bb107
commit b98bf909fb
No known key found for this signature in database
GPG Key ID: 9C85007ED905F14D
4 changed files with 18 additions and 17 deletions

View File

@ -4,27 +4,27 @@ import { register } from "register-service-worker";
register(`${process.env.BASE_URL}service-worker.js`, {
ready() {
console.log(
"App is being served from cache by a service worker.\n" +
"For more details, visit https://goo.gl/AFskqB"
);
// console.log(
// "App is being served from cache by a service worker.\n" +
// "For more details, visit https://goo.gl/AFskqB"
// );
},
registered() {
console.log("Service worker has been registered.");
// console.log("Service worker has been registered.");
},
cached() {
console.log("Content has been cached for offline use.");
// console.log("Content has been cached for offline use.");
},
updatefound() {
console.log("New content is downloading.");
// console.log("New content is downloading.");
},
updated() {
console.log("New content is available; please refresh.");
// console.log("New content is available; please refresh.");
},
offline() {
console.log(
"No internet connection found. App is running in offline mode."
);
// console.log(
// "No internet connection found. App is running in offline mode."
// );
},
error(error) {
console.error("Error during service worker registration:", error);

View File

@ -161,12 +161,12 @@ export default class {
if (firstTrackID !== "first") this._shuffledList.unshift(firstTrackID);
}
async _scrobble(track, time, complete = false) {
console.log(`scrobble ${track.name} by ${track.ar[0].name}`);
const trackDuration = ~~(track.dt / 1000);
time = complete ? trackDuration : time;
scrobble({
id: track.id,
sourceid: this.playlistSource.id,
time: complete ? trackDuration : time,
time,
});
if (
store.state.lastfm.key !== undefined &&

View File

@ -75,7 +75,7 @@
</select>
</div>
</div>
<div class="item">
<div class="item" v-if="isElectron">
<div class="left">
<div class="title"> {{ $t("settings.deviceSelector") }} </div>
</div>
@ -92,7 +92,7 @@
</select>
</div>
</div>
<div class="item">
<div class="item" v-if="isElectron">
<div class="left">
<div class="title">
{{ $t("settings.automaticallyCacheSongs") }}
@ -110,7 +110,7 @@
</div>
</div>
</div>
<div class="item">
<div class="item" v-if="isElectron">
<div class="left">
<div class="title">
{{

View File

@ -97,6 +97,7 @@ module.exports = {
{
target: "nsis",
arch: ["x64"],
deleteAppDataOnUninstall: true,
},
],
publisherName: "YesPlayMusic",
@ -115,7 +116,7 @@ module.exports = {
},
{
target: "deb",
arch: ["x64"],
arch: ["x64", "armv7l"],
},
{
target: "rpm",