1
1
mirror of https://github.com/neosubhamoy/pytubepp-helper.git synced 2026-02-04 11:22:22 +05:30

(refactor): migrated tauri project to v2

This commit is contained in:
2025-02-10 09:27:09 +05:30
Verified
parent 5d3a01cc65
commit 8a7c0a1946
20 changed files with 2471 additions and 1798 deletions

View File

@@ -1,39 +1,38 @@
{
"$schema": "https://schema.tauri.app/config/2",
"build": {
"beforeDevCommand": "npm run dev",
"beforeBuildCommand": "npm run build",
"devPath": "http://localhost:1422",
"distDir": "../dist"
"frontendDist": "../dist",
"devUrl": "http://localhost:1422"
},
"package": {
"productName": "pytubepp-helper",
"version": "0.6.0"
"bundle": {
"active": true,
"targets": "all",
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
]
},
"tauri": {
"allowlist": {
"all": false
"productName": "pytubepp-helper",
"mainBinaryName": "pytubepp-helper",
"version": "0.6.0",
"identifier": "com.neosubhamoy.pytubepp.helper",
"plugins": {},
"app": {
"security": {
"csp": null
},
"windows": [
{
"title": "PytubePP Helper",
"width": 500,
"height": 320
"width": 510,
"height": 345,
"useHttpsScheme": true
}
],
"security": {
"csp": null
},
"bundle": {
"active": true,
"targets": "all",
"identifier": "com.neosubhamoy.pytubepp.helper",
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
]
}
]
}
}
}