Release v1.4.39 with Multi Debrid Downloader title format
Some checks are pending
Build and Release / build (push) Waiting to run

This commit is contained in:
Sucukdeluxe 2026-03-01 02:25:17 +01:00
parent 310f4dc58a
commit 474ff8cd26
5 changed files with 8 additions and 4 deletions

View File

@ -1,6 +1,6 @@
{
"name": "real-debrid-downloader",
"version": "1.4.38",
"version": "1.4.39",
"description": "Real-Debrid Downloader Desktop (Electron + React + TypeScript)",
"main": "build/main/main/main.js",
"author": "Sucukdeluxe",

View File

@ -3,7 +3,7 @@ import os from "node:os";
import { AppSettings } from "../shared/types";
import packageJson from "../../package.json";
export const APP_NAME = "Debrid Download Manager";
export const APP_NAME = "Multi Debrid Downloader";
export const APP_VERSION: string = packageJson.version;
export const API_BASE_URL = "https://api.real-debrid.com/rest/1.0";

View File

@ -64,7 +64,7 @@ function createWindow(): BrowserWindow {
minWidth: 1120,
minHeight: 760,
backgroundColor: "#070b14",
title: `${APP_NAME} v${controller.getVersion()}`,
title: `${APP_NAME} - v${controller.getVersion()}`,
webPreferences: {
contextIsolation: true,
nodeIntegration: false,

View File

@ -258,6 +258,10 @@ export function App(): ReactElement {
importQueueFocusHandlerRef.current = null;
}, []);
useEffect(() => {
document.title = `Multi Debrid Downloader${appVersion ? ` - v${appVersion}` : ""}`;
}, [appVersion]);
useEffect(() => {
let unsubscribe: (() => void) | null = null;
let unsubClipboard: (() => void) | null = null;

View File

@ -3,7 +3,7 @@
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Debrid Download Manager</title>
<title>Multi Debrid Downloader</title>
</head>
<body>
<div id="root"></div>