Working: - Core: config, secret encryption, events, throttle - Upload manager with full rotation/classifier parity to v1 - Clouddrop uploader (simple + chunked upload.clouddrop.cc) - Byse uploader with file-list polling for empty-filecode case - Vidmoly uploader (new /api/auth/login + /api/upload/config + X-Progress-ID) - Minimal frontend (accounts, settings, upload table, rotation log) - Release build: exe 6.9 MB, NSIS installer 2.5 MB, MSI 3.4 MB Stubs (return 'not yet ported' error): - Doodstream (web login + CSRF — v1 scraper needs careful port) - VOE (web login + CSRF + delivery-node negotiation) Not yet migrated from v1: - Queue persistence on restart - Folder monitor - Remote-control server - Drop-target floating window - Auto-updater
49 lines
1.3 KiB
JSON
49 lines
1.3 KiB
JSON
{
|
|
"$schema": "https://schema.tauri.app/config/2",
|
|
"productName": "Multi-Hoster-Upload",
|
|
"version": "2.0.0",
|
|
"identifier": "de.xrangerde.multi-hoster-upload",
|
|
"build": {
|
|
"frontendDist": "../src",
|
|
"devUrl": "http://localhost:1420"
|
|
},
|
|
"app": {
|
|
"withGlobalTauri": true,
|
|
"windows": [
|
|
{
|
|
"title": "Multi-Hoster-Upload",
|
|
"width": 1280,
|
|
"height": 820,
|
|
"minWidth": 960,
|
|
"minHeight": 600,
|
|
"resizable": true,
|
|
"center": true,
|
|
"decorations": true,
|
|
"theme": "Dark"
|
|
}
|
|
],
|
|
"security": {
|
|
"csp": "default-src 'self'; img-src 'self' data: https:; style-src 'self' 'unsafe-inline'; script-src 'self'; connect-src 'self' ipc: http://ipc.localhost; font-src 'self' data:"
|
|
}
|
|
},
|
|
"bundle": {
|
|
"active": true,
|
|
"targets": ["nsis", "msi"],
|
|
"publisher": "xrangerde",
|
|
"shortDescription": "Multi-Hoster file uploader",
|
|
"longDescription": "Upload files to multiple video hosters with fallback accounts, retry logic and progress tracking.",
|
|
"category": "Utility",
|
|
"icon": [
|
|
"icons/icon.png",
|
|
"icons/icon.ico"
|
|
],
|
|
"windows": {
|
|
"nsis": {
|
|
"installMode": "perMachine",
|
|
"installerIcon": "icons/icon.ico",
|
|
"languages": ["German", "English"]
|
|
}
|
|
}
|
|
}
|
|
}
|