[Update] バージョン管理: package.json, tauri.conf.json, config.pyのバージョンを更新し、update_version.pyを追加

This commit is contained in:
misyaguziya
2025-11-25 00:22:23 +09:00
parent d22c6c8f0c
commit 54ec5ba45d
4 changed files with 69 additions and 24 deletions

View File

@@ -1,7 +1,7 @@
{
"$schema": "https://schema.tauri.app/config/2",
"productName": "VRCT",
"version": "3.3.1",
"version": "0.0.0",
"identifier": "com.vrct.app",
"build": {
"beforeDevCommand": "",
@@ -11,20 +11,25 @@
},
"app": {
"enableGTKAppId": false,
"windows": [{
"title": "VRCT",
"center": true,
"width": 450,
"height": 220,
"minWidth": 400,
"minHeight": 200,
"transparent": true,
"decorations": false,
"shadow": false
}],
"windows": [
{
"title": "VRCT",
"center": true,
"width": 450,
"height": 220,
"minWidth": 400,
"minHeight": 200,
"transparent": true,
"decorations": false,
"shadow": false
}
],
"security": {
"csp": null,
"capabilities": ["default", "vrct-capability"]
"capabilities": [
"default",
"vrct-capability"
]
}
},
"bundle": {
@@ -56,4 +61,4 @@
}
}
}
}
}