-
-
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
1 parent
7f613c9
commit 3588e32
Showing
4 changed files
with
74 additions
and
60 deletions.
There are no files selected for viewing
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
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,11 @@ | ||
{ | ||
"identifier": "migrated", | ||
"description": "permissions that were migrated from v1", | ||
"local": true, | ||
"windows": [ | ||
"main" | ||
], | ||
"permissions": [ | ||
"core:default" | ||
] | ||
} |
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 |
---|---|---|
|
@@ -3,70 +3,69 @@ | |
"build": { | ||
"beforeBuildCommand": "npm run build", | ||
"beforeDevCommand": "npm run dev", | ||
"devPath": "http://localhost:5173", | ||
"distDir": "../dist" | ||
"frontendDist": "../dist", | ||
"devUrl": "http://localhost:5173" | ||
}, | ||
"package": { | ||
"productName": "remede", | ||
"version": "../package.json" | ||
}, | ||
"tauri": { | ||
"allowlist": { | ||
"all": false | ||
"bundle": { | ||
"active": true, | ||
"targets": [ | ||
"deb", | ||
"nsis", | ||
"msi", | ||
"dmg", | ||
"app" | ||
], | ||
"externalBin": [], | ||
"icon": [ | ||
"icons/32x32.png", | ||
"icons/128x128.png", | ||
"icons/[email protected]", | ||
"icons/icon.icns", | ||
"icons/icon.ico" | ||
], | ||
"windows": { | ||
"certificateThumbprint": null, | ||
"digestAlgorithm": "sha256", | ||
"timestampUrl": "", | ||
"webviewInstallMode": { | ||
"type": "offlineInstaller" | ||
}, | ||
"nsis": { | ||
"installerIcon": "icons/icon.ico", | ||
"headerImage": "src/header.bmp" | ||
} | ||
}, | ||
"shortDescription": "The free dictionary", | ||
"longDescription": "Remède is a powerful dictionary developed by its community. It has a large database with over 900 000 french words, synonyms, antonyms, conjugations and rhymes. It also has a corrector and an offline mode. With Remède, never lost your words again.", | ||
"copyright": "Remède and its contributors.", | ||
"category": "Productivity", | ||
"macOS": { | ||
"entitlements": null, | ||
"exceptionDomain": "", | ||
"frameworks": [], | ||
"providerShortName": null, | ||
"signingIdentity": null | ||
}, | ||
"bundle": { | ||
"active": true, | ||
"resources": [], | ||
"linux": { | ||
"deb": { | ||
"depends": [], | ||
"desktopTemplate": "./remede.desktop", | ||
"files": { | ||
"/usr/share/README.md": "../../README.md", | ||
"/usr/share/metainfo/remede.metainfo.xml": "./remede.metainfo.xml" | ||
} | ||
}, | ||
"externalBin": [], | ||
"icon": [ | ||
"icons/32x32.png", | ||
"icons/128x128.png", | ||
"icons/[email protected]", | ||
"icons/icon.icns", | ||
"icons/icon.ico" | ||
], | ||
"identifier": "dev.camarm.remede", | ||
"shortDescription": "The free dictionary", | ||
"longDescription": "Remède is a powerful dictionary developed by its community. It has a large database with over 900 000 french words, synonyms, antonyms, conjugations and rhymes. It also has a corrector and an offline mode. With Remède, never lost your words again.", | ||
"copyright": "Remède and its contributors.", | ||
"category": "Productivity", | ||
"macOS": { | ||
"entitlements": null, | ||
"exceptionDomain": "", | ||
"frameworks": [], | ||
"providerShortName": null, | ||
"signingIdentity": null, | ||
"license": "../../LICENSE" | ||
}, | ||
"resources": [], | ||
"targets": ["deb", "nsis", "msi", "dmg", "app", "updater"], | ||
"windows": { | ||
"certificateThumbprint": null, | ||
"digestAlgorithm": "sha256", | ||
"timestampUrl": "", | ||
"webviewInstallMode": { | ||
"type": "offlineInstaller" | ||
}, | ||
"nsis": { | ||
"installerIcon": "icons/icon.ico", | ||
"headerImage": "src/header.bmp", | ||
"license": "../../LICENSE" | ||
"/usr/share/metainfo/remede.metainfo.xml": "./remede.metainfo.xml" | ||
} | ||
} | ||
}, | ||
"security": { | ||
"csp": null | ||
}, | ||
"updater": { | ||
"active": false | ||
}, | ||
"licenseFile": "../../LICENSE", | ||
"createUpdaterArtifacts": "v1Compatible" | ||
}, | ||
"productName": "remede", | ||
"mainBinaryName": "remede", | ||
"version": "../package.json", | ||
"identifier": "dev.camarm.remede", | ||
"plugins": {}, | ||
"app": { | ||
"windows": [ | ||
{ | ||
"fullscreen": false, | ||
|
@@ -77,8 +76,12 @@ | |
"height": 800, | ||
"resizable": true, | ||
"title": "Remède | Dictionnaire", | ||
"width": 1300 | ||
"width": 1300, | ||
"useHttpsScheme": true | ||
} | ||
] | ||
], | ||
"security": { | ||
"csp": null | ||
} | ||
} | ||
} | ||
} |