Compare commits

...

2 Commits

Author SHA1 Message Date
Sucukdeluxe
369d25a365 Release v1.7.8 2026-03-07 12:19:20 +01:00
Sucukdeluxe
918ec33987 Fix broken Unicode arrows in provider order and schedule cancel buttons
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-07 12:18:10 +01:00
2 changed files with 4 additions and 4 deletions

View File

@ -1,6 +1,6 @@
{
"name": "real-debrid-downloader",
"version": "1.7.7",
"version": "1.7.8",
"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(() => {}); }}>?</button>
<button className="schedule-cancel" title="Geplanten Start abbrechen" onClick={() => { void window.rd.updateSettings({ scheduledStartEpochMs: 0 }).catch(() => {}); }}>{"\u2715"}</button>
</div>
) : (
<button
@ -4359,7 +4359,7 @@ export function App(): ReactElement {
setProviderOrder(next);
}}
title="Nach oben"
>?</button>
>{"\u25B2"}</button>
<button
className="btn btn-sm"
disabled={idx === activeProviderOrder.length - 1}
@ -4369,7 +4369,7 @@ export function App(): ReactElement {
setProviderOrder(next);
}}
title="Nach unten"
>?</button>
>{"\u25BC"}</button>
</div>
</div>
))}