Compare commits

..

No commits in common. "369d25a3655f96c6facd918fed6d7b89d181d4eb" and "696263ae4e3100c5de39f4a6455a38588a7e0cf6" have entirely different histories.

2 changed files with 4 additions and 4 deletions

View File

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

View File

@ -3682,7 +3682,7 @@ export function App(): ReactElement {
{(snapshot.settings.scheduledStartEpochMs || 0) > 0 ? (
<div className="schedule-active">
<span className="schedule-badge" title="Geplanter Start">⏰ {scheduleCountdown || new Date(snapshot.settings.scheduledStartEpochMs).toLocaleTimeString([], { hour: "2-digit", minute: "2-digit" })}</span>
<button className="schedule-cancel" title="Geplanten Start abbrechen" onClick={() => { void window.rd.updateSettings({ scheduledStartEpochMs: 0 }).catch(() => {}); }}>{"\u2715"}</button>
<button className="schedule-cancel" title="Geplanten Start abbrechen" onClick={() => { void window.rd.updateSettings({ scheduledStartEpochMs: 0 }).catch(() => {}); }}>?</button>
</div>
) : (
<button
@ -4359,7 +4359,7 @@ export function App(): ReactElement {
setProviderOrder(next);
}}
title="Nach oben"
>{"\u25B2"}</button>
>?</button>
<button
className="btn btn-sm"
disabled={idx === activeProviderOrder.length - 1}
@ -4369,7 +4369,7 @@ export function App(): ReactElement {
setProviderOrder(next);
}}
title="Nach unten"
>{"\u25BC"}</button>
>?</button>
</div>
</div>
))}