mirror of
https://github.com/GiriNeko/YesPlayMusic.git
synced 2025-12-16 13:17:46 +00:00
docs: update package.json
This commit is contained in:
parent
51d11e8316
commit
a74a55544b
2 changed files with 30 additions and 29 deletions
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "YesPlayMusic",
|
"name": "YesPlayMusic",
|
||||||
"version": "0.3.2",
|
"version": "0.3.3",
|
||||||
"private": true,
|
"private": true,
|
||||||
"description": "A third party music application for Netease Music",
|
"description": "A third party music application for Netease Music",
|
||||||
"author": "hawtim<hawtimzhang@gmail.com>",
|
"author": "hawtim<hawtimzhang@gmail.com>",
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
import { app, ipcMain } from "electron";
|
import { app, ipcMain, dialog } from "electron";
|
||||||
import match from "@njzy/unblockneteasemusic";
|
import match from "@njzy/unblockneteasemusic";
|
||||||
|
|
||||||
export function initIpcMain(win, store) {
|
export function initIpcMain(win, store) {
|
||||||
|
|
@ -25,20 +25,21 @@ export function initIpcMain(win, store) {
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
ipcMain.on('close', (e) => {
|
ipcMain.on("close", (e) => {
|
||||||
if (process.platform == 'darwin') {
|
if (process.platform == "darwin") {
|
||||||
//判断mac
|
|
||||||
win.hide();
|
win.hide();
|
||||||
})
|
}
|
||||||
e.preventDefault()//阻止默认行为
|
e.preventDefault(); //阻止默认行为
|
||||||
dialog.showMessageBox({
|
dialog
|
||||||
type: 'info',
|
.showMessageBox({
|
||||||
title: 'Information',
|
type: "info",
|
||||||
|
title: "Information",
|
||||||
cancelId: 2,
|
cancelId: 2,
|
||||||
defaultId: 0,
|
defaultId: 0,
|
||||||
message: '确定要关闭吗?',
|
message: "确定要关闭吗?",
|
||||||
buttons: ['最小化','直接退出']
|
buttons: ["最小化", "直接退出"],
|
||||||
}).then(result => {
|
})
|
||||||
|
.then((result) => {
|
||||||
if (result.response == 0) {
|
if (result.response == 0) {
|
||||||
e.preventDefault(); //阻止默认行为
|
e.preventDefault(); //阻止默认行为
|
||||||
win.minimize(); //调用 最小化实例方法
|
win.minimize(); //调用 最小化实例方法
|
||||||
|
|
@ -47,11 +48,11 @@ export function initIpcMain(win, store) {
|
||||||
//app.quit();
|
//app.quit();
|
||||||
app.exit(); //exit()直接关闭客户端,不会执行quit();
|
app.exit(); //exit()直接关闭客户端,不会执行quit();
|
||||||
}
|
}
|
||||||
}).catch(err => {
|
|
||||||
console.log(err)
|
|
||||||
})
|
})
|
||||||
|
.catch((err) => {
|
||||||
|
console.log(err);
|
||||||
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
||||||
ipcMain.on("minimize", () => {
|
ipcMain.on("minimize", () => {
|
||||||
win.minimize();
|
win.minimize();
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue