Release v1.7.4

This commit is contained in:
Sucukdeluxe 2026-03-07 04:06:28 +01:00
parent c8d911c9b0
commit c125a5a804
4 changed files with 17 additions and 9 deletions

4
package-lock.json generated
View File

@ -1,12 +1,12 @@
{ {
"name": "real-debrid-downloader", "name": "real-debrid-downloader",
"version": "1.7.3", "version": "1.7.4",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "real-debrid-downloader", "name": "real-debrid-downloader",
"version": "1.7.3", "version": "1.7.4",
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"adm-zip": "^0.5.16", "adm-zip": "^0.5.16",

View File

@ -1,6 +1,6 @@
{ {
"name": "real-debrid-downloader", "name": "real-debrid-downloader",
"version": "1.7.3", "version": "1.7.4",
"description": "Desktop downloader", "description": "Desktop downloader",
"main": "build/main/main/main.js", "main": "build/main/main/main.js",
"author": "Sucukdeluxe", "author": "Sucukdeluxe",

View File

@ -243,12 +243,12 @@ const ACCOUNT_OPTIONS: AccountOption[] = [
const ACCOUNT_SERVICES: AccountService[] = ["realdebrid", "megadebrid-api", "megadebrid-web", "bestdebrid", "alldebrid", "ddownload", "onefichier", "debridlink", "linksnappy"]; const ACCOUNT_SERVICES: AccountService[] = ["realdebrid", "megadebrid-api", "megadebrid-web", "bestdebrid", "alldebrid", "ddownload", "onefichier", "debridlink", "linksnappy"];
const ACCOUNT_LIMIT_BYTES_PER_GIB = 1024 * 1024 * 1024; const ACCOUNT_LIMIT_BYTES_PER_GIB = 1024 * 1024 * 1024;
const ACCOUNT_COLUMN_STORAGE_KEY = "rd-account-column-widths"; const ACCOUNT_COLUMN_STORAGE_KEY = "rd-account-column-widths-v2";
const ACCOUNT_COLUMN_DEFAULT_WIDTHS: Record<AccountColumnKey, number> = { const ACCOUNT_COLUMN_DEFAULT_WIDTHS: Record<AccountColumnKey, number> = {
service: 220, service: 240,
mode: 96, mode: 96,
status: 300, status: 320,
secret: 180 secret: 210
}; };
const ACCOUNT_COLUMN_MIN_WIDTHS: Record<AccountColumnKey, number> = { const ACCOUNT_COLUMN_MIN_WIDTHS: Record<AccountColumnKey, number> = {
service: 180, service: 180,
@ -1975,7 +1975,7 @@ export function App(): ReactElement {
note = "Rapidgator-Status wird aktualisiert."; note = "Rapidgator-Status wird aktualisiert.";
} else if (allDebridHostInfo) { } else if (allDebridHostInfo) {
statusLabel = allDebridHostInfo.statusLabel; statusLabel = allDebridHostInfo.statusLabel;
note = allDebridHostInfo.note || `Letztes Update: ${formatAllDebridTimestamp(allDebridHostInfo)}`; note = allDebridHostInfo.note || `Update: ${formatAllDebridTimestamp(allDebridHostInfo)}`;
} else if (hasSavedAllDebridAccount) { } else if (hasSavedAllDebridAccount) {
note = "Rapidgator-Status kann direkt aus der Liste geladen werden."; note = "Rapidgator-Status kann direkt aus der Liste geladen werden.";
} }

View File

@ -1347,9 +1347,16 @@ body,
} }
.account-note { .account-note {
display: block;
width: 100%;
color: var(--muted); color: var(--muted);
font-size: 11px; font-size: 11px;
max-width: 100%;
min-width: 0;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap; white-space: nowrap;
text-align: center;
} }
.account-usage-stats { .account-usage-stats {
@ -1433,12 +1440,13 @@ body,
.account-row-actions { .account-row-actions {
display: flex; display: flex;
justify-content: center; justify-content: flex-end;
align-items: center; align-items: center;
gap: 6px; gap: 6px;
flex-wrap: nowrap; flex-wrap: nowrap;
align-content: center; align-content: center;
text-align: center; text-align: center;
padding-right: 8px;
} }
.account-row-actions .btn { .account-row-actions .btn {