diff --git a/package.json b/package.json index b3289b8..b392d84 100644 --- a/package.json +++ b/package.json @@ -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", diff --git a/src/main/constants.ts b/src/main/constants.ts index 778c34a..12dcf4e 100644 --- a/src/main/constants.ts +++ b/src/main/constants.ts @@ -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"; diff --git a/src/main/main.ts b/src/main/main.ts index ede02a2..915e2ee 100644 --- a/src/main/main.ts +++ b/src/main/main.ts @@ -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, diff --git a/src/renderer/App.tsx b/src/renderer/App.tsx index c2b76b6..75cb69c 100644 --- a/src/renderer/App.tsx +++ b/src/renderer/App.tsx @@ -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; diff --git a/src/renderer/index.html b/src/renderer/index.html index 1341022..da224cd 100644 --- a/src/renderer/index.html +++ b/src/renderer/index.html @@ -3,7 +3,7 @@
-