updated dependencies
This commit is contained in:
parent
f240da4f1e
commit
fa3013547e
14
package.json
14
package.json
@ -29,20 +29,20 @@
|
|||||||
"@types/node-cron": "^3.0.11",
|
"@types/node-cron": "^3.0.11",
|
||||||
"concurrently": "^8.2.2",
|
"concurrently": "^8.2.2",
|
||||||
"dotenv": "^16.4.5",
|
"dotenv": "^16.4.5",
|
||||||
"electron": "^30.0.8",
|
"electron": "^30.1.2",
|
||||||
"electron-builder": "^24.13.3",
|
"electron-builder": "^24.13.3",
|
||||||
"eslint": "^8.57.0",
|
"eslint": "^8.57.0",
|
||||||
"eslint-config-prettier": "^8.10.0",
|
"eslint-config-prettier": "^8.10.0",
|
||||||
"eslint-plugin-prettier": "^4.2.1",
|
"eslint-plugin-prettier": "^4.2.1",
|
||||||
"long": "^5.2.3",
|
"long": "^5.2.3",
|
||||||
"modclean": "3.0.0-beta.1",
|
"modclean": "3.0.0-beta.1",
|
||||||
"nuxt": "^3.11.2",
|
"nuxt": "3.11.2",
|
||||||
"nuxt-icon": "^0.6.10",
|
"nuxt-icon": "^0.6.10",
|
||||||
"prettier": "^2.8.8",
|
"prettier": "^2.8.8",
|
||||||
"sass": "^1.77.2",
|
"sass": "^1.77.6",
|
||||||
"sass-loader": "^13.3.3",
|
"sass-loader": "^13.3.3",
|
||||||
"tsc-watch": "^6.2.0",
|
"tsc-watch": "^6.2.0",
|
||||||
"typescript": "^5.4.5",
|
"typescript": "^5.5.2",
|
||||||
"wait-on": "^7.2.0"
|
"wait-on": "^7.2.0"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
@ -52,15 +52,15 @@
|
|||||||
"electron-context-menu": "^3.6.1",
|
"electron-context-menu": "^3.6.1",
|
||||||
"electron-log": "^5.1.5",
|
"electron-log": "^5.1.5",
|
||||||
"electron-settings": "^4.0.4",
|
"electron-settings": "^4.0.4",
|
||||||
"electron-updater": "^6.1.8",
|
"electron-updater": "^6.2.1",
|
||||||
"express": "^4.19.2",
|
"express": "^4.19.2",
|
||||||
"fastify": "^4.27.0",
|
"fastify": "^4.28.0",
|
||||||
"fluent-ffmpeg": "^2.1.3",
|
"fluent-ffmpeg": "^2.1.3",
|
||||||
"jsencrypt": "^3.3.2",
|
"jsencrypt": "^3.3.2",
|
||||||
"mpd-parser": "^1.3.0",
|
"mpd-parser": "^1.3.0",
|
||||||
"node-cache": "^5.1.2",
|
"node-cache": "^5.1.2",
|
||||||
"node-cron": "^3.0.3",
|
"node-cron": "^3.0.3",
|
||||||
"protobufjs": "^7.3.0",
|
"protobufjs": "^7.3.2",
|
||||||
"sequelize": "^6.37.3",
|
"sequelize": "^6.37.3",
|
||||||
"sqlite3": "5.1.6",
|
"sqlite3": "5.1.6",
|
||||||
"winston": "^3.13.0"
|
"winston": "^3.13.0"
|
||||||
|
2435
pnpm-lock.yaml
generated
2435
pnpm-lock.yaml
generated
File diff suppressed because it is too large
Load Diff
@ -8,7 +8,7 @@ import updaterModule from './modules/updater'
|
|||||||
import macMenuModule from './modules/macMenu'
|
import macMenuModule from './modules/macMenu'
|
||||||
import startAPI from '../api/api'
|
import startAPI from '../api/api'
|
||||||
import settings from 'electron-settings'
|
import settings from 'electron-settings'
|
||||||
import contextMenu from 'electron-context-menu';
|
import contextMenu from 'electron-context-menu'
|
||||||
|
|
||||||
process.env.ELECTRON_DISABLE_SECURITY_WARNINGS = 'true'
|
process.env.ELECTRON_DISABLE_SECURITY_WARNINGS = 'true'
|
||||||
const isProduction = process.env.NODE_ENV !== 'development'
|
const isProduction = process.env.NODE_ENV !== 'development'
|
||||||
@ -356,7 +356,7 @@ ipcMain.handle(
|
|||||||
|
|
||||||
contextMenu({
|
contextMenu({
|
||||||
showInspectElement: false
|
showInspectElement: false
|
||||||
});
|
})
|
||||||
|
|
||||||
const newWindow = new BrowserWindow({
|
const newWindow = new BrowserWindow({
|
||||||
title: opt.title,
|
title: opt.title,
|
||||||
@ -385,7 +385,7 @@ ipcMain.handle(
|
|||||||
// For Linux
|
// For Linux
|
||||||
autoHideMenuBar: true
|
autoHideMenuBar: true
|
||||||
})
|
})
|
||||||
|
|
||||||
newWindow.once('ready-to-show', () => {
|
newWindow.once('ready-to-show', () => {
|
||||||
newWindow.show()
|
newWindow.show()
|
||||||
})
|
})
|
||||||
|
Reference in New Issue
Block a user