Skip to content

Commit

Permalink
🔖 v0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
A-kirami committed Apr 18, 2023
1 parent 008a5a3 commit 93211a5
Showing 1 changed file with 80 additions and 89 deletions.
169 changes: 80 additions & 89 deletions src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
@@ -1,94 +1,85 @@
{
"build": {
"beforeDevCommand": "pnpm dev",
"beforeBuildCommand": "pnpm build",
"devPath": "http://localhost:1420",
"distDir": "../dist",
"withGlobalTauri": false
"build": {
"beforeDevCommand": "pnpm dev",
"beforeBuildCommand": "pnpm build",
"devPath": "http://localhost:1420",
"distDir": "../dist",
"withGlobalTauri": false
},
"package": {
"productName": "matcha",
"version": "0.2.0"
},
"tauri": {
"macOSPrivateApi": true,
"windows": [
{
"title": "Matcha",
"fullscreen": false,
"height": 800,
"width": 1280,
"minHeight": 640,
"minWidth": 798,
"resizable": true,
"center": true,
"decorations": false,
"transparent": true
}
],
"allowlist": {
"app": {
"all": true
},
"os": {
"all": true
},
"path": {
"all": true
},
"fs": {
"all": true,
"scope": ["$APPCACHE/*", "$APPCACHE/*/**"]
},
"shell": {
"all": false,
"open": true
},
"window": {
"all": true
}
},
"package": {
"productName": "matcha",
"version": "0.1.2"
},
"tauri": {
"macOSPrivateApi": true,
"windows": [
{
"title": "Matcha",
"fullscreen": false,
"height": 800,
"width": 1280,
"minHeight": 640,
"minWidth": 798,
"resizable": true,
"center": true,
"decorations": false,
"transparent": true
}
],
"allowlist": {
"app": {
"all": true
},
"os": {
"all": true
},
"path": {
"all": true
},
"fs": {
"all": true,
"scope": [
"$APPCACHE/*",
"$APPCACHE/*/**"
]
},
"shell": {
"all": false,
"open": true
},
"window": {
"all": true
}
},
"bundle": {
"active": true,
"category": "DeveloperTool",
"copyright": "",
"externalBin": [],
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/[email protected]",
"icons/icon.icns",
"icons/icon.ico"
],
"identifier": "com.akirami.matcha",
"longDescription": "",
"resources": [],
"shortDescription": "",
"targets": "all",
"deb": {
"depends": []
},
"macOS": {
"exceptionDomain": "",
"frameworks": []
},
"windows": {
"digestAlgorithm": "sha256",
"timestampUrl": "",
"webviewInstallMode": {
"type": "embedBootstrapper"
},
"wix": {
"language": "zh-CN"
}
}
"bundle": {
"active": true,
"category": "DeveloperTool",
"copyright": "",
"externalBin": [],
"icon": ["icons/32x32.png", "icons/128x128.png", "icons/[email protected]", "icons/icon.icns", "icons/icon.ico"],
"identifier": "com.akirami.matcha",
"longDescription": "",
"resources": [],
"shortDescription": "",
"targets": "all",
"deb": {
"depends": []
},
"macOS": {
"exceptionDomain": "",
"frameworks": []
},
"windows": {
"digestAlgorithm": "sha256",
"timestampUrl": "",
"webviewInstallMode": {
"type": "embedBootstrapper"
},
"security": {},
"updater": {
"active": false
"wix": {
"language": "zh-CN"
}
}
},
"security": {},
"updater": {
"active": false
}
}
}
}

0 comments on commit 93211a5

Please sign in to comment.