mirror of
https://github.com/qier222/YesPlayMusic.git
synced 2024-11-25 09:41:49 +08:00
fix: bugs
This commit is contained in:
parent
91ae6bb107
commit
b98bf909fb
|
@ -4,27 +4,27 @@ import { register } from "register-service-worker";
|
||||||
|
|
||||||
register(`${process.env.BASE_URL}service-worker.js`, {
|
register(`${process.env.BASE_URL}service-worker.js`, {
|
||||||
ready() {
|
ready() {
|
||||||
console.log(
|
// console.log(
|
||||||
"App is being served from cache by a service worker.\n" +
|
// "App is being served from cache by a service worker.\n" +
|
||||||
"For more details, visit https://goo.gl/AFskqB"
|
// "For more details, visit https://goo.gl/AFskqB"
|
||||||
);
|
// );
|
||||||
},
|
},
|
||||||
registered() {
|
registered() {
|
||||||
console.log("Service worker has been registered.");
|
// console.log("Service worker has been registered.");
|
||||||
},
|
},
|
||||||
cached() {
|
cached() {
|
||||||
console.log("Content has been cached for offline use.");
|
// console.log("Content has been cached for offline use.");
|
||||||
},
|
},
|
||||||
updatefound() {
|
updatefound() {
|
||||||
console.log("New content is downloading.");
|
// console.log("New content is downloading.");
|
||||||
},
|
},
|
||||||
updated() {
|
updated() {
|
||||||
console.log("New content is available; please refresh.");
|
// console.log("New content is available; please refresh.");
|
||||||
},
|
},
|
||||||
offline() {
|
offline() {
|
||||||
console.log(
|
// console.log(
|
||||||
"No internet connection found. App is running in offline mode."
|
// "No internet connection found. App is running in offline mode."
|
||||||
);
|
// );
|
||||||
},
|
},
|
||||||
error(error) {
|
error(error) {
|
||||||
console.error("Error during service worker registration:", error);
|
console.error("Error during service worker registration:", error);
|
||||||
|
|
|
@ -161,12 +161,12 @@ export default class {
|
||||||
if (firstTrackID !== "first") this._shuffledList.unshift(firstTrackID);
|
if (firstTrackID !== "first") this._shuffledList.unshift(firstTrackID);
|
||||||
}
|
}
|
||||||
async _scrobble(track, time, complete = false) {
|
async _scrobble(track, time, complete = false) {
|
||||||
console.log(`scrobble ${track.name} by ${track.ar[0].name}`);
|
|
||||||
const trackDuration = ~~(track.dt / 1000);
|
const trackDuration = ~~(track.dt / 1000);
|
||||||
|
time = complete ? trackDuration : time;
|
||||||
scrobble({
|
scrobble({
|
||||||
id: track.id,
|
id: track.id,
|
||||||
sourceid: this.playlistSource.id,
|
sourceid: this.playlistSource.id,
|
||||||
time: complete ? trackDuration : time,
|
time,
|
||||||
});
|
});
|
||||||
if (
|
if (
|
||||||
store.state.lastfm.key !== undefined &&
|
store.state.lastfm.key !== undefined &&
|
||||||
|
|
|
@ -75,7 +75,7 @@
|
||||||
</select>
|
</select>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="item">
|
<div class="item" v-if="isElectron">
|
||||||
<div class="left">
|
<div class="left">
|
||||||
<div class="title"> {{ $t("settings.deviceSelector") }} </div>
|
<div class="title"> {{ $t("settings.deviceSelector") }} </div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -92,7 +92,7 @@
|
||||||
</select>
|
</select>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="item">
|
<div class="item" v-if="isElectron">
|
||||||
<div class="left">
|
<div class="left">
|
||||||
<div class="title">
|
<div class="title">
|
||||||
{{ $t("settings.automaticallyCacheSongs") }}
|
{{ $t("settings.automaticallyCacheSongs") }}
|
||||||
|
@ -110,7 +110,7 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="item">
|
<div class="item" v-if="isElectron">
|
||||||
<div class="left">
|
<div class="left">
|
||||||
<div class="title">
|
<div class="title">
|
||||||
{{
|
{{
|
||||||
|
|
|
@ -97,6 +97,7 @@ module.exports = {
|
||||||
{
|
{
|
||||||
target: "nsis",
|
target: "nsis",
|
||||||
arch: ["x64"],
|
arch: ["x64"],
|
||||||
|
deleteAppDataOnUninstall: true,
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
publisherName: "YesPlayMusic",
|
publisherName: "YesPlayMusic",
|
||||||
|
@ -115,7 +116,7 @@ module.exports = {
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
target: "deb",
|
target: "deb",
|
||||||
arch: ["x64"],
|
arch: ["x64", "armv7l"],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
target: "rpm",
|
target: "rpm",
|
||||||
|
|
Loading…
Reference in New Issue
Block a user