release: publish Multi-Debrid Downloader v2.0.14
Add live English and German localization, queue availability and metadata resolution, responsive package controls, polished navigation and drag interactions, clearer history and account states, and a rebuilt public README. Harden Windows packaging with verified icons and version metadata, archive inspection, and expanded release tests.
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
import path from "node:path";
|
||||
import { describe, expect, it } from "vitest";
|
||||
import { resolveAppIconPath } from "../src/main/app-icon";
|
||||
|
||||
describe("application icon path", () => {
|
||||
it("uses the unpacked resource copy in packaged builds", () => {
|
||||
expect(resolveAppIconPath(true, "C:\\app\\resources\\app.asar", "C:\\app\\resources")).toBe(
|
||||
path.join("C:\\app\\resources", "assets", "app_icon.ico")
|
||||
);
|
||||
});
|
||||
|
||||
it("uses the source asset in development", () => {
|
||||
expect(resolveAppIconPath(false, "C:\\repo", "C:\\app\\resources")).toBe(
|
||||
path.join("C:\\repo", "assets", "app_icon.ico")
|
||||
);
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user