-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
11,337 additions
and
746 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
fn main() { | ||
tauri_build::build() | ||
tauri_build::build() | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
{ | ||
"identifier": "migrated", | ||
"description": "permissions that were migrated from v1", | ||
"local": true, | ||
"windows": [ | ||
"main" | ||
], | ||
"permissions": [ | ||
"core:default", | ||
"fs:allow-read-file", | ||
"fs:allow-write-file", | ||
"fs:allow-read-dir", | ||
"fs:allow-copy-file", | ||
"fs:allow-mkdir", | ||
"fs:allow-remove", | ||
"fs:allow-remove", | ||
"fs:allow-rename", | ||
"fs:allow-exists", | ||
"shell:allow-open", | ||
"fs:default", | ||
"shell:default" | ||
] | ||
} |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{"migrated":{"identifier":"migrated","description":"permissions that were migrated from v1","local":true,"windows":["main"],"permissions":["core:default","fs:allow-read-file","fs:allow-write-file","fs:allow-read-dir","fs:allow-copy-file","fs:allow-mkdir","fs:allow-remove","fs:allow-remove","fs:allow-rename","fs:allow-exists","shell:allow-open","fs:default","shell:default"]}} |
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,62 +2,49 @@ | |
"build": { | ||
"beforeBuildCommand": "npm --prefix client run build", | ||
"beforeDevCommand": "npm --prefix client run dev", | ||
"devPath": "http://localhost:5173", | ||
"distDir": "../client/dist" | ||
"frontendDist": "../client/dist", | ||
"devUrl": "http://localhost:5173" | ||
}, | ||
"package": { | ||
"productName": "Twwe", | ||
"version": "0.1.1" | ||
}, | ||
"tauri": { | ||
"allowlist": { | ||
"all": false, | ||
"fs": { | ||
"all": true | ||
}, | ||
"shell": { | ||
"open": true | ||
} | ||
"bundle": { | ||
"active": true, | ||
"category": "Game", | ||
"copyright": "Mathis Brossier <[email protected]>", | ||
"targets": "all", | ||
"externalBin": [], | ||
"icon": [ | ||
"icons/32x32.png", | ||
"icons/128x128.png", | ||
"icons/[email protected]", | ||
"icons/icon.icns", | ||
"icons/icon.ico" | ||
], | ||
"windows": { | ||
"certificateThumbprint": null, | ||
"digestAlgorithm": "sha256", | ||
"timestampUrl": "" | ||
}, | ||
"longDescription": "", | ||
"macOS": { | ||
"entitlements": null, | ||
"exceptionDomain": "", | ||
"frameworks": [], | ||
"providerShortName": null, | ||
"signingIdentity": null | ||
}, | ||
"bundle": { | ||
"active": true, | ||
"category": "Game", | ||
"copyright": "Mathis Brossier <[email protected]>", | ||
"resources": [], | ||
"shortDescription": "", | ||
"linux": { | ||
"deb": { | ||
"depends": [] | ||
}, | ||
"externalBin": [], | ||
"icon": [ | ||
"icons/32x32.png", | ||
"icons/128x128.png", | ||
"icons/[email protected]", | ||
"icons/icon.icns", | ||
"icons/icon.ico" | ||
], | ||
"identifier": "fr.thissma.tw", | ||
"longDescription": "", | ||
"macOS": { | ||
"entitlements": null, | ||
"exceptionDomain": "", | ||
"frameworks": [], | ||
"providerShortName": null, | ||
"signingIdentity": null | ||
}, | ||
"resources": [], | ||
"shortDescription": "", | ||
"targets": "all", | ||
"windows": { | ||
"certificateThumbprint": null, | ||
"digestAlgorithm": "sha256", | ||
"timestampUrl": "" | ||
} | ||
}, | ||
"security": { | ||
"csp": null | ||
}, | ||
"updater": { | ||
"active": false | ||
}, | ||
} | ||
}, | ||
"productName": "Twwe", | ||
"mainBinaryName": "Twwe", | ||
"version": "0.1.1", | ||
"identifier": "fr.thissma.tw", | ||
"plugins": {}, | ||
"app": { | ||
"windows": [ | ||
{ | ||
"fullscreen": false, | ||
|
@@ -66,6 +53,9 @@ | |
"title": "Teeworlds Web Editor", | ||
"width": 800 | ||
} | ||
] | ||
], | ||
"security": { | ||
"csp": null | ||
} | ||
} | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.