Skip to content

Commit 91cc133

Browse files
committed
adjusted what's new
1 parent af9022a commit 91cc133

30 files changed

+436
-456
lines changed

package-lock.json

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

package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
"url": "https://github.com/TeamOverVue/OverVue/issues"
1212
},
1313
"homepage": "https://github.com/TeamOverVue/OverVue",
14-
1514
"scripts": {
1615
"lint": "eslint --ext .js,.vue ./",
1716
"test": "echo \"See package.json => scripts for available tests.\" && exit 0",
@@ -27,7 +26,7 @@
2726
"concurrently:dev:jest": "concurrently \"quasar dev\" \"jest --watch\"",
2827
"build:all": "npm run build && npm run build:win && npm run build:mac && npm run build:linux",
2928
"build:win": "electron-builder --win",
30-
"build:mac": "electron-builder --mac",
29+
"build:mac": "electron-builder --mac --universal",
3130
"build:linux": "electron-builder --linux"
3231
},
3332
"dependencies": {

src-electron/electron-main.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,8 +78,8 @@ if (mainWindow) {
7878
const { filePaths } = await dialog.showOpenDialog(mainWindow, options);
7979

8080
if (!filePaths) return;
81-
const readData = await fs.readFileSync(filePaths[0], "utf8");
82-
const jsonFile = JSON.parse(readData);
81+
const readData = await fs.readFileSync(filePaths[0], "utf8");
82+
const jsonFile = JSON.parse(readData);
8383
return { jsonFile };
8484
}
8585
});

src/components/Canvas.vue

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1255,4 +1255,3 @@ li:hover {
12551255
background: black;
12561256
}
12571257
</style>
1258-
../stores/main.js

0 commit comments

Comments
 (0)