Skip to content

Commit 29c8bcb

Browse files
author
SimonAking
committed
feat: ✨ Update to version 1.5.0
1 parent e89646d commit 29c8bcb

File tree

12 files changed

+787
-288
lines changed

12 files changed

+787
-288
lines changed

build/icons/16x16.png

1.85 KB
Loading

package-lock.json

Lines changed: 96 additions & 26 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "scrcpy-gui",
3-
"version": "1.0.0",
3+
"version": "1.5.0",
44
"author": "SimonMa <[email protected]>",
55
"homepage": "https://github.com/Tomotoes/scrcpy-gui",
66
"description": "✨ A simple & beautiful GUI application for scrcpy",
@@ -11,7 +11,7 @@
1111
"build:dir": "node .electron-vue/build.js && electron-builder --dir",
1212
"build:clean": "cross-env BUILD_TARGET=clean node .electron-vue/build.js",
1313
"build:web": "cross-env BUILD_TARGET=web node .electron-vue/build.js",
14-
"dev": "node .electron-vue/dev-runner.js",
14+
"start": "node .electron-vue/dev-runner.js",
1515
"lint": "eslint --ext .js,.vue -f ./node_modules/eslint-friendly-formatter src",
1616
"lint:fix": "eslint --ext .js,.vue -f ./node_modules/eslint-friendly-formatter --fix src",
1717
"pack": "npm run pack:main && npm run pack:renderer",
@@ -52,7 +52,15 @@
5252
},
5353
"win": {
5454
"icon": "build/icons/icon.ico",
55-
"target": "nsis",
55+
"target": [
56+
{
57+
"target": "nsis",
58+
"arch": [
59+
"x64",
60+
"ia32"
61+
]
62+
}
63+
],
5664
"legalTrademarks": "Simon Personal"
5765
},
5866
"nsis": {
@@ -71,9 +79,10 @@
7179
},
7280
"dependencies": {
7381
"adbkit": "^2.11.1",
74-
"custom-electron-titlebar": "^3.1.0",
82+
"custom-electron-titlebar": "^3.2.2",
7583
"debug": "^4.1.1",
7684
"element-ui": "^2.11.1",
85+
"fix-path": "^3.0.0",
7786
"localstorage": "^1.0.1",
7887
"normalize.css": "^8.0.1",
7988
"vue": "^2.5.16",

src/main/index.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ function createWindow() {
4141
mainWindow.loadURL(winURL)
4242
mainWindow.once('ready-to-show', () => {
4343
mainWindow.show()
44+
// mainWindow.webContents.openDevTools()
4445
})
4546
mainWindow.on('close', () => {
4647
ipcMain.removeAllListeners('open')

0 commit comments

Comments
 (0)