Release v1.7.4
This commit is contained in:
parent
c8d911c9b0
commit
c125a5a804
4
package-lock.json
generated
4
package-lock.json
generated
@ -1,12 +1,12 @@
|
||||
{
|
||||
"name": "real-debrid-downloader",
|
||||
"version": "1.7.3",
|
||||
"version": "1.7.4",
|
||||
"lockfileVersion": 3,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "real-debrid-downloader",
|
||||
"version": "1.7.3",
|
||||
"version": "1.7.4",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"adm-zip": "^0.5.16",
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "real-debrid-downloader",
|
||||
"version": "1.7.3",
|
||||
"version": "1.7.4",
|
||||
"description": "Desktop downloader",
|
||||
"main": "build/main/main/main.js",
|
||||
"author": "Sucukdeluxe",
|
||||
|
||||
@ -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_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> = {
|
||||
service: 220,
|
||||
service: 240,
|
||||
mode: 96,
|
||||
status: 300,
|
||||
secret: 180
|
||||
status: 320,
|
||||
secret: 210
|
||||
};
|
||||
const ACCOUNT_COLUMN_MIN_WIDTHS: Record<AccountColumnKey, number> = {
|
||||
service: 180,
|
||||
@ -1975,7 +1975,7 @@ export function App(): ReactElement {
|
||||
note = "Rapidgator-Status wird aktualisiert.";
|
||||
} else if (allDebridHostInfo) {
|
||||
statusLabel = allDebridHostInfo.statusLabel;
|
||||
note = allDebridHostInfo.note || `Letztes Update: ${formatAllDebridTimestamp(allDebridHostInfo)}`;
|
||||
note = allDebridHostInfo.note || `Update: ${formatAllDebridTimestamp(allDebridHostInfo)}`;
|
||||
} else if (hasSavedAllDebridAccount) {
|
||||
note = "Rapidgator-Status kann direkt aus der Liste geladen werden.";
|
||||
}
|
||||
|
||||
@ -1347,9 +1347,16 @@ body,
|
||||
}
|
||||
|
||||
.account-note {
|
||||
display: block;
|
||||
width: 100%;
|
||||
color: var(--muted);
|
||||
font-size: 11px;
|
||||
max-width: 100%;
|
||||
min-width: 0;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.account-usage-stats {
|
||||
@ -1433,12 +1440,13 @@ body,
|
||||
|
||||
.account-row-actions {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
justify-content: flex-end;
|
||||
align-items: center;
|
||||
gap: 6px;
|
||||
flex-wrap: nowrap;
|
||||
align-content: center;
|
||||
text-align: center;
|
||||
padding-right: 8px;
|
||||
}
|
||||
|
||||
.account-row-actions .btn {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user