Skip to content

Commit d9b846f

Browse files
author
Massimiliano Gilli
committed
fix: added hw accel
1 parent d02f086 commit d9b846f

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
working-directory: ./main
4848
- run: npm run build
4949
working-directory: ./main
50-
- run: npm run package "--" -p onTagOrDraft
50+
- run: npm run package "--" -p always
5151
working-directory: ./main
5252
env:
5353
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

docs/.vitepress/config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ export default defineConfig({
2020
},
2121
themeConfig: {
2222
// logo: 'TODO', https://github.com/vuejs/vitepress/issues/1401
23-
appVersion: '0.4.2',
23+
appVersion: '0.4.3',
2424
github: {
2525
releasesUrl: 'https://github.com/Kvan7/Exiled-Exchange-2/releases'
2626
},

main/package-lock.json

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

main/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "exiled-exchange-2",
3-
"version": "0.4.2",
3+
"version": "0.4.3",
44
"private": true,
55
"scripts": {
66
"dev": "node build/script.mjs",

main/src/main.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ if (!app.requestSingleInstanceLock()) {
2020
app.exit();
2121
}
2222

23-
if (process.platform !== "darwin") {
23+
if (process.platform !== "darwin" && process.platform !== "win32") {
2424
app.disableHardwareAcceleration();
2525
}
2626
app.enableSandbox();

0 commit comments

Comments
 (0)