release: prepare version 2.0.4

This commit is contained in:
Sucukdeluxe
2026-08-09 14:25:20 +02:00
parent 7008349873
commit 1750c6f0a9
4 changed files with 8 additions and 4 deletions
+4
View File
@@ -301,6 +301,10 @@ This makes it easy to share one URL plus token during support, so current packag
Detailed release history is published on [GitHub Releases](https://github.com/Sucukdeluxe/multi-debrid-downloader/releases).
### 2.0.4
- Rename the online backup action from "create" to "export" for clearer wording.
### 2.0.3
- Keep online backup keys on a single line in the export and import dialog.
+2 -2
View File
@@ -1,12 +1,12 @@
{
"name": "real-debrid-downloader",
"version": "2.0.3",
"version": "2.0.4",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "real-debrid-downloader",
"version": "2.0.3",
"version": "2.0.4",
"license": "MIT",
"dependencies": {
"adm-zip": "0.6.0",
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "real-debrid-downloader",
"version": "2.0.3",
"version": "2.0.4",
"description": "Desktop downloader",
"main": "build/main/main/main.js",
"author": "Sucukdeluxe",
+1 -1
View File
@@ -4702,7 +4702,7 @@ export function App(): ReactElement {
<button className="menu-dropdown-item" onClick={() => { void onExportBackup(); }}>Exportieren</button>
<button className="menu-dropdown-item" onClick={() => { void onImportBackup(); }}>Importieren</button>
<div className="menu-separator" />
<button className="menu-dropdown-item" onClick={() => { void onCreateOnlineBackup(); }}>Online-Schlüssel erstellen</button>
<button className="menu-dropdown-item" onClick={() => { void onCreateOnlineBackup(); }}>Online-Schlüssel exportieren</button>
<button className="menu-dropdown-item" onClick={onOpenOnlineBackupImport}>Online-Schlüssel importieren</button>
</div>
)}