From 3dc71a8d1fb203d1403c07abcd0fa4e1806f80bb Mon Sep 17 00:00:00 2001
From: whintersnow0
Date: Wed, 15 Oct 2025 19:19:08 +0200
Subject: [PATCH 01/26] refactor: remove unnecessary useMemo hooks
---
.../src/components/text-field/text-field.tsx | 52 +++++--------------
1 file changed, 14 insertions(+), 38 deletions(-)
diff --git a/src/renderer/src/components/text-field/text-field.tsx b/src/renderer/src/components/text-field/text-field.tsx
index 1c4d54af..7c0cbb58 100644
--- a/src/renderer/src/components/text-field/text-field.tsx
+++ b/src/renderer/src/components/text-field/text-field.tsx
@@ -1,16 +1,13 @@
-import React, { useId, useMemo, useState } from "react";
+import React, { useId, useState } from "react";
import { EyeClosedIcon, EyeIcon } from "@primer/octicons-react";
import { useTranslation } from "react-i18next";
-
import cn from "classnames";
-
import "./text-field.scss";
-export interface TextFieldProps
- extends React.DetailedHTMLProps<
- React.InputHTMLAttributes,
- HTMLInputElement
- > {
+export interface TextFieldProps extends React.DetailedHTMLProps<
+ React.InputHTMLAttributes,
+ HTMLInputElement
+> {
theme?: "primary" | "dark";
label?: string | React.ReactNode;
hint?: string | React.ReactNode;
@@ -42,44 +39,27 @@ export const TextField = React.forwardRef(
) => {
const id = useId();
const [isFocused, setIsFocused] = useState(false);
-
const [isPasswordVisible, setIsPasswordVisible] = useState(false);
-
const { t } = useTranslation("forms");
-
const showPasswordToggleButton = props.type === "password";
-
- const inputType = useMemo(() => {
- if (props.type === "password" && isPasswordVisible) return "text";
- return props.type ?? "text";
- }, [props.type, isPasswordVisible]);
-
- const hintContent = useMemo(() => {
- if (error)
- return (
- {error}
- );
-
- if (hint) return {hint};
- return null;
- }, [hint, error]);
-
+ const inputType = props.type === "password" && isPasswordVisible ? "text" : props.type ?? "text";
+ const hintContent = error ? (
+ {error}
+ ) : hint ? (
+ {hint}
+ ) : null;
const handleFocus: React.FocusEventHandler = (event) => {
setIsFocused(true);
- if (props.onFocus) props.onFocus(event);
+ props.onFocus?.(event);
};
-
const handleBlur: React.FocusEventHandler = (event) => {
setIsFocused(false);
- if (props.onBlur) props.onBlur(event);
+ props.onBlur?.(event);
};
-
const hasError = !!error;
-
return (
{label &&
}
-
(
onBlur={handleBlur}
type={inputType}
/>
-
{showPasswordToggleButton && (
)}
-
{rightContent}
-
{hintContent}
);
}
);
-
-TextField.displayName = "TextField";
+TextField.displayName = "TextField";
\ No newline at end of file
From c2273dbf712842ef7f6241d8a68b154816bbb64a Mon Sep 17 00:00:00 2001
From: Chubby Granny Chaser
Date: Sat, 18 Oct 2025 14:07:44 +0100
Subject: [PATCH 02/26] feat: moving sources to worker
---
src/main/events/download-sources/helpers.ts | 85 ++--------
.../download-sources/sync-download-sources.ts | 20 +--
src/main/main.ts | 4 +
.../services/game-matcher-worker-manager.ts | 145 ++++++++++++++++
src/main/services/index.ts | 1 +
src/main/workers/game-matcher-worker.ts | 158 ++++++++++++++++++
6 files changed, 329 insertions(+), 84 deletions(-)
create mode 100644 src/main/services/game-matcher-worker-manager.ts
create mode 100644 src/main/workers/game-matcher-worker.ts
diff --git a/src/main/events/download-sources/helpers.ts b/src/main/events/download-sources/helpers.ts
index 2e7489fd..edd3878e 100644
--- a/src/main/events/download-sources/helpers.ts
+++ b/src/main/events/download-sources/helpers.ts
@@ -192,83 +192,30 @@ export const addNewDownloads = async (
const batch = repacksSublevel.batch();
+ // Get title hash mapping and perform matching in worker thread
const titleHashMapping = await getTitleHashMapping();
- let hashMatchCount = 0;
- let fuzzyMatchCount = 0;
- let noMatchCount = 0;
- for (const download of downloads) {
- let objectIds: string[] = [];
- let usedHashMatch = false;
+ const { GameMatcherWorkerManager } = await import("@main/services");
+ const matchResult = await GameMatcherWorkerManager.matchDownloads(
+ downloads,
+ steamGames,
+ titleHashMapping
+ );
- const titleHash = hashTitle(download.title);
- const steamIdsFromHash = titleHashMapping[titleHash];
-
- if (steamIdsFromHash && steamIdsFromHash.length > 0) {
- hashMatchCount++;
- usedHashMatch = true;
-
- objectIds = steamIdsFromHash.map(String);
- }
-
- if (!usedHashMatch) {
- let gamesInSteam: FormattedSteamGame[] = [];
- const formattedTitle = formatRepackName(download.title);
-
- if (formattedTitle && formattedTitle.length > 0) {
- const [firstLetter] = formattedTitle;
- const games = steamGames[firstLetter] || [];
-
- gamesInSteam = games.filter((game) =>
- formattedTitle.startsWith(game.formattedName)
- );
-
- if (gamesInSteam.length === 0) {
- gamesInSteam = games.filter(
- (game) =>
- formattedTitle.includes(game.formattedName) ||
- game.formattedName.includes(formattedTitle)
- );
- }
-
- if (gamesInSteam.length === 0) {
- for (const letter of Object.keys(steamGames)) {
- const letterGames = steamGames[letter] || [];
- const matches = letterGames.filter(
- (game) =>
- formattedTitle.includes(game.formattedName) ||
- game.formattedName.includes(formattedTitle)
- );
- if (matches.length > 0) {
- gamesInSteam = matches;
- break;
- }
- }
- }
-
- if (gamesInSteam.length > 0) {
- fuzzyMatchCount++;
- objectIds = gamesInSteam.map((game) => String(game.id));
- } else {
- noMatchCount++;
- }
- } else {
- noMatchCount++;
- }
- }
-
- for (const id of objectIds) {
+ // Process matched results and write to database
+ for (const matchedDownload of matchResult.matchedDownloads) {
+ for (const id of matchedDownload.objectIds) {
objectIdsOnSource.add(id);
}
const repack = {
id: nextRepackId++,
- objectIds: objectIds,
- title: download.title,
- uris: download.uris,
- fileSize: download.fileSize,
+ objectIds: matchedDownload.objectIds,
+ title: matchedDownload.title,
+ uris: matchedDownload.uris,
+ fileSize: matchedDownload.fileSize,
repacker: downloadSource.name,
- uploadDate: download.uploadDate,
+ uploadDate: matchedDownload.uploadDate,
downloadSourceId: downloadSource.id,
createdAt: now,
updatedAt: now,
@@ -280,7 +227,7 @@ export const addNewDownloads = async (
await batch.write();
logger.info(
- `Matching stats for ${downloadSource.name}: Hash=${hashMatchCount}, Fuzzy=${fuzzyMatchCount}, None=${noMatchCount}`
+ `Matching stats for ${downloadSource.name}: Hash=${matchResult.stats.hashMatchCount}, Fuzzy=${matchResult.stats.fuzzyMatchCount}, None=${matchResult.stats.noMatchCount}`
);
const existingSource = await downloadSourcesSublevel.get(
diff --git a/src/main/events/download-sources/sync-download-sources.ts b/src/main/events/download-sources/sync-download-sources.ts
index 88861074..3bb78f22 100644
--- a/src/main/events/download-sources/sync-download-sources.ts
+++ b/src/main/events/download-sources/sync-download-sources.ts
@@ -31,20 +31,10 @@ const syncDownloadSources = async (
downloadSources.push(source);
}
- const existingRepacks: Array<{
- id: number;
- title: string;
- uris: string[];
- repacker: string;
- fileSize: string | null;
- objectIds: string[];
- uploadDate: Date | string | null;
- downloadSourceId: number;
- createdAt: Date;
- updatedAt: Date;
- }> = [];
+ // Use a Set for O(1) lookups instead of O(n) with array.some()
+ const existingRepackTitles = new Set();
for await (const [, repack] of repacksSublevel.iterator()) {
- existingRepacks.push(repack);
+ existingRepackTitles.add(repack.title);
}
// Handle sources with missing fingerprints individually, don't delete all sources
@@ -77,9 +67,9 @@ const syncDownloadSources = async (
const source = downloadSourceSchema.parse(response.data);
const steamGames = await getSteamGames();
+ // O(1) lookup instead of O(n) - massive performance improvement
const repacks = source.downloads.filter(
- (download) =>
- !existingRepacks.some((repack) => repack.title === download.title)
+ (download) => !existingRepackTitles.has(download.title)
);
await downloadSourcesSublevel.put(`${downloadSource.id}`, {
diff --git a/src/main/main.ts b/src/main/main.ts
index 5eecb101..e9b6187c 100644
--- a/src/main/main.ts
+++ b/src/main/main.ts
@@ -17,6 +17,7 @@ import {
Lock,
DeckyPlugin,
ResourceCache,
+ GameMatcherWorkerManager,
} from "@main/services";
export const loadState = async () => {
@@ -25,6 +26,9 @@ export const loadState = async () => {
ResourceCache.initialize();
await ResourceCache.updateResourcesOnStartup();
+ // Initialize game matcher worker thread
+ GameMatcherWorkerManager.initialize();
+
const userPreferences = await db.get(
levelKeys.userPreferences,
{
diff --git a/src/main/services/game-matcher-worker-manager.ts b/src/main/services/game-matcher-worker-manager.ts
new file mode 100644
index 00000000..b5d306c7
--- /dev/null
+++ b/src/main/services/game-matcher-worker-manager.ts
@@ -0,0 +1,145 @@
+import { Worker } from "worker_threads";
+import workerPath from "../workers/game-matcher-worker?modulePath";
+
+interface WorkerMessage {
+ id: string;
+ data: unknown;
+}
+
+interface WorkerResponse {
+ id: string;
+ success: boolean;
+ result?: unknown;
+ error?: string;
+}
+
+export type TitleHashMapping = Record;
+
+export type FormattedSteamGame = {
+ id: string;
+ name: string;
+ formattedName: string;
+};
+export type FormattedSteamGamesByLetter = Record;
+
+interface DownloadToMatch {
+ title: string;
+ uris: string[];
+ uploadDate: string;
+ fileSize: string;
+}
+
+interface MatchedDownload {
+ title: string;
+ uris: string[];
+ uploadDate: string;
+ fileSize: string;
+ objectIds: string[];
+ usedHashMatch: boolean;
+}
+
+interface MatchResponse {
+ matchedDownloads: MatchedDownload[];
+ stats: {
+ hashMatchCount: number;
+ fuzzyMatchCount: number;
+ noMatchCount: number;
+ };
+}
+
+export class GameMatcherWorkerManager {
+ private static worker: Worker | null = null;
+ private static messageId = 0;
+ private static pendingMessages = new Map<
+ string,
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
+ { resolve: (value: any) => void; reject: (error: Error) => void }
+ >();
+
+ public static initialize() {
+ if (this.worker) {
+ return;
+ }
+
+ try {
+ console.log(
+ "[GameMatcherWorker] Initializing worker with path:",
+ workerPath
+ );
+
+ this.worker = new Worker(workerPath);
+
+ this.worker.on("message", (response: WorkerResponse) => {
+ const pending = this.pendingMessages.get(response.id);
+ if (pending) {
+ if (response.success) {
+ pending.resolve(response.result);
+ } else {
+ pending.reject(new Error(response.error || "Unknown error"));
+ }
+ this.pendingMessages.delete(response.id);
+ }
+ });
+
+ this.worker.on("error", (error) => {
+ console.error("[GameMatcherWorker] Worker error:", error);
+ for (const [id, pending] of this.pendingMessages.entries()) {
+ pending.reject(error);
+ this.pendingMessages.delete(id);
+ }
+ });
+
+ this.worker.on("exit", (code) => {
+ if (code !== 0) {
+ console.error(
+ `[GameMatcherWorker] Worker stopped with exit code ${code}`
+ );
+ }
+ this.worker = null;
+ for (const [id, pending] of this.pendingMessages.entries()) {
+ pending.reject(new Error("Worker exited unexpectedly"));
+ this.pendingMessages.delete(id);
+ }
+ });
+
+ console.log("[GameMatcherWorker] Worker initialized successfully");
+ } catch (error) {
+ console.error("[GameMatcherWorker] Failed to initialize worker:", error);
+ throw error;
+ }
+ }
+
+ private static sendMessage(data: unknown): Promise {
+ if (!this.worker) {
+ return Promise.reject(new Error("Worker not initialized"));
+ }
+
+ const id = `msg_${++this.messageId}`;
+ const message: WorkerMessage = { id, data };
+
+ return new Promise((resolve, reject) => {
+ this.pendingMessages.set(id, { resolve, reject });
+ this.worker!.postMessage(message);
+ });
+ }
+
+ public static async matchDownloads(
+ downloads: DownloadToMatch[],
+ steamGames: FormattedSteamGamesByLetter,
+ titleHashMapping: TitleHashMapping
+ ): Promise {
+ return this.sendMessage({
+ downloads,
+ steamGames,
+ titleHashMapping,
+ });
+ }
+
+ public static terminate() {
+ if (this.worker) {
+ this.worker.terminate();
+ this.worker = null;
+ this.pendingMessages.clear();
+ }
+ }
+}
diff --git a/src/main/services/index.ts b/src/main/services/index.ts
index c98f09e1..0853859f 100644
--- a/src/main/services/index.ts
+++ b/src/main/services/index.ts
@@ -19,3 +19,4 @@ export * from "./wine";
export * from "./lock";
export * from "./decky-plugin";
export * from "./resource-cache";
+export * from "./game-matcher-worker-manager";
diff --git a/src/main/workers/game-matcher-worker.ts b/src/main/workers/game-matcher-worker.ts
new file mode 100644
index 00000000..4930ada0
--- /dev/null
+++ b/src/main/workers/game-matcher-worker.ts
@@ -0,0 +1,158 @@
+import { parentPort } from "worker_threads";
+import crypto from "node:crypto";
+
+export type TitleHashMapping = Record;
+
+export type FormattedSteamGame = {
+ id: string;
+ name: string;
+ formattedName: string;
+};
+export type FormattedSteamGamesByLetter = Record;
+
+interface DownloadToMatch {
+ title: string;
+ uris: string[];
+ uploadDate: string;
+ fileSize: string;
+}
+
+interface MatchedDownload {
+ title: string;
+ uris: string[];
+ uploadDate: string;
+ fileSize: string;
+ objectIds: string[];
+ usedHashMatch: boolean;
+}
+
+interface MatchRequest {
+ downloads: DownloadToMatch[];
+ steamGames: FormattedSteamGamesByLetter;
+ titleHashMapping: TitleHashMapping;
+}
+
+interface MatchResponse {
+ matchedDownloads: MatchedDownload[];
+ stats: {
+ hashMatchCount: number;
+ fuzzyMatchCount: number;
+ noMatchCount: number;
+ };
+}
+
+const hashTitle = (title: string): string => {
+ return crypto.createHash("sha256").update(title).digest("hex");
+};
+
+const formatName = (name: string) => {
+ return name
+ .normalize("NFD")
+ .replaceAll(/[\u0300-\u036f]/g, "")
+ .toLowerCase()
+ .replaceAll(/[^a-z0-9]/g, "");
+};
+
+const formatRepackName = (name: string) => {
+ return formatName(name.replace("[DL]", ""));
+};
+
+const matchDownloads = (request: MatchRequest): MatchResponse => {
+ const { downloads, steamGames, titleHashMapping } = request;
+ const matchedDownloads: MatchedDownload[] = [];
+
+ let hashMatchCount = 0;
+ let fuzzyMatchCount = 0;
+ let noMatchCount = 0;
+
+ for (const download of downloads) {
+ let objectIds: string[] = [];
+ let usedHashMatch = false;
+
+ const titleHash = hashTitle(download.title);
+ const steamIdsFromHash = titleHashMapping[titleHash];
+
+ if (steamIdsFromHash && steamIdsFromHash.length > 0) {
+ hashMatchCount++;
+ usedHashMatch = true;
+ objectIds = steamIdsFromHash.map(String);
+ }
+
+ if (!usedHashMatch) {
+ let gamesInSteam: FormattedSteamGame[] = [];
+ const formattedTitle = formatRepackName(download.title);
+
+ if (formattedTitle && formattedTitle.length > 0) {
+ const [firstLetter] = formattedTitle;
+ const games = steamGames[firstLetter] || [];
+
+ gamesInSteam = games.filter((game) =>
+ formattedTitle.startsWith(game.formattedName)
+ );
+
+ if (gamesInSteam.length === 0) {
+ gamesInSteam = games.filter(
+ (game) =>
+ formattedTitle.includes(game.formattedName) ||
+ game.formattedName.includes(formattedTitle)
+ );
+ }
+
+ if (gamesInSteam.length === 0) {
+ for (const letter of Object.keys(steamGames)) {
+ const letterGames = steamGames[letter] || [];
+ const matches = letterGames.filter(
+ (game) =>
+ formattedTitle.includes(game.formattedName) ||
+ game.formattedName.includes(formattedTitle)
+ );
+ if (matches.length > 0) {
+ gamesInSteam = matches;
+ break;
+ }
+ }
+ }
+
+ if (gamesInSteam.length > 0) {
+ fuzzyMatchCount++;
+ objectIds = gamesInSteam.map((game) => String(game.id));
+ } else {
+ noMatchCount++;
+ }
+ } else {
+ noMatchCount++;
+ }
+ }
+
+ matchedDownloads.push({
+ ...download,
+ objectIds,
+ usedHashMatch,
+ });
+ }
+
+ return {
+ matchedDownloads,
+ stats: {
+ hashMatchCount,
+ fuzzyMatchCount,
+ noMatchCount,
+ },
+ };
+};
+
+// Message handler
+if (parentPort) {
+ parentPort.on("message", (message: { id: string; data: MatchRequest }) => {
+ try {
+ const result = matchDownloads(message.data);
+ parentPort!.postMessage({ id: message.id, success: true, result });
+ } catch (error) {
+ parentPort!.postMessage({
+ id: message.id,
+ success: false,
+ error: error instanceof Error ? error.message : String(error),
+ });
+ }
+ });
+}
From 48ce9a247640347f6667546ad8f60dcc75feaa08 Mon Sep 17 00:00:00 2001
From: Chubby Granny Chaser
Date: Tue, 21 Oct 2025 04:18:11 +0100
Subject: [PATCH 03/26] feat: using api download sources
---
.../download-sources/add-download-source.ts | 99 ++----
.../check-download-source-exists.ts | 17 -
.../delete-all-download-sources.ts | 13 -
.../delete-download-source.ts | 28 --
.../get-download-sources-list.ts | 19 --
.../download-sources/get-download-sources.ts | 4 +-
src/main/events/download-sources/helpers.ts | 314 ------------------
.../remove-download-source.ts | 17 +-
.../sync-download-sources-from-api.ts | 19 --
.../download-sources/sync-download-sources.ts | 113 +------
.../update-missing-fingerprints.ts | 67 ----
.../validate-download-source.ts | 32 --
src/main/events/index.ts | 7 -
src/main/events/repacks/get-all-repacks.ts | 16 -
src/main/level/sublevels/download-sources.ts | 14 +-
src/main/level/sublevels/index.ts | 1 -
src/main/level/sublevels/keys.ts | 1 -
src/main/level/sublevels/repacks.ts | 22 --
src/main/main.ts | 8 -
.../services/game-matcher-worker-manager.ts | 145 --------
src/main/services/hydra-api.ts | 5 -
src/main/services/index.ts | 2 -
src/main/services/resource-cache.ts | 157 ---------
src/main/workers/game-matcher-worker.ts | 158 ---------
src/preload/index.ts | 12 -
src/renderer/src/app.tsx | 34 --
.../src/components/game-card/game-card.tsx | 40 +--
.../game-details/game-details.context.tsx | 61 ++--
src/renderer/src/declaration.d.ts | 22 +-
.../src/features/download-sources-slice.ts | 21 --
src/renderer/src/features/index.ts | 2 -
src/renderer/src/hooks/index.ts | 1 -
src/renderer/src/hooks/use-catalogue.ts | 12 +-
src/renderer/src/hooks/use-repacks.ts | 26 --
.../src/pages/catalogue/catalogue.tsx | 73 ++--
.../src/pages/catalogue/game-item.tsx | 14 +-
.../src/pages/game-details/game-reviews.tsx | 4 -
.../game-details/modals/repacks-modal.tsx | 27 +-
src/renderer/src/pages/home/home.tsx | 18 +-
.../settings/add-download-source-modal.scss | 7 +
.../settings/add-download-source-modal.tsx | 128 ++-----
.../settings/settings-download-sources.tsx | 102 +++---
src/renderer/src/store.ts | 4 -
src/shared/constants.ts | 6 +-
src/types/index.ts | 28 +-
45 files changed, 295 insertions(+), 1625 deletions(-)
delete mode 100644 src/main/events/download-sources/check-download-source-exists.ts
delete mode 100644 src/main/events/download-sources/delete-all-download-sources.ts
delete mode 100644 src/main/events/download-sources/delete-download-source.ts
delete mode 100644 src/main/events/download-sources/get-download-sources-list.ts
delete mode 100644 src/main/events/download-sources/helpers.ts
delete mode 100644 src/main/events/download-sources/sync-download-sources-from-api.ts
delete mode 100644 src/main/events/download-sources/update-missing-fingerprints.ts
delete mode 100644 src/main/events/download-sources/validate-download-source.ts
delete mode 100644 src/main/events/repacks/get-all-repacks.ts
delete mode 100644 src/main/level/sublevels/repacks.ts
delete mode 100644 src/main/services/game-matcher-worker-manager.ts
delete mode 100644 src/main/services/resource-cache.ts
delete mode 100644 src/main/workers/game-matcher-worker.ts
delete mode 100644 src/renderer/src/features/download-sources-slice.ts
delete mode 100644 src/renderer/src/hooks/use-repacks.ts
diff --git a/src/main/events/download-sources/add-download-source.ts b/src/main/events/download-sources/add-download-source.ts
index e51cae3e..45bcd27c 100644
--- a/src/main/events/download-sources/add-download-source.ts
+++ b/src/main/events/download-sources/add-download-source.ts
@@ -1,76 +1,45 @@
import { registerEvent } from "../register-event";
-import { downloadSourcesSublevel, repacksSublevel } from "@main/level";
-import { HydraApi, logger } from "@main/services";
-import { importDownloadSourceToLocal } from "./helpers";
+import { HydraApi } from "@main/services/hydra-api";
+import { downloadSourcesSublevel } from "@main/level";
+import type { DownloadSource } from "@types";
const addDownloadSource = async (
_event: Electron.IpcMainInvokeEvent,
url: string
) => {
- const result = await importDownloadSourceToLocal(url, true);
- if (!result) {
- throw new Error("Failed to import download source");
- }
-
- // Verify that repacks were actually written to the database (read-after-write)
- // This ensures all async operations are complete before proceeding
- let repackCount = 0;
- for await (const [, repack] of repacksSublevel.iterator()) {
- if (repack.downloadSourceId === result.id) {
- repackCount++;
- }
- }
-
- await HydraApi.post("/profile/download-sources", {
- urls: [url],
- });
-
- const { fingerprint } = await HydraApi.put<{ fingerprint: string }>(
- "/download-sources",
- {
- objectIds: result.objectIds,
- },
- { needsAuth: false }
- );
-
- // Update the source with fingerprint
- const updatedSource = await downloadSourcesSublevel.get(`${result.id}`);
- if (updatedSource) {
- await downloadSourcesSublevel.put(`${result.id}`, {
- ...updatedSource,
- fingerprint,
- updatedAt: new Date(),
- });
- }
-
- // Final verification: ensure the source with fingerprint is persisted
- const finalSource = await downloadSourcesSublevel.get(`${result.id}`);
- if (!finalSource || !finalSource.fingerprint) {
- throw new Error("Failed to persist download source with fingerprint");
- }
-
- // Verify repacks still exist after fingerprint update
- let finalRepackCount = 0;
- for await (const [, repack] of repacksSublevel.iterator()) {
- if (repack.downloadSourceId === result.id) {
- finalRepackCount++;
- }
- }
-
- if (finalRepackCount !== repackCount) {
- logger.warn(
- `Repack count mismatch! Before: ${repackCount}, After: ${finalRepackCount}`
+ try {
+ const downloadSource = await HydraApi.post(
+ "/download-sources",
+ {
+ url,
+ },
+ { needsAuth: false }
);
- } else {
- logger.info(
- `Final verification passed: ${finalRepackCount} repacks confirmed`
- );
- }
- return {
- ...result,
- fingerprint,
- };
+ if (HydraApi.isLoggedIn()) {
+ try {
+ await HydraApi.post("/profile/download-sources", {
+ urls: [url],
+ });
+ } catch (error) {
+ console.error("Failed to add download source to profile:", error);
+ }
+ }
+
+ const downloadSourceForStorage = {
+ ...downloadSource,
+ fingerprint: downloadSource.fingerprint || "",
+ };
+ await downloadSourcesSublevel.put(
+ downloadSource.id,
+ downloadSourceForStorage
+ );
+
+ return downloadSource;
+ } catch (error) {
+ console.error("Failed to add download source:", error);
+ throw error;
+ }
};
registerEvent("addDownloadSource", addDownloadSource);
diff --git a/src/main/events/download-sources/check-download-source-exists.ts b/src/main/events/download-sources/check-download-source-exists.ts
deleted file mode 100644
index 36dd88ce..00000000
--- a/src/main/events/download-sources/check-download-source-exists.ts
+++ /dev/null
@@ -1,17 +0,0 @@
-import { registerEvent } from "../register-event";
-import { downloadSourcesSublevel } from "@main/level";
-
-const checkDownloadSourceExists = async (
- _event: Electron.IpcMainInvokeEvent,
- url: string
-): Promise => {
- for await (const [, source] of downloadSourcesSublevel.iterator()) {
- if (source.url === url) {
- return true;
- }
- }
-
- return false;
-};
-
-registerEvent("checkDownloadSourceExists", checkDownloadSourceExists);
diff --git a/src/main/events/download-sources/delete-all-download-sources.ts b/src/main/events/download-sources/delete-all-download-sources.ts
deleted file mode 100644
index cbf3958f..00000000
--- a/src/main/events/download-sources/delete-all-download-sources.ts
+++ /dev/null
@@ -1,13 +0,0 @@
-import { registerEvent } from "../register-event";
-import { downloadSourcesSublevel, repacksSublevel } from "@main/level";
-import { invalidateIdCaches } from "./helpers";
-
-const deleteAllDownloadSources = async (
- _event: Electron.IpcMainInvokeEvent
-) => {
- await Promise.all([repacksSublevel.clear(), downloadSourcesSublevel.clear()]);
-
- invalidateIdCaches();
-};
-
-registerEvent("deleteAllDownloadSources", deleteAllDownloadSources);
diff --git a/src/main/events/download-sources/delete-download-source.ts b/src/main/events/download-sources/delete-download-source.ts
deleted file mode 100644
index 5322b96c..00000000
--- a/src/main/events/download-sources/delete-download-source.ts
+++ /dev/null
@@ -1,28 +0,0 @@
-import { registerEvent } from "../register-event";
-import { downloadSourcesSublevel, repacksSublevel } from "@main/level";
-import { invalidateIdCaches } from "./helpers";
-
-const deleteDownloadSource = async (
- _event: Electron.IpcMainInvokeEvent,
- id: number
-) => {
- const repacksToDelete: string[] = [];
-
- for await (const [key, repack] of repacksSublevel.iterator()) {
- if (repack.downloadSourceId === id) {
- repacksToDelete.push(key);
- }
- }
-
- const batch = repacksSublevel.batch();
- for (const key of repacksToDelete) {
- batch.del(key);
- }
- await batch.write();
-
- await downloadSourcesSublevel.del(`${id}`);
-
- invalidateIdCaches();
-};
-
-registerEvent("deleteDownloadSource", deleteDownloadSource);
diff --git a/src/main/events/download-sources/get-download-sources-list.ts b/src/main/events/download-sources/get-download-sources-list.ts
deleted file mode 100644
index db26ad01..00000000
--- a/src/main/events/download-sources/get-download-sources-list.ts
+++ /dev/null
@@ -1,19 +0,0 @@
-import { registerEvent } from "../register-event";
-import { downloadSourcesSublevel, DownloadSource } from "@main/level";
-
-const getDownloadSourcesList = async (_event: Electron.IpcMainInvokeEvent) => {
- const sources: DownloadSource[] = [];
-
- for await (const [, source] of downloadSourcesSublevel.iterator()) {
- sources.push(source);
- }
-
- // Sort by createdAt descending
- sources.sort(
- (a, b) => new Date(b.createdAt).getTime() - new Date(a.createdAt).getTime()
- );
-
- return sources;
-};
-
-registerEvent("getDownloadSourcesList", getDownloadSourcesList);
diff --git a/src/main/events/download-sources/get-download-sources.ts b/src/main/events/download-sources/get-download-sources.ts
index bbebd06c..cf7cd4d7 100644
--- a/src/main/events/download-sources/get-download-sources.ts
+++ b/src/main/events/download-sources/get-download-sources.ts
@@ -1,8 +1,8 @@
-import { HydraApi } from "@main/services";
+import { downloadSourcesSublevel } from "@main/level";
import { registerEvent } from "../register-event";
const getDownloadSources = async (_event: Electron.IpcMainInvokeEvent) => {
- return HydraApi.get("/profile/download-sources");
+ return downloadSourcesSublevel.values().all();
};
registerEvent("getDownloadSources", getDownloadSources);
diff --git a/src/main/events/download-sources/helpers.ts b/src/main/events/download-sources/helpers.ts
deleted file mode 100644
index edd3878e..00000000
--- a/src/main/events/download-sources/helpers.ts
+++ /dev/null
@@ -1,314 +0,0 @@
-import axios from "axios";
-import { z } from "zod";
-import { downloadSourcesSublevel, repacksSublevel } from "@main/level";
-import { DownloadSourceStatus } from "@shared";
-import crypto from "node:crypto";
-import { logger, ResourceCache } from "@main/services";
-
-export const downloadSourceSchema = z.object({
- name: z.string().max(255),
- downloads: z.array(
- z.object({
- title: z.string().max(255),
- uris: z.array(z.string()),
- uploadDate: z.string().max(255),
- fileSize: z.string().max(255),
- })
- ),
-});
-
-export type TitleHashMapping = Record;
-
-let titleHashMappingCache: TitleHashMapping | null = null;
-
-export const getTitleHashMapping = async (): Promise => {
- if (titleHashMappingCache) {
- return titleHashMappingCache;
- }
-
- try {
- const cached =
- ResourceCache.getCachedData("sources-manifest");
- if (cached) {
- titleHashMappingCache = cached;
- return cached;
- }
-
- const fetched = await ResourceCache.fetchAndCache(
- "sources-manifest",
- "https://cdn.losbroxas.org/sources-manifest.json",
- 10000
- );
- titleHashMappingCache = fetched;
- return fetched;
- } catch (error) {
- logger.error("Failed to fetch title hash mapping:", error);
- return {} as TitleHashMapping;
- }
-};
-
-export const hashTitle = (title: string): string => {
- return crypto.createHash("sha256").update(title).digest("hex");
-};
-
-export type SteamGamesByLetter = Record;
-export type FormattedSteamGame = {
- id: string;
- name: string;
- formattedName: string;
-};
-export type FormattedSteamGamesByLetter = Record;
-
-export const formatName = (name: string) => {
- return name
- .normalize("NFD")
- .replaceAll(/[\u0300-\u036f]/g, "")
- .toLowerCase()
- .replaceAll(/[^a-z0-9]/g, "");
-};
-
-export const formatRepackName = (name: string) => {
- return formatName(name.replace("[DL]", ""));
-};
-
-interface DownloadSource {
- id: number;
- url: string;
- name: string;
- etag: string | null;
- status: number;
- downloadCount: number;
- objectIds: string[];
- fingerprint?: string;
- createdAt: Date;
- updatedAt: Date;
-}
-
-const getDownloadSourcesMap = async (): Promise<
- Map
-> => {
- const map = new Map();
- for await (const [key, source] of downloadSourcesSublevel.iterator()) {
- map.set(key, source);
- }
-
- return map;
-};
-
-export const checkUrlExists = async (url: string): Promise => {
- const sources = await getDownloadSourcesMap();
- for (const source of sources.values()) {
- if (source.url === url) {
- return true;
- }
- }
- return false;
-};
-
-let steamGamesFormattedCache: FormattedSteamGamesByLetter | null = null;
-
-export const getSteamGames = async (): Promise => {
- if (steamGamesFormattedCache) {
- return steamGamesFormattedCache;
- }
-
- let steamGames: SteamGamesByLetter;
-
- const cached = ResourceCache.getCachedData(
- "steam-games-by-letter"
- );
- if (cached) {
- steamGames = cached;
- } else {
- steamGames = await ResourceCache.fetchAndCache(
- "steam-games-by-letter",
- `${import.meta.env.MAIN_VITE_EXTERNAL_RESOURCES_URL}/steam-games-by-letter.json`
- );
- }
-
- const formattedData: FormattedSteamGamesByLetter = {};
- for (const [letter, games] of Object.entries(steamGames)) {
- formattedData[letter] = games.map((game) => ({
- ...game,
- formattedName: formatName(game.name),
- }));
- }
-
- steamGamesFormattedCache = formattedData;
- return formattedData;
-};
-
-export type SublevelIterator = AsyncIterable<[string, { id: number }]>;
-
-export interface SublevelWithId {
- iterator: () => SublevelIterator;
-}
-
-let maxRepackId: number | null = null;
-let maxDownloadSourceId: number | null = null;
-
-export const getNextId = async (sublevel: SublevelWithId): Promise => {
- const isRepackSublevel = sublevel === repacksSublevel;
- const isDownloadSourceSublevel = sublevel === downloadSourcesSublevel;
-
- if (isRepackSublevel && maxRepackId !== null) {
- return ++maxRepackId;
- }
-
- if (isDownloadSourceSublevel && maxDownloadSourceId !== null) {
- return ++maxDownloadSourceId;
- }
-
- let maxId = 0;
- for await (const [, value] of sublevel.iterator()) {
- if (value.id > maxId) {
- maxId = value.id;
- }
- }
-
- if (isRepackSublevel) {
- maxRepackId = maxId;
- } else if (isDownloadSourceSublevel) {
- maxDownloadSourceId = maxId;
- }
-
- return maxId + 1;
-};
-
-export const invalidateIdCaches = () => {
- maxRepackId = null;
- maxDownloadSourceId = null;
-};
-
-export const addNewDownloads = async (
- downloadSource: { id: number; name: string },
- downloads: z.infer["downloads"],
- steamGames: FormattedSteamGamesByLetter
-) => {
- const now = new Date();
- const objectIdsOnSource = new Set();
-
- let nextRepackId = await getNextId(repacksSublevel);
-
- const batch = repacksSublevel.batch();
-
- // Get title hash mapping and perform matching in worker thread
- const titleHashMapping = await getTitleHashMapping();
-
- const { GameMatcherWorkerManager } = await import("@main/services");
- const matchResult = await GameMatcherWorkerManager.matchDownloads(
- downloads,
- steamGames,
- titleHashMapping
- );
-
- // Process matched results and write to database
- for (const matchedDownload of matchResult.matchedDownloads) {
- for (const id of matchedDownload.objectIds) {
- objectIdsOnSource.add(id);
- }
-
- const repack = {
- id: nextRepackId++,
- objectIds: matchedDownload.objectIds,
- title: matchedDownload.title,
- uris: matchedDownload.uris,
- fileSize: matchedDownload.fileSize,
- repacker: downloadSource.name,
- uploadDate: matchedDownload.uploadDate,
- downloadSourceId: downloadSource.id,
- createdAt: now,
- updatedAt: now,
- };
-
- batch.put(`${repack.id}`, repack);
- }
-
- await batch.write();
-
- logger.info(
- `Matching stats for ${downloadSource.name}: Hash=${matchResult.stats.hashMatchCount}, Fuzzy=${matchResult.stats.fuzzyMatchCount}, None=${matchResult.stats.noMatchCount}`
- );
-
- const existingSource = await downloadSourcesSublevel.get(
- `${downloadSource.id}`
- );
- if (existingSource) {
- await downloadSourcesSublevel.put(`${downloadSource.id}`, {
- ...existingSource,
- objectIds: Array.from(objectIdsOnSource),
- });
- }
-
- return Array.from(objectIdsOnSource);
-};
-
-export const importDownloadSourceToLocal = async (
- url: string,
- throwOnDuplicate = false
-) => {
- const urlExists = await checkUrlExists(url);
- if (urlExists) {
- if (throwOnDuplicate) {
- throw new Error("Download source with this URL already exists");
- }
- return null;
- }
-
- const response = await axios.get>(url);
-
- const steamGames = await getSteamGames();
-
- const now = new Date();
-
- const nextId = await getNextId(downloadSourcesSublevel);
-
- const downloadSource = {
- id: nextId,
- url,
- name: response.data.name,
- etag: response.headers["etag"] || null,
- status: DownloadSourceStatus.UpToDate,
- downloadCount: response.data.downloads.length,
- objectIds: [],
- createdAt: now,
- updatedAt: now,
- };
-
- await downloadSourcesSublevel.put(`${downloadSource.id}`, downloadSource);
-
- const objectIds = await addNewDownloads(
- downloadSource,
- response.data.downloads,
- steamGames
- );
-
- // Invalidate ID caches after creating new repacks to prevent ID collisions
- invalidateIdCaches();
-
- return {
- ...downloadSource,
- objectIds,
- };
-};
-
-export const updateDownloadSourcePreservingTimestamp = async (
- existingSource: DownloadSource,
- url: string
-) => {
- const response = await axios.get>(url);
-
- const updatedSource = {
- ...existingSource,
- name: response.data.name,
- etag: response.headers["etag"] || null,
- status: DownloadSourceStatus.UpToDate,
- downloadCount: response.data.downloads.length,
- updatedAt: new Date(),
- // Preserve the original createdAt timestamp
- };
-
- await downloadSourcesSublevel.put(`${existingSource.id}`, updatedSource);
-
- return updatedSource;
-};
diff --git a/src/main/events/download-sources/remove-download-source.ts b/src/main/events/download-sources/remove-download-source.ts
index bcc66998..8efe0072 100644
--- a/src/main/events/download-sources/remove-download-source.ts
+++ b/src/main/events/download-sources/remove-download-source.ts
@@ -1,18 +1,27 @@
import { HydraApi } from "@main/services";
+import { downloadSourcesSublevel } from "@main/level";
import { registerEvent } from "../register-event";
const removeDownloadSource = async (
_event: Electron.IpcMainInvokeEvent,
- url?: string,
- removeAll = false
+ removeAll = false,
+ downloadSourceId?: string
) => {
const params = new URLSearchParams({
all: removeAll.toString(),
});
- if (url) params.set("url", url);
+ if (downloadSourceId) params.set("downloadSourceId", downloadSourceId);
- return HydraApi.delete(`/profile/download-sources?${params.toString()}`);
+ if (HydraApi.isLoggedIn()) {
+ void HydraApi.delete(`/profile/download-sources?${params.toString()}`);
+ }
+
+ if (removeAll) {
+ await downloadSourcesSublevel.clear();
+ } else if (downloadSourceId) {
+ await downloadSourcesSublevel.del(downloadSourceId);
+ }
};
registerEvent("removeDownloadSource", removeDownloadSource);
diff --git a/src/main/events/download-sources/sync-download-sources-from-api.ts b/src/main/events/download-sources/sync-download-sources-from-api.ts
deleted file mode 100644
index 3cac8819..00000000
--- a/src/main/events/download-sources/sync-download-sources-from-api.ts
+++ /dev/null
@@ -1,19 +0,0 @@
-import { HydraApi, logger } from "@main/services";
-import { importDownloadSourceToLocal, checkUrlExists } from "./helpers";
-
-export const syncDownloadSourcesFromApi = async () => {
- try {
- const apiSources = await HydraApi.get<
- { url: string; createdAt: string; updatedAt: string }[]
- >("/profile/download-sources");
-
- for (const apiSource of apiSources) {
- const exists = await checkUrlExists(apiSource.url);
- if (!exists) {
- await importDownloadSourceToLocal(apiSource.url, false);
- }
- }
- } catch (error) {
- logger.error("Failed to sync download sources from API:", error);
- }
-};
diff --git a/src/main/events/download-sources/sync-download-sources.ts b/src/main/events/download-sources/sync-download-sources.ts
index 3bb78f22..987ad1c1 100644
--- a/src/main/events/download-sources/sync-download-sources.ts
+++ b/src/main/events/download-sources/sync-download-sources.ts
@@ -1,105 +1,24 @@
+import { HydraApi } from "@main/services";
import { registerEvent } from "../register-event";
-import axios, { AxiosError } from "axios";
-import { downloadSourcesSublevel, repacksSublevel } from "@main/level";
-import { DownloadSourceStatus } from "@shared";
-import {
- invalidateIdCaches,
- downloadSourceSchema,
- getSteamGames,
- addNewDownloads,
-} from "./helpers";
+import { downloadSourcesSublevel } from "@main/level";
+import type { DownloadSource } from "@types";
-const syncDownloadSources = async (
- _event: Electron.IpcMainInvokeEvent
-): Promise => {
- let newRepacksCount = 0;
+const syncDownloadSources = async (_event: Electron.IpcMainInvokeEvent) => {
+ const downloadSources = await downloadSourcesSublevel.values().all();
- try {
- const downloadSources: Array<{
- id: number;
- url: string;
- name: string;
- etag: string | null;
- status: number;
- downloadCount: number;
- objectIds: string[];
- fingerprint?: string;
- createdAt: Date;
- updatedAt: Date;
- }> = [];
- for await (const [, source] of downloadSourcesSublevel.iterator()) {
- downloadSources.push(source);
- }
+ const response = await HydraApi.post(
+ "/download-sources/sync",
+ {
+ ids: downloadSources.map((downloadSource) => downloadSource.id),
+ },
+ { needsAuth: false }
+ );
- // Use a Set for O(1) lookups instead of O(n) with array.some()
- const existingRepackTitles = new Set();
- for await (const [, repack] of repacksSublevel.iterator()) {
- existingRepackTitles.add(repack.title);
- }
-
- // Handle sources with missing fingerprints individually, don't delete all sources
- const sourcesWithFingerprints = downloadSources.filter(
- (source) => source.fingerprint
- );
- const sourcesWithoutFingerprints = downloadSources.filter(
- (source) => !source.fingerprint
- );
-
- // For sources without fingerprints, just continue with normal sync
- // They will get fingerprints updated later by updateMissingFingerprints
- const allSourcesToSync = [
- ...sourcesWithFingerprints,
- ...sourcesWithoutFingerprints,
- ];
-
- for (const downloadSource of allSourcesToSync) {
- const headers: Record = {};
-
- if (downloadSource.etag) {
- headers["If-None-Match"] = downloadSource.etag;
- }
-
- try {
- const response = await axios.get(downloadSource.url, {
- headers,
- });
-
- const source = downloadSourceSchema.parse(response.data);
- const steamGames = await getSteamGames();
-
- // O(1) lookup instead of O(n) - massive performance improvement
- const repacks = source.downloads.filter(
- (download) => !existingRepackTitles.has(download.title)
- );
-
- await downloadSourcesSublevel.put(`${downloadSource.id}`, {
- ...downloadSource,
- etag: response.headers["etag"] || null,
- downloadCount: source.downloads.length,
- status: DownloadSourceStatus.UpToDate,
- });
-
- await addNewDownloads(downloadSource, repacks, steamGames);
-
- newRepacksCount += repacks.length;
- } catch (err: unknown) {
- const isNotModified = (err as AxiosError).response?.status === 304;
-
- await downloadSourcesSublevel.put(`${downloadSource.id}`, {
- ...downloadSource,
- status: isNotModified
- ? DownloadSourceStatus.UpToDate
- : DownloadSourceStatus.Errored,
- });
- }
- }
-
- invalidateIdCaches();
-
- return newRepacksCount;
- } catch (err) {
- return -1;
+ for (const downloadSource of response) {
+ await downloadSourcesSublevel.put(downloadSource.id, downloadSource);
}
+
+ return response;
};
registerEvent("syncDownloadSources", syncDownloadSources);
diff --git a/src/main/events/download-sources/update-missing-fingerprints.ts b/src/main/events/download-sources/update-missing-fingerprints.ts
deleted file mode 100644
index 7fd43c63..00000000
--- a/src/main/events/download-sources/update-missing-fingerprints.ts
+++ /dev/null
@@ -1,67 +0,0 @@
-import { registerEvent } from "../register-event";
-import { downloadSourcesSublevel } from "@main/level";
-import { HydraApi, logger } from "@main/services";
-
-const updateMissingFingerprints = async (
- _event: Electron.IpcMainInvokeEvent
-): Promise => {
- const sourcesNeedingFingerprints: Array<{
- id: number;
- objectIds: string[];
- }> = [];
-
- for await (const [, source] of downloadSourcesSublevel.iterator()) {
- if (
- !source.fingerprint &&
- source.objectIds &&
- source.objectIds.length > 0
- ) {
- sourcesNeedingFingerprints.push({
- id: source.id,
- objectIds: source.objectIds,
- });
- }
- }
-
- if (sourcesNeedingFingerprints.length === 0) {
- return 0;
- }
-
- logger.info(
- `Updating fingerprints for ${sourcesNeedingFingerprints.length} sources`
- );
-
- await Promise.all(
- sourcesNeedingFingerprints.map(async (source) => {
- try {
- const { fingerprint } = await HydraApi.put<{ fingerprint: string }>(
- "/download-sources",
- {
- objectIds: source.objectIds,
- },
- { needsAuth: false }
- );
-
- const existingSource = await downloadSourcesSublevel.get(
- `${source.id}`
- );
- if (existingSource) {
- await downloadSourcesSublevel.put(`${source.id}`, {
- ...existingSource,
- fingerprint,
- updatedAt: new Date(),
- });
- }
- } catch (error) {
- logger.error(
- `Failed to update fingerprint for source ${source.id}:`,
- error
- );
- }
- })
- );
-
- return sourcesNeedingFingerprints.length;
-};
-
-registerEvent("updateMissingFingerprints", updateMissingFingerprints);
diff --git a/src/main/events/download-sources/validate-download-source.ts b/src/main/events/download-sources/validate-download-source.ts
deleted file mode 100644
index 2bc86df7..00000000
--- a/src/main/events/download-sources/validate-download-source.ts
+++ /dev/null
@@ -1,32 +0,0 @@
-import { registerEvent } from "../register-event";
-import axios from "axios";
-import { z } from "zod";
-
-const downloadSourceSchema = z.object({
- name: z.string().max(255),
- downloads: z.array(
- z.object({
- title: z.string().max(255),
- uris: z.array(z.string()),
- uploadDate: z.string().max(255),
- fileSize: z.string().max(255),
- })
- ),
-});
-
-const validateDownloadSource = async (
- _event: Electron.IpcMainInvokeEvent,
- url: string
-) => {
- const response = await axios.get>(url);
-
- const { name } = downloadSourceSchema.parse(response.data);
-
- return {
- name,
- etag: response.headers["etag"] || null,
- downloadCount: response.data.downloads.length,
- };
-};
-
-registerEvent("validateDownloadSource", validateDownloadSource);
diff --git a/src/main/events/index.ts b/src/main/events/index.ts
index 8d21aa11..0ab5499a 100644
--- a/src/main/events/index.ts
+++ b/src/main/events/index.ts
@@ -63,14 +63,7 @@ import "./autoupdater/restart-and-install-update";
import "./user-preferences/authenticate-real-debrid";
import "./user-preferences/authenticate-torbox";
import "./download-sources/add-download-source";
-import "./download-sources/update-missing-fingerprints";
-import "./download-sources/delete-download-source";
-import "./download-sources/delete-all-download-sources";
-import "./download-sources/validate-download-source";
import "./download-sources/sync-download-sources";
-import "./download-sources/get-download-sources-list";
-import "./download-sources/check-download-source-exists";
-import "./repacks/get-all-repacks";
import "./auth/sign-out";
import "./auth/open-auth-window";
import "./auth/get-session-hash";
diff --git a/src/main/events/repacks/get-all-repacks.ts b/src/main/events/repacks/get-all-repacks.ts
deleted file mode 100644
index 6eb83a39..00000000
--- a/src/main/events/repacks/get-all-repacks.ts
+++ /dev/null
@@ -1,16 +0,0 @@
-import { registerEvent } from "../register-event";
-import { repacksSublevel, GameRepack } from "@main/level";
-
-const getAllRepacks = async (_event: Electron.IpcMainInvokeEvent) => {
- const repacks: GameRepack[] = [];
-
- for await (const [, repack] of repacksSublevel.iterator()) {
- if (Array.isArray(repack.objectIds)) {
- repacks.push(repack);
- }
- }
-
- return repacks;
-};
-
-registerEvent("getAllRepacks", getAllRepacks);
diff --git a/src/main/level/sublevels/download-sources.ts b/src/main/level/sublevels/download-sources.ts
index 59104e3c..b6cdad0b 100644
--- a/src/main/level/sublevels/download-sources.ts
+++ b/src/main/level/sublevels/download-sources.ts
@@ -1,18 +1,6 @@
import { db } from "../level";
import { levelKeys } from "./keys";
-
-export interface DownloadSource {
- id: number;
- name: string;
- url: string;
- status: number;
- objectIds: string[];
- downloadCount: number;
- fingerprint?: string;
- etag: string | null;
- createdAt: Date;
- updatedAt: Date;
-}
+import type { DownloadSource } from "@types";
export const downloadSourcesSublevel = db.sublevel(
levelKeys.downloadSources,
diff --git a/src/main/level/sublevels/index.ts b/src/main/level/sublevels/index.ts
index 7224fc64..3619ae26 100644
--- a/src/main/level/sublevels/index.ts
+++ b/src/main/level/sublevels/index.ts
@@ -7,4 +7,3 @@ export * from "./game-achievements";
export * from "./keys";
export * from "./themes";
export * from "./download-sources";
-export * from "./repacks";
diff --git a/src/main/level/sublevels/keys.ts b/src/main/level/sublevels/keys.ts
index 6faacd52..a28690b2 100644
--- a/src/main/level/sublevels/keys.ts
+++ b/src/main/level/sublevels/keys.ts
@@ -18,5 +18,4 @@ export const levelKeys = {
screenState: "screenState",
rpcPassword: "rpcPassword",
downloadSources: "downloadSources",
- repacks: "repacks",
};
diff --git a/src/main/level/sublevels/repacks.ts b/src/main/level/sublevels/repacks.ts
deleted file mode 100644
index 6257665b..00000000
--- a/src/main/level/sublevels/repacks.ts
+++ /dev/null
@@ -1,22 +0,0 @@
-import { db } from "../level";
-import { levelKeys } from "./keys";
-
-export interface GameRepack {
- id: number;
- title: string;
- uris: string[];
- repacker: string;
- fileSize: string | null;
- objectIds: string[];
- uploadDate: Date | string | null;
- downloadSourceId: number;
- createdAt: Date;
- updatedAt: Date;
-}
-
-export const repacksSublevel = db.sublevel(
- levelKeys.repacks,
- {
- valueEncoding: "json",
- }
-);
diff --git a/src/main/main.ts b/src/main/main.ts
index e9b6187c..617dd135 100644
--- a/src/main/main.ts
+++ b/src/main/main.ts
@@ -16,19 +16,11 @@ import {
Ludusavi,
Lock,
DeckyPlugin,
- ResourceCache,
- GameMatcherWorkerManager,
} from "@main/services";
export const loadState = async () => {
await Lock.acquireLock();
- ResourceCache.initialize();
- await ResourceCache.updateResourcesOnStartup();
-
- // Initialize game matcher worker thread
- GameMatcherWorkerManager.initialize();
-
const userPreferences = await db.get(
levelKeys.userPreferences,
{
diff --git a/src/main/services/game-matcher-worker-manager.ts b/src/main/services/game-matcher-worker-manager.ts
deleted file mode 100644
index b5d306c7..00000000
--- a/src/main/services/game-matcher-worker-manager.ts
+++ /dev/null
@@ -1,145 +0,0 @@
-import { Worker } from "worker_threads";
-import workerPath from "../workers/game-matcher-worker?modulePath";
-
-interface WorkerMessage {
- id: string;
- data: unknown;
-}
-
-interface WorkerResponse {
- id: string;
- success: boolean;
- result?: unknown;
- error?: string;
-}
-
-export type TitleHashMapping = Record;
-
-export type FormattedSteamGame = {
- id: string;
- name: string;
- formattedName: string;
-};
-export type FormattedSteamGamesByLetter = Record;
-
-interface DownloadToMatch {
- title: string;
- uris: string[];
- uploadDate: string;
- fileSize: string;
-}
-
-interface MatchedDownload {
- title: string;
- uris: string[];
- uploadDate: string;
- fileSize: string;
- objectIds: string[];
- usedHashMatch: boolean;
-}
-
-interface MatchResponse {
- matchedDownloads: MatchedDownload[];
- stats: {
- hashMatchCount: number;
- fuzzyMatchCount: number;
- noMatchCount: number;
- };
-}
-
-export class GameMatcherWorkerManager {
- private static worker: Worker | null = null;
- private static messageId = 0;
- private static pendingMessages = new Map<
- string,
- // eslint-disable-next-line @typescript-eslint/no-explicit-any
- { resolve: (value: any) => void; reject: (error: Error) => void }
- >();
-
- public static initialize() {
- if (this.worker) {
- return;
- }
-
- try {
- console.log(
- "[GameMatcherWorker] Initializing worker with path:",
- workerPath
- );
-
- this.worker = new Worker(workerPath);
-
- this.worker.on("message", (response: WorkerResponse) => {
- const pending = this.pendingMessages.get(response.id);
- if (pending) {
- if (response.success) {
- pending.resolve(response.result);
- } else {
- pending.reject(new Error(response.error || "Unknown error"));
- }
- this.pendingMessages.delete(response.id);
- }
- });
-
- this.worker.on("error", (error) => {
- console.error("[GameMatcherWorker] Worker error:", error);
- for (const [id, pending] of this.pendingMessages.entries()) {
- pending.reject(error);
- this.pendingMessages.delete(id);
- }
- });
-
- this.worker.on("exit", (code) => {
- if (code !== 0) {
- console.error(
- `[GameMatcherWorker] Worker stopped with exit code ${code}`
- );
- }
- this.worker = null;
- for (const [id, pending] of this.pendingMessages.entries()) {
- pending.reject(new Error("Worker exited unexpectedly"));
- this.pendingMessages.delete(id);
- }
- });
-
- console.log("[GameMatcherWorker] Worker initialized successfully");
- } catch (error) {
- console.error("[GameMatcherWorker] Failed to initialize worker:", error);
- throw error;
- }
- }
-
- private static sendMessage(data: unknown): Promise {
- if (!this.worker) {
- return Promise.reject(new Error("Worker not initialized"));
- }
-
- const id = `msg_${++this.messageId}`;
- const message: WorkerMessage = { id, data };
-
- return new Promise((resolve, reject) => {
- this.pendingMessages.set(id, { resolve, reject });
- this.worker!.postMessage(message);
- });
- }
-
- public static async matchDownloads(
- downloads: DownloadToMatch[],
- steamGames: FormattedSteamGamesByLetter,
- titleHashMapping: TitleHashMapping
- ): Promise {
- return this.sendMessage({
- downloads,
- steamGames,
- titleHashMapping,
- });
- }
-
- public static terminate() {
- if (this.worker) {
- this.worker.terminate();
- this.worker = null;
- this.pendingMessages.clear();
- }
- }
-}
diff --git a/src/main/services/hydra-api.ts b/src/main/services/hydra-api.ts
index dd26e6f0..ffc5756c 100644
--- a/src/main/services/hydra-api.ts
+++ b/src/main/services/hydra-api.ts
@@ -105,11 +105,6 @@ export class HydraApi {
// WSClient.close();
// WSClient.connect();
-
- const { syncDownloadSourcesFromApi } = await import(
- "../events/download-sources/sync-download-sources-from-api"
- );
- syncDownloadSourcesFromApi();
}
}
diff --git a/src/main/services/index.ts b/src/main/services/index.ts
index 0853859f..88b39d1b 100644
--- a/src/main/services/index.ts
+++ b/src/main/services/index.ts
@@ -18,5 +18,3 @@ export * from "./library-sync";
export * from "./wine";
export * from "./lock";
export * from "./decky-plugin";
-export * from "./resource-cache";
-export * from "./game-matcher-worker-manager";
diff --git a/src/main/services/resource-cache.ts b/src/main/services/resource-cache.ts
deleted file mode 100644
index c59f873d..00000000
--- a/src/main/services/resource-cache.ts
+++ /dev/null
@@ -1,157 +0,0 @@
-import { app } from "electron";
-import axios from "axios";
-import fs from "node:fs";
-import path from "node:path";
-import { logger } from "./logger";
-
-interface CachedResource {
- data: T;
- etag: string | null;
-}
-
-export class ResourceCache {
- private static cacheDir: string;
-
- static initialize() {
- this.cacheDir = path.join(app.getPath("userData"), "resource-cache");
-
- if (!fs.existsSync(this.cacheDir)) {
- fs.mkdirSync(this.cacheDir, { recursive: true });
- }
- }
-
- private static getCacheFilePath(resourceName: string): string {
- return path.join(this.cacheDir, `${resourceName}.json`);
- }
-
- private static getEtagFilePath(resourceName: string): string {
- return path.join(this.cacheDir, `${resourceName}.etag`);
- }
-
- private static readCachedResource(
- resourceName: string
- ): CachedResource | null {
- const dataPath = this.getCacheFilePath(resourceName);
- const etagPath = this.getEtagFilePath(resourceName);
-
- if (!fs.existsSync(dataPath)) {
- return null;
- }
-
- try {
- const data = JSON.parse(fs.readFileSync(dataPath, "utf-8")) as T;
- const etag = fs.existsSync(etagPath)
- ? fs.readFileSync(etagPath, "utf-8")
- : null;
-
- return { data, etag };
- } catch (error) {
- logger.error(`Failed to read cached resource ${resourceName}:`, error);
- return null;
- }
- }
-
- private static writeCachedResource(
- resourceName: string,
- data: T,
- etag: string | null
- ): void {
- const dataPath = this.getCacheFilePath(resourceName);
- const etagPath = this.getEtagFilePath(resourceName);
-
- try {
- fs.writeFileSync(dataPath, JSON.stringify(data), "utf-8");
-
- if (etag) {
- fs.writeFileSync(etagPath, etag, "utf-8");
- }
-
- logger.info(
- `Cached resource ${resourceName} with etag: ${etag || "none"}`
- );
- } catch (error) {
- logger.error(`Failed to write cached resource ${resourceName}:`, error);
- }
- }
-
- static async fetchAndCache(
- resourceName: string,
- url: string,
- timeout: number = 10000
- ): Promise {
- const cached = this.readCachedResource(resourceName);
- const headers: Record = {};
-
- if (cached?.etag) {
- headers["If-None-Match"] = cached.etag;
- }
-
- try {
- const response = await axios.get(url, {
- headers,
- timeout,
- });
-
- const newEtag = response.headers["etag"] || null;
- this.writeCachedResource(resourceName, response.data, newEtag);
-
- return response.data;
- } catch (error: unknown) {
- const axiosError = error as {
- response?: { status?: number };
- message?: string;
- };
-
- if (axiosError.response?.status === 304 && cached) {
- logger.info(`Resource ${resourceName} not modified, using cache`);
- return cached.data;
- }
-
- if (cached) {
- logger.warn(
- `Failed to fetch ${resourceName}, using cached version:`,
- axiosError.message || "Unknown error"
- );
- return cached.data;
- }
-
- logger.error(
- `Failed to fetch ${resourceName} and no cache available:`,
- error
- );
- throw error;
- }
- }
-
- static getCachedData(resourceName: string): T | null {
- const cached = this.readCachedResource(resourceName);
- return cached?.data || null;
- }
-
- static async updateResourcesOnStartup(): Promise {
- logger.info("Starting background resource cache update...");
-
- const resources = [
- {
- name: "steam-games-by-letter",
- url: `${import.meta.env.MAIN_VITE_EXTERNAL_RESOURCES_URL}/steam-games-by-letter.json`,
- },
- {
- name: "sources-manifest",
- url: "https://cdn.losbroxas.org/sources-manifest.json",
- },
- ];
-
- await Promise.allSettled(
- resources.map(async (resource) => {
- try {
- await this.fetchAndCache(resource.name, resource.url);
- } catch (error) {
- logger.error(`Failed to update ${resource.name} on startup:`, error);
- }
- })
- );
-
- logger.info("Resource cache update complete");
- }
-}
diff --git a/src/main/workers/game-matcher-worker.ts b/src/main/workers/game-matcher-worker.ts
deleted file mode 100644
index 4930ada0..00000000
--- a/src/main/workers/game-matcher-worker.ts
+++ /dev/null
@@ -1,158 +0,0 @@
-import { parentPort } from "worker_threads";
-import crypto from "node:crypto";
-
-export type TitleHashMapping = Record;
-
-export type FormattedSteamGame = {
- id: string;
- name: string;
- formattedName: string;
-};
-export type FormattedSteamGamesByLetter = Record;
-
-interface DownloadToMatch {
- title: string;
- uris: string[];
- uploadDate: string;
- fileSize: string;
-}
-
-interface MatchedDownload {
- title: string;
- uris: string[];
- uploadDate: string;
- fileSize: string;
- objectIds: string[];
- usedHashMatch: boolean;
-}
-
-interface MatchRequest {
- downloads: DownloadToMatch[];
- steamGames: FormattedSteamGamesByLetter;
- titleHashMapping: TitleHashMapping;
-}
-
-interface MatchResponse {
- matchedDownloads: MatchedDownload[];
- stats: {
- hashMatchCount: number;
- fuzzyMatchCount: number;
- noMatchCount: number;
- };
-}
-
-const hashTitle = (title: string): string => {
- return crypto.createHash("sha256").update(title).digest("hex");
-};
-
-const formatName = (name: string) => {
- return name
- .normalize("NFD")
- .replaceAll(/[\u0300-\u036f]/g, "")
- .toLowerCase()
- .replaceAll(/[^a-z0-9]/g, "");
-};
-
-const formatRepackName = (name: string) => {
- return formatName(name.replace("[DL]", ""));
-};
-
-const matchDownloads = (request: MatchRequest): MatchResponse => {
- const { downloads, steamGames, titleHashMapping } = request;
- const matchedDownloads: MatchedDownload[] = [];
-
- let hashMatchCount = 0;
- let fuzzyMatchCount = 0;
- let noMatchCount = 0;
-
- for (const download of downloads) {
- let objectIds: string[] = [];
- let usedHashMatch = false;
-
- const titleHash = hashTitle(download.title);
- const steamIdsFromHash = titleHashMapping[titleHash];
-
- if (steamIdsFromHash && steamIdsFromHash.length > 0) {
- hashMatchCount++;
- usedHashMatch = true;
- objectIds = steamIdsFromHash.map(String);
- }
-
- if (!usedHashMatch) {
- let gamesInSteam: FormattedSteamGame[] = [];
- const formattedTitle = formatRepackName(download.title);
-
- if (formattedTitle && formattedTitle.length > 0) {
- const [firstLetter] = formattedTitle;
- const games = steamGames[firstLetter] || [];
-
- gamesInSteam = games.filter((game) =>
- formattedTitle.startsWith(game.formattedName)
- );
-
- if (gamesInSteam.length === 0) {
- gamesInSteam = games.filter(
- (game) =>
- formattedTitle.includes(game.formattedName) ||
- game.formattedName.includes(formattedTitle)
- );
- }
-
- if (gamesInSteam.length === 0) {
- for (const letter of Object.keys(steamGames)) {
- const letterGames = steamGames[letter] || [];
- const matches = letterGames.filter(
- (game) =>
- formattedTitle.includes(game.formattedName) ||
- game.formattedName.includes(formattedTitle)
- );
- if (matches.length > 0) {
- gamesInSteam = matches;
- break;
- }
- }
- }
-
- if (gamesInSteam.length > 0) {
- fuzzyMatchCount++;
- objectIds = gamesInSteam.map((game) => String(game.id));
- } else {
- noMatchCount++;
- }
- } else {
- noMatchCount++;
- }
- }
-
- matchedDownloads.push({
- ...download,
- objectIds,
- usedHashMatch,
- });
- }
-
- return {
- matchedDownloads,
- stats: {
- hashMatchCount,
- fuzzyMatchCount,
- noMatchCount,
- },
- };
-};
-
-// Message handler
-if (parentPort) {
- parentPort.on("message", (message: { id: string; data: MatchRequest }) => {
- try {
- const result = matchDownloads(message.data);
- parentPort!.postMessage({ id: message.id, success: true, result });
- } catch (error) {
- parentPort!.postMessage({
- id: message.id,
- success: false,
- error: error instanceof Error ? error.message : String(error),
- });
- }
- });
-}
diff --git a/src/preload/index.ts b/src/preload/index.ts
index da914b92..f89ec4db 100644
--- a/src/preload/index.ts
+++ b/src/preload/index.ts
@@ -99,22 +99,10 @@ contextBridge.exposeInMainWorld("electron", {
/* Download sources */
addDownloadSource: (url: string) =>
ipcRenderer.invoke("addDownloadSource", url),
- updateMissingFingerprints: () =>
- ipcRenderer.invoke("updateMissingFingerprints"),
removeDownloadSource: (url: string, removeAll?: boolean) =>
ipcRenderer.invoke("removeDownloadSource", url, removeAll),
getDownloadSources: () => ipcRenderer.invoke("getDownloadSources"),
- deleteDownloadSource: (id: number) =>
- ipcRenderer.invoke("deleteDownloadSource", id),
- deleteAllDownloadSources: () =>
- ipcRenderer.invoke("deleteAllDownloadSources"),
- validateDownloadSource: (url: string) =>
- ipcRenderer.invoke("validateDownloadSource", url),
syncDownloadSources: () => ipcRenderer.invoke("syncDownloadSources"),
- getDownloadSourcesList: () => ipcRenderer.invoke("getDownloadSourcesList"),
- checkDownloadSourceExists: (url: string) =>
- ipcRenderer.invoke("checkDownloadSourceExists", url),
- getAllRepacks: () => ipcRenderer.invoke("getAllRepacks"),
/* Library */
toggleAutomaticCloudSync: (
diff --git a/src/renderer/src/app.tsx b/src/renderer/src/app.tsx
index 74a2a97e..168a4435 100644
--- a/src/renderer/src/app.tsx
+++ b/src/renderer/src/app.tsx
@@ -7,7 +7,6 @@ import {
useAppSelector,
useDownload,
useLibrary,
- useRepacks,
useToast,
useUserDetails,
} from "@renderer/hooks";
@@ -20,7 +19,6 @@ import {
setUserDetails,
setProfileBackground,
setGameRunning,
- setIsImportingSources,
} from "@renderer/features";
import { useTranslation } from "react-i18next";
import { UserFriendModal } from "./pages/shared-modals/user-friend-modal";
@@ -40,8 +38,6 @@ export function App() {
const { t } = useTranslation("app");
- const { updateRepacks } = useRepacks();
-
const { clearDownload, setLastPacket } = useDownload();
const {
@@ -199,36 +195,6 @@ export function App() {
});
}, [dispatch, draggingDisabled]);
- useEffect(() => {
- (async () => {
- dispatch(setIsImportingSources(true));
-
- try {
- // Initial repacks load
- await updateRepacks();
-
- // Sync all local sources (check for updates)
- const newRepacksCount = await window.electron.syncDownloadSources();
-
- if (newRepacksCount > 0) {
- window.electron.publishNewRepacksNotification(newRepacksCount);
- }
-
- // Update fingerprints for sources that don't have them
- await window.electron.updateMissingFingerprints();
-
- // Update repacks AFTER all syncing and fingerprint updates are complete
- await updateRepacks();
- } catch (error) {
- console.error("Error syncing download sources:", error);
- // Still update repacks even if sync fails
- await updateRepacks();
- } finally {
- dispatch(setIsImportingSources(false));
- }
- })();
- }, [updateRepacks, dispatch]);
-
const loadAndApplyTheme = useCallback(async () => {
const activeTheme = await window.electron.getActiveCustomTheme();
if (activeTheme?.code) {
diff --git a/src/renderer/src/components/game-card/game-card.tsx b/src/renderer/src/components/game-card/game-card.tsx
index 5752ba19..598874b5 100644
--- a/src/renderer/src/components/game-card/game-card.tsx
+++ b/src/renderer/src/components/game-card/game-card.tsx
@@ -1,5 +1,5 @@
import { DownloadIcon, PeopleIcon } from "@primer/octicons-react";
-import type { GameStats } from "@types";
+import type { GameStats, ShopAssets } from "@types";
import SteamLogo from "@renderer/assets/steam-logo.svg?react";
@@ -8,15 +8,15 @@ import "./game-card.scss";
import { useTranslation } from "react-i18next";
import { Badge } from "../badge/badge";
import { StarRating } from "../star-rating/star-rating";
-import { useCallback, useState, useMemo } from "react";
-import { useFormat, useRepacks } from "@renderer/hooks";
+import { useCallback, useState } from "react";
+import { useFormat } from "@renderer/hooks";
export interface GameCardProps
extends React.DetailedHTMLProps<
React.ButtonHTMLAttributes,
HTMLButtonElement
> {
- game: any;
+ game: ShopAssets;
}
const shopIcon = {
@@ -28,13 +28,6 @@ export function GameCard({ game, ...props }: GameCardProps) {
const [stats, setStats] = useState(null);
- const { getRepacksForObjectId } = useRepacks();
- const repacks = getRepacksForObjectId(game.objectId);
-
- const uniqueRepackers = Array.from(
- new Set(repacks.map((repack) => repack.repacker))
- );
-
const handleHover = useCallback(() => {
if (!stats) {
window.electron.getGameStats(game.objectId, game.shop).then((stats) => {
@@ -45,14 +38,7 @@ export function GameCard({ game, ...props }: GameCardProps) {
const { numberFormatter } = useFormat();
- const firstThreeRepackers = useMemo(
- () => uniqueRepackers.slice(0, 3),
- [uniqueRepackers]
- );
- const remainingCount = useMemo(
- () => uniqueRepackers.length - 3,
- [uniqueRepackers]
- );
+ console.log("game", game);
return (
- {uniqueRepackers.length > 0 ? (
+ {game.downloadSources.length > 0 ? (
- {firstThreeRepackers.map((repacker) => (
- -
- {repacker}
+ {game.downloadSources.slice(0, 3).map((sourceName) => (
+
-
+ {sourceName}
))}
- {remainingCount > 0 && (
+ {game.downloadSources.length > 3 && (
-
- +{remainingCount}{" "}
- {t("game_card:available", { count: remainingCount })}
+ +{game.downloadSources.length - 3}{" "}
+ {t("game_card:available", {
+ count: game.downloadSources.length - 3,
+ })}
)}
diff --git a/src/renderer/src/context/game-details/game-details.context.tsx b/src/renderer/src/context/game-details/game-details.context.tsx
index 14e5d587..2b8e8bf7 100644
--- a/src/renderer/src/context/game-details/game-details.context.tsx
+++ b/src/renderer/src/context/game-details/game-details.context.tsx
@@ -1,11 +1,4 @@
-import {
- createContext,
- useCallback,
- useEffect,
- useMemo,
- useRef,
- useState,
-} from "react";
+import { createContext, useCallback, useEffect, useRef, useState } from "react";
import { setHeaderTitle } from "@renderer/features";
import { getSteamLanguage } from "@renderer/helpers";
@@ -13,11 +6,11 @@ import {
useAppDispatch,
useAppSelector,
useDownload,
- useRepacks,
useUserDetails,
} from "@renderer/hooks";
import type {
+ GameRepack,
GameShop,
GameStats,
LibraryGame,
@@ -84,12 +77,7 @@ export function GameDetailsContextProvider({
const [isGameRunning, setIsGameRunning] = useState(false);
const [showRepacksModal, setShowRepacksModal] = useState(false);
const [showGameOptionsModal, setShowGameOptionsModal] = useState(false);
-
- const { getRepacksForObjectId } = useRepacks();
-
- const repacks = useMemo(() => {
- return getRepacksForObjectId(objectId);
- }, [getRepacksForObjectId, objectId]);
+ const [repacks, setRepacks] = useState([]);
const { i18n } = useTranslation("game_details");
const location = useLocation();
@@ -287,19 +275,6 @@ export function GameDetailsContextProvider({
}
}, [location]);
- const lastDownloadedOption = useMemo(() => {
- if (game?.download) {
- const repack = repacks.find((repack) =>
- repack.uris.some((uri) => uri.includes(game.download!.uri))
- );
-
- if (!repack) return null;
- return repack;
- }
-
- return null;
- }, [game?.download, repacks]);
-
useEffect(() => {
const unsubscribe = window.electron.onUpdateAchievements(
objectId,
@@ -315,6 +290,34 @@ export function GameDetailsContextProvider({
};
}, [objectId, shop, userDetails]);
+ useEffect(() => {
+ const fetchDownloadSources = async () => {
+ try {
+ const sources = await window.electron.getDownloadSources();
+
+ const params = {
+ take: 100,
+ skip: 0,
+ downloadSourceIds: sources.map((source) => source.id),
+ };
+
+ const downloads = await window.electron.hydraApi.get(
+ `/games/${shop}/${objectId}/download-sources`,
+ {
+ params,
+ needsAuth: false,
+ }
+ );
+
+ setRepacks(downloads);
+ } catch (error) {
+ console.error("Failed to fetch download sources:", error);
+ }
+ };
+
+ fetchDownloadSources();
+ }, [shop, objectId]);
+
const getDownloadsPath = async () => {
if (userPreferences?.downloadsPath) return userPreferences.downloadsPath;
return window.electron.getDefaultDownloadsPath();
@@ -359,7 +362,7 @@ export function GameDetailsContextProvider({
stats,
achievements,
hasNSFWContentBlocked,
- lastDownloadedOption,
+ lastDownloadedOption: null,
setHasNSFWContentBlocked,
selectGameExecutable,
updateGame,
diff --git a/src/renderer/src/declaration.d.ts b/src/renderer/src/declaration.d.ts
index 9f882aed..4e004e2b 100644
--- a/src/renderer/src/declaration.d.ts
+++ b/src/renderer/src/declaration.d.ts
@@ -31,8 +31,6 @@ import type {
Game,
DiskUsage,
DownloadSource,
- DownloadSourceValidationResult,
- GameRepack,
} from "@types";
import type { AxiosProgressEvent } from "axios";
@@ -210,20 +208,12 @@ declare global {
/* Download sources */
addDownloadSource: (url: string) => Promise;
- updateMissingFingerprints: () => Promise;
- removeDownloadSource: (url: string, removeAll?: boolean) => Promise;
- getDownloadSources: () => Promise<
- Pick[]
- >;
- deleteDownloadSource: (id: number) => Promise;
- deleteAllDownloadSources: () => Promise;
- validateDownloadSource: (
- url: string
- ) => Promise;
- syncDownloadSources: () => Promise;
- getDownloadSourcesList: () => Promise;
- checkDownloadSourceExists: (url: string) => Promise;
- getAllRepacks: () => Promise;
+ removeDownloadSource: (
+ removeAll = false,
+ downloadSourceId?: string
+ ) => Promise;
+ getDownloadSources: () => Promise;
+ syncDownloadSources: () => Promise;
/* Hardware */
getDiskFreeSpace: (path: string) => Promise;
diff --git a/src/renderer/src/features/download-sources-slice.ts b/src/renderer/src/features/download-sources-slice.ts
deleted file mode 100644
index 52e58d26..00000000
--- a/src/renderer/src/features/download-sources-slice.ts
+++ /dev/null
@@ -1,21 +0,0 @@
-import { createSlice } from "@reduxjs/toolkit";
-
-export interface DownloadSourcesState {
- isImporting: boolean;
-}
-
-const initialState: DownloadSourcesState = {
- isImporting: false,
-};
-
-export const downloadSourcesSlice = createSlice({
- name: "downloadSources",
- initialState,
- reducers: {
- setIsImportingSources: (state, action) => {
- state.isImporting = action.payload;
- },
- },
-});
-
-export const { setIsImportingSources } = downloadSourcesSlice.actions;
diff --git a/src/renderer/src/features/index.ts b/src/renderer/src/features/index.ts
index 3b602cff..a7e64e1f 100644
--- a/src/renderer/src/features/index.ts
+++ b/src/renderer/src/features/index.ts
@@ -6,6 +6,4 @@ export * from "./toast-slice";
export * from "./user-details-slice";
export * from "./game-running.slice";
export * from "./subscription-slice";
-export * from "./repacks-slice";
-export * from "./download-sources-slice";
export * from "./catalogue-search";
diff --git a/src/renderer/src/hooks/index.ts b/src/renderer/src/hooks/index.ts
index 8140e0cd..73733e2b 100644
--- a/src/renderer/src/hooks/index.ts
+++ b/src/renderer/src/hooks/index.ts
@@ -5,5 +5,4 @@ export * from "./use-toast";
export * from "./redux";
export * from "./use-user-details";
export * from "./use-format";
-export * from "./use-repacks";
export * from "./use-feature";
diff --git a/src/renderer/src/hooks/use-catalogue.ts b/src/renderer/src/hooks/use-catalogue.ts
index 1d0aeb57..675f5013 100644
--- a/src/renderer/src/hooks/use-catalogue.ts
+++ b/src/renderer/src/hooks/use-catalogue.ts
@@ -2,6 +2,7 @@ import axios from "axios";
import { useCallback, useEffect, useState } from "react";
import { useAppDispatch } from "./redux";
import { setGenres, setTags } from "@renderer/features";
+import type { DownloadSource } from "@types";
export const externalResourcesInstance = axios.create({
baseURL: import.meta.env.RENDERER_VITE_EXTERNAL_RESOURCES_URL,
@@ -12,6 +13,7 @@ export function useCatalogue() {
const [steamPublishers, setSteamPublishers] = useState([]);
const [steamDevelopers, setSteamDevelopers] = useState([]);
+ const [downloadSources, setDownloadSources] = useState([]);
const getSteamUserTags = useCallback(() => {
externalResourcesInstance.get("/steam-user-tags.json").then((response) => {
@@ -37,17 +39,25 @@ export function useCatalogue() {
});
}, []);
+ const getDownloadSources = useCallback(() => {
+ window.electron.getDownloadSources().then((results) => {
+ setDownloadSources(results.filter((source) => !!source.fingerprint));
+ });
+ }, []);
+
useEffect(() => {
getSteamUserTags();
getSteamGenres();
getSteamPublishers();
getSteamDevelopers();
+ getDownloadSources();
}, [
getSteamUserTags,
getSteamGenres,
getSteamPublishers,
getSteamDevelopers,
+ getDownloadSources,
]);
- return { steamPublishers, steamDevelopers };
+ return { steamPublishers, downloadSources, steamDevelopers };
}
diff --git a/src/renderer/src/hooks/use-repacks.ts b/src/renderer/src/hooks/use-repacks.ts
deleted file mode 100644
index c024aaa4..00000000
--- a/src/renderer/src/hooks/use-repacks.ts
+++ /dev/null
@@ -1,26 +0,0 @@
-import { setRepacks } from "@renderer/features";
-import { useCallback } from "react";
-import { RootState } from "@renderer/store";
-import { useSelector } from "react-redux";
-import { useAppDispatch } from "./redux";
-
-export function useRepacks() {
- const dispatch = useAppDispatch();
- const repacks = useSelector((state: RootState) => state.repacks.value);
-
- const getRepacksForObjectId = useCallback(
- (objectId: string) => {
- return repacks.filter((repack) => repack.objectIds.includes(objectId));
- },
- [repacks]
- );
-
- const updateRepacks = useCallback(async () => {
- const repacks = await window.electron.getAllRepacks();
- dispatch(
- setRepacks(repacks.filter((repack) => Array.isArray(repack.objectIds)))
- );
- }, [dispatch]);
-
- return { getRepacksForObjectId, updateRepacks };
-}
diff --git a/src/renderer/src/pages/catalogue/catalogue.tsx b/src/renderer/src/pages/catalogue/catalogue.tsx
index 07bcf3ff..bbeda906 100644
--- a/src/renderer/src/pages/catalogue/catalogue.tsx
+++ b/src/renderer/src/pages/catalogue/catalogue.tsx
@@ -1,4 +1,8 @@
-import type { CatalogueSearchResult, DownloadSource } from "@types";
+import type {
+ CatalogueSearchResult,
+ CatalogueSearchPayload,
+ DownloadSource,
+} from "@types";
import { useAppDispatch, useAppSelector, useFormat } from "@renderer/hooks";
import { useEffect, useMemo, useRef, useState } from "react";
@@ -29,13 +33,12 @@ export default function Catalogue() {
const abortControllerRef = useRef(null);
const cataloguePageRef = useRef(null);
- const { steamDevelopers, steamPublishers } = useCatalogue();
+ const { steamDevelopers, steamPublishers, downloadSources } = useCatalogue();
const { steamGenres, steamUserTags } = useAppSelector(
(state) => state.catalogueSearch
);
- const [downloadSources, setDownloadSources] = useState([]);
const [isLoading, setIsLoading] = useState(true);
const [results, setResults] = useState([]);
@@ -51,24 +54,41 @@ export default function Catalogue() {
const { t, i18n } = useTranslation("catalogue");
const debouncedSearch = useRef(
- debounce(async (filters, pageSize, offset) => {
- const abortController = new AbortController();
- abortControllerRef.current = abortController;
+ debounce(
+ async (
+ filters: CatalogueSearchPayload,
+ downloadSources: DownloadSource[],
+ pageSize: number,
+ offset: number
+ ) => {
+ const abortController = new AbortController();
+ abortControllerRef.current = abortController;
- const response = await window.electron.hydraApi.post<{
- edges: CatalogueSearchResult[];
- count: number;
- }>("/catalogue/search", {
- data: { ...filters, take: pageSize, skip: offset },
- needsAuth: false,
- });
+ const requestData = {
+ ...filters,
+ take: pageSize,
+ skip: offset,
+ downloadSourceIds: downloadSources.map(
+ (downloadSource) => downloadSource.id
+ ),
+ };
- if (abortController.signal.aborted) return;
+ const response = await window.electron.hydraApi.post<{
+ edges: CatalogueSearchResult[];
+ count: number;
+ }>("/catalogue/search", {
+ data: requestData,
+ needsAuth: false,
+ });
- setResults(response.edges);
- setItemsCount(response.count);
- setIsLoading(false);
- }, 500)
+ if (abortController.signal.aborted) return;
+
+ setResults(response.edges);
+ setItemsCount(response.count);
+ setIsLoading(false);
+ },
+ 500
+ )
).current;
const decodeHTML = (s: string) =>
@@ -79,18 +99,17 @@ export default function Catalogue() {
setIsLoading(true);
abortControllerRef.current?.abort();
- debouncedSearch(filters, PAGE_SIZE, (page - 1) * PAGE_SIZE);
+ debouncedSearch(
+ filters,
+ downloadSources,
+ PAGE_SIZE,
+ (page - 1) * PAGE_SIZE
+ );
return () => {
debouncedSearch.cancel();
};
- }, [filters, page, debouncedSearch]);
-
- useEffect(() => {
- window.electron.getDownloadSourcesList().then((sources) => {
- setDownloadSources(sources.filter((source) => !!source.fingerprint));
- });
- }, []);
+ }, [filters, downloadSources, page, debouncedSearch]);
const language = i18n.language.split("-")[0];
@@ -168,7 +187,7 @@ export default function Catalogue() {
value: publisher,
})),
];
- }, [filters, steamUserTags, steamGenresMapping, language, downloadSources]);
+ }, [filters, steamUserTags, downloadSources, steamGenresMapping, language]);
const filterSections = useMemo(() => {
return [
diff --git a/src/renderer/src/pages/catalogue/game-item.tsx b/src/renderer/src/pages/catalogue/game-item.tsx
index ecfe0f73..4583afd3 100644
--- a/src/renderer/src/pages/catalogue/game-item.tsx
+++ b/src/renderer/src/pages/catalogue/game-item.tsx
@@ -1,6 +1,6 @@
import { Badge } from "@renderer/components";
import { buildGameDetailsPath } from "@renderer/helpers";
-import { useAppSelector, useRepacks, useLibrary } from "@renderer/hooks";
+import { useAppSelector, useLibrary } from "@renderer/hooks";
import { useMemo, useState, useEffect } from "react";
import { useNavigate } from "react-router-dom";
@@ -23,10 +23,6 @@ export function GameItem({ game }: GameItemProps) {
const { steamGenres } = useAppSelector((state) => state.catalogueSearch);
- const { getRepacksForObjectId } = useRepacks();
-
- const repacks = getRepacksForObjectId(game.objectId);
-
const [isAddingToLibrary, setIsAddingToLibrary] = useState(false);
const [added, setAdded] = useState(false);
@@ -63,10 +59,6 @@ export function GameItem({ game }: GameItemProps) {
}
};
- const uniqueRepackers = useMemo(() => {
- return Array.from(new Set(repacks.map((repack) => repack.repacker)));
- }, [repacks]);
-
const genres = useMemo(() => {
return game.genres?.map((genre) => {
const index = steamGenres["en"]?.findIndex(
@@ -117,8 +109,8 @@ export function GameItem({ game }: GameItemProps) {
{genres.join(", ")}
- {uniqueRepackers.map((repacker) => (
- {repacker}
+ {game.downloadSources.map((sourceName) => (
+ {sourceName}
))}
diff --git a/src/renderer/src/pages/game-details/game-reviews.tsx b/src/renderer/src/pages/game-details/game-reviews.tsx
index f8117f43..1ce44550 100644
--- a/src/renderer/src/pages/game-details/game-reviews.tsx
+++ b/src/renderer/src/pages/game-details/game-reviews.tsx
@@ -144,8 +144,6 @@ export function GameReviews({
}
}, [objectId, userDetailsId, shop, game, onUserReviewedChange]);
- console.log("reviews", reviews);
-
const loadReviews = useCallback(
async (reset = false) => {
if (!objectId) return;
@@ -440,8 +438,6 @@ export function GameReviews({
});
}, [reviews]);
- console.log("reviews", reviews);
-
return (
{showReviewPrompt &&
diff --git a/src/renderer/src/pages/game-details/modals/repacks-modal.tsx b/src/renderer/src/pages/game-details/modals/repacks-modal.tsx
index 7551a31e..306e8647 100644
--- a/src/renderer/src/pages/game-details/modals/repacks-modal.tsx
+++ b/src/renderer/src/pages/game-details/modals/repacks-modal.tsx
@@ -54,7 +54,7 @@ export function RepacksModal({
{}
);
- const { repacks, game } = useContext(gameDetailsContext);
+ const { game, repacks } = useContext(gameDetailsContext);
const { t } = useTranslation("game_details");
@@ -88,6 +88,15 @@ export function RepacksModal({
});
}, [repacks, isFeatureEnabled, Feature]);
+ useEffect(() => {
+ const fetchDownloadSources = async () => {
+ const sources = await window.electron.getDownloadSources();
+ setDownloadSources(sources);
+ };
+
+ fetchDownloadSources();
+ }, []);
+
const sortedRepacks = useMemo(() => {
return orderBy(
repacks,
@@ -103,23 +112,13 @@ export function RepacksModal({
);
}, [repacks, hashesInDebrid]);
- useEffect(() => {
- window.electron.getDownloadSourcesList().then((sources) => {
- const uniqueRepackers = new Set(sortedRepacks.map((r) => r.repacker));
- const filteredSources = sources.filter(
- (s) => s.name && uniqueRepackers.has(s.name) && !!s.fingerprint
- );
- setDownloadSources(filteredSources);
- });
- }, [sortedRepacks]);
-
useEffect(() => {
const term = filterTerm.trim().toLowerCase();
const byTerm = sortedRepacks.filter((repack) => {
if (!term) return true;
const lowerTitle = repack.title.toLowerCase();
- const lowerRepacker = repack.repacker.toLowerCase();
+ const lowerRepacker = repack.downloadSourceName.toLowerCase();
return lowerTitle.includes(term) || lowerRepacker.includes(term);
});
@@ -130,7 +129,7 @@ export function RepacksModal({
(src) =>
src.fingerprint &&
selectedFingerprints.includes(src.fingerprint) &&
- src.name === repack.repacker
+ src.name === repack.downloadSourceName
);
});
@@ -281,7 +280,7 @@ export function RepacksModal({
)}
- {repack.fileSize} - {repack.repacker} -{" "}
+ {repack.fileSize} - {repack.downloadSourceName} -{" "}
{repack.uploadDate ? formatDate(repack.uploadDate) : ""}
diff --git a/src/renderer/src/pages/home/home.tsx b/src/renderer/src/pages/home/home.tsx
index 40bf181d..b8f632a6 100644
--- a/src/renderer/src/pages/home/home.tsx
+++ b/src/renderer/src/pages/home/home.tsx
@@ -40,14 +40,20 @@ export default function Home() {
setCurrentCatalogueCategory(category);
setIsLoading(true);
- const params = new URLSearchParams({
- take: "12",
- skip: "0",
- });
+ const downloadSources = await window.electron.getDownloadSources();
+
+ const params = {
+ take: 12,
+ skip: 0,
+ downloadSourceIds: downloadSources.map((source) => source.id),
+ };
const catalogue = await window.electron.hydraApi.get
(
- `/catalogue/${category}?${params.toString()}`,
- { needsAuth: false }
+ `/catalogue/${category}`,
+ {
+ params,
+ needsAuth: false,
+ }
);
setCatalogue((prev) => ({ ...prev, [category]: catalogue }));
diff --git a/src/renderer/src/pages/settings/add-download-source-modal.scss b/src/renderer/src/pages/settings/add-download-source-modal.scss
index ea92ca71..d938f7f0 100644
--- a/src/renderer/src/pages/settings/add-download-source-modal.scss
+++ b/src/renderer/src/pages/settings/add-download-source-modal.scss
@@ -38,4 +38,11 @@
animation: spin 1s linear infinite;
margin-right: calc(globals.$spacing-unit / 2);
}
+
+ &__actions {
+ display: flex;
+ justify-content: flex-end;
+ gap: globals.$spacing-unit;
+ margin-top: calc(globals.$spacing-unit * 2);
+ }
}
diff --git a/src/renderer/src/pages/settings/add-download-source-modal.tsx b/src/renderer/src/pages/settings/add-download-source-modal.tsx
index c2b47513..2b45ed72 100644
--- a/src/renderer/src/pages/settings/add-download-source-modal.tsx
+++ b/src/renderer/src/pages/settings/add-download-source-modal.tsx
@@ -1,15 +1,12 @@
-import { useCallback, useContext, useEffect, useState } from "react";
+import { useContext, useEffect, useState } from "react";
import { useTranslation } from "react-i18next";
import { Button, Modal, TextField } from "@renderer/components";
import { settingsContext } from "@renderer/context";
import { useForm } from "react-hook-form";
-import { useAppDispatch } from "@renderer/hooks";
import * as yup from "yup";
import { yupResolver } from "@hookform/resolvers/yup";
-import type { DownloadSourceValidationResult } from "@types";
-import { setIsImportingSources } from "@renderer/features";
import { SyncIcon } from "@primer/octicons-react";
import "./add-download-source-modal.scss";
@@ -28,7 +25,6 @@ export function AddDownloadSourceModal({
onClose,
onAddDownloadSource,
}: Readonly) {
- const [url, setUrl] = useState("");
const [isLoading, setIsLoading] = useState(false);
const { t } = useTranslation("settings");
@@ -48,77 +44,38 @@ export function AddDownloadSourceModal({
resolver: yupResolver(schema),
});
- const [validationResult, setValidationResult] =
- useState(null);
-
const { sourceUrl } = useContext(settingsContext);
- const dispatch = useAppDispatch();
+ const onSubmit = async (values: FormValues) => {
+ setIsLoading(true);
- const onSubmit = useCallback(
- async (values: FormValues) => {
- const exists = await window.electron.checkDownloadSourceExists(
- values.url
- );
+ try {
+ await window.electron.addDownloadSource(values.url);
- if (exists) {
- setError("url", {
- type: "server",
- message: t("source_already_exists"),
- });
-
- return;
- }
-
- const validationResult = await window.electron.validateDownloadSource(
- values.url
- );
-
- setValidationResult(validationResult);
- setUrl(values.url);
- },
- [setError, t]
- );
+ onClose();
+ onAddDownloadSource();
+ } catch (error) {
+ console.error("Failed to add download source:", error);
+ setError("url", {
+ type: "server",
+ message: "Failed to add download source. Please try again.",
+ });
+ } finally {
+ setIsLoading(false);
+ }
+ };
useEffect(() => {
setValue("url", "");
clearErrors();
setIsLoading(false);
- setValidationResult(null);
if (sourceUrl) {
setValue("url", sourceUrl);
- handleSubmit(onSubmit)();
}
- }, [visible, clearErrors, handleSubmit, onSubmit, setValue, sourceUrl]);
-
- const handleAddDownloadSource = async () => {
- if (validationResult) {
- setIsLoading(true);
- dispatch(setIsImportingSources(true));
-
- try {
- // Single call that handles: import → API sync → fingerprint
- await window.electron.addDownloadSource(url);
-
- // Close modal and update UI
- onClose();
- onAddDownloadSource();
- } catch (error) {
- console.error("Failed to add download source:", error);
- setError("url", {
- type: "server",
- message: "Failed to import source. Please try again.",
- });
- } finally {
- setIsLoading(false);
- dispatch(setIsImportingSources(false));
- }
- }
- };
+ }, [visible, clearErrors, setValue, sourceUrl]);
const handleClose = () => {
- // Prevent closing while importing
if (isLoading) return;
onClose();
};
@@ -132,49 +89,32 @@ export function AddDownloadSourceModal({
clickOutsideToClose={!isLoading}
>
-
+
+
+
- }
- />
-
- {validationResult && (
-
-
-
{validationResult?.name}
-
- {t("found_download_option", {
- count: validationResult?.downloadCount,
- countFormatted:
- validationResult?.downloadCount.toLocaleString(),
- })}
-
-
-
-
+
+
- )}
+
);
diff --git a/src/renderer/src/pages/settings/settings-download-sources.tsx b/src/renderer/src/pages/settings/settings-download-sources.tsx
index f873b321..85c0569a 100644
--- a/src/renderer/src/pages/settings/settings-download-sources.tsx
+++ b/src/renderer/src/pages/settings/settings-download-sources.tsx
@@ -16,7 +16,7 @@ import {
TrashIcon,
} from "@primer/octicons-react";
import { AddDownloadSourceModal } from "./add-download-source-modal";
-import { useAppDispatch, useRepacks, useToast } from "@renderer/hooks";
+import { useAppDispatch, useToast } from "@renderer/hooks";
import { DownloadSourceStatus } from "@shared";
import { settingsContext } from "@renderer/context";
import { useNavigate } from "react-router-dom";
@@ -35,7 +35,6 @@ export function SettingsDownloadSources() {
useState(false);
const [isRemovingDownloadSource, setIsRemovingDownloadSource] =
useState(false);
- const [isFetchingSources, setIsFetchingSources] = useState(true);
const { sourceUrl, clearSourceUrl } = useContext(settingsContext);
@@ -46,37 +45,29 @@ export function SettingsDownloadSources() {
const navigate = useNavigate();
- const { updateRepacks } = useRepacks();
-
- const getDownloadSources = async () => {
- await window.electron
- .getDownloadSourcesList()
- .then((sources) => {
- setDownloadSources(sources);
- })
- .finally(() => {
- setIsFetchingSources(false);
- });
- };
-
- useEffect(() => {
- getDownloadSources();
- }, []);
-
useEffect(() => {
if (sourceUrl) setShowAddDownloadSourceModal(true);
}, [sourceUrl]);
+ useEffect(() => {
+ const fetchDownloadSources = async () => {
+ const sources = await window.electron.getDownloadSources();
+ setDownloadSources(sources);
+ };
+
+ fetchDownloadSources();
+ }, []);
+
const handleRemoveSource = async (downloadSource: DownloadSource) => {
setIsRemovingDownloadSource(true);
try {
- await window.electron.deleteDownloadSource(downloadSource.id);
- await window.electron.removeDownloadSource(downloadSource.url);
-
+ await window.electron.removeDownloadSource(false, downloadSource.id);
+ const sources = await window.electron.getDownloadSources();
+ setDownloadSources(sources as DownloadSource[]);
showSuccessToast(t("removed_download_source"));
- await getDownloadSources();
- updateRepacks();
+ } catch (error) {
+ console.error("Failed to remove download source:", error);
} finally {
setIsRemovingDownloadSource(false);
}
@@ -86,53 +77,44 @@ export function SettingsDownloadSources() {
setIsRemovingDownloadSource(true);
try {
- await window.electron.deleteAllDownloadSources();
- await window.electron.removeDownloadSource("", true);
-
- showSuccessToast(t("removed_download_sources"));
- await getDownloadSources();
- setShowConfirmationDeleteAllSourcesModal(false);
- updateRepacks();
+ await window.electron.removeDownloadSource(true);
+ const sources = await window.electron.getDownloadSources();
+ setDownloadSources(sources as DownloadSource[]);
+ showSuccessToast(t("removed_all_download_sources"));
+ } catch (error) {
+ console.error("Failed to remove all download sources:", error);
} finally {
setIsRemovingDownloadSource(false);
+ setShowConfirmationDeleteAllSourcesModal(false);
}
};
const handleAddDownloadSource = async () => {
- // Refresh sources list and repacks after import completes
- await getDownloadSources();
-
- // Force repacks update to ensure UI reflects new data
- await updateRepacks();
-
- showSuccessToast(t("added_download_source"));
+ try {
+ const sources = await window.electron.getDownloadSources();
+ setDownloadSources(sources as DownloadSource[]);
+ } catch (error) {
+ console.error("Failed to refresh download sources:", error);
+ }
};
const syncDownloadSources = async () => {
setIsSyncingDownloadSources(true);
-
try {
- // Sync local sources (check for updates)
- await window.electron.syncDownloadSources();
-
- // Refresh sources and repacks AFTER sync completes
- await getDownloadSources();
- await updateRepacks();
-
- showSuccessToast(t("download_sources_synced"));
- } catch (error) {
- console.error("Error syncing download sources:", error);
- // Still refresh the UI even if sync fails
- await getDownloadSources();
- await updateRepacks();
+ const sources = await window.electron.syncDownloadSources();
+ setDownloadSources(sources);
} finally {
setIsSyncingDownloadSources(false);
}
};
const statusTitle = {
- [DownloadSourceStatus.UpToDate]: t("download_source_up_to_date"),
- [DownloadSourceStatus.Errored]: t("download_source_errored"),
+ [DownloadSourceStatus.PendingMatching]: t(
+ "download_source_pending_matching"
+ ),
+ [DownloadSourceStatus.Matched]: t("download_source_matched"),
+ [DownloadSourceStatus.Matching]: t("download_source_matching"),
+ [DownloadSourceStatus.Failed]: t("download_source_failed"),
};
const handleModalClose = () => {
@@ -180,8 +162,7 @@ export function SettingsDownloadSources() {
disabled={
!downloadSources.length ||
isSyncingDownloadSources ||
- isRemovingDownloadSource ||
- isFetchingSources
+ isRemovingDownloadSource
}
onClick={syncDownloadSources}
>
@@ -197,8 +178,7 @@ export function SettingsDownloadSources() {
disabled={
isRemovingDownloadSource ||
isSyncingDownloadSources ||
- !downloadSources.length ||
- isFetchingSources
+ !downloadSources.length
}
>
@@ -209,11 +189,7 @@ export function SettingsDownloadSources() {
type="button"
theme="outline"
onClick={() => setShowAddDownloadSourceModal(true)}
- disabled={
- isSyncingDownloadSources ||
- isFetchingSources ||
- isRemovingDownloadSource
- }
+ disabled={isSyncingDownloadSources || isRemovingDownloadSource}
>
{t("add_download_source")}
diff --git a/src/renderer/src/store.ts b/src/renderer/src/store.ts
index 264b1296..9903271c 100644
--- a/src/renderer/src/store.ts
+++ b/src/renderer/src/store.ts
@@ -8,8 +8,6 @@ import {
userDetailsSlice,
gameRunningSlice,
subscriptionSlice,
- repacksSlice,
- downloadSourcesSlice,
catalogueSearchSlice,
} from "@renderer/features";
@@ -23,8 +21,6 @@ export const store = configureStore({
userDetails: userDetailsSlice.reducer,
gameRunning: gameRunningSlice.reducer,
subscription: subscriptionSlice.reducer,
- repacks: repacksSlice.reducer,
- downloadSources: downloadSourcesSlice.reducer,
catalogueSearch: catalogueSearchSlice.reducer,
},
});
diff --git a/src/shared/constants.ts b/src/shared/constants.ts
index 851aec49..619dca65 100644
--- a/src/shared/constants.ts
+++ b/src/shared/constants.ts
@@ -11,8 +11,10 @@ export enum Downloader {
}
export enum DownloadSourceStatus {
- UpToDate,
- Errored,
+ PendingMatching = "PENDING_MATCHING",
+ Matched = "MATCHED",
+ Matching = "MATCHING",
+ Failed = "FAILED",
}
export enum CatalogueCategory {
diff --git a/src/types/index.ts b/src/types/index.ts
index 63b18645..092adaf8 100644
--- a/src/types/index.ts
+++ b/src/types/index.ts
@@ -16,29 +16,22 @@ export interface DiskUsage {
}
export interface GameRepack {
- id: number;
+ id: string;
title: string;
- uris: string[];
- repacker: string;
fileSize: string | null;
- objectIds: string[];
- uploadDate: Date | string | null;
- createdAt: Date;
- updatedAt: Date;
+ uris: string[];
+ uploadDate: string | null;
+ downloadSourceId: string;
+ downloadSourceName: string;
}
export interface DownloadSource {
- id: number;
+ id: string;
name: string;
url: string;
- repackCount: number;
status: DownloadSourceStatus;
- objectIds: string[];
downloadCount: number;
fingerprint?: string;
- etag: string | null;
- createdAt: Date;
- updatedAt: Date;
}
export interface ShopAssets {
@@ -51,6 +44,7 @@ export interface ShopAssets {
logoImageUrl: string;
logoPosition: string | null;
coverImageUrl: string | null;
+ downloadSources: string[];
}
export type ShopDetails = SteamAppDetails & {
@@ -231,12 +225,6 @@ export interface DownloadSourceDownload {
fileSize: string;
}
-export interface DownloadSourceValidationResult {
- name: string;
- etag: string;
- downloadCount: number;
-}
-
export interface GameStats {
downloadCount: number;
playerCount: number;
@@ -366,7 +354,7 @@ export type CatalogueSearchResult = {
title: string;
shop: GameShop;
genres: string[];
-} & Pick;
+} & Pick;
export type LibraryGame = Game &
Partial & {
From e1ce5bc6cb8e6d2cbc14a7e7615c0b95619d9cf2 Mon Sep 17 00:00:00 2001
From: Chubby Granny Chaser
Date: Tue, 21 Oct 2025 04:20:11 +0100
Subject: [PATCH 04/26] feat: using api download sources
---
src/main/events/library/add-custom-game-to-library.ts | 1 +
src/main/services/library-sync/merge-with-remote-games.ts | 1 +
2 files changed, 2 insertions(+)
diff --git a/src/main/events/library/add-custom-game-to-library.ts b/src/main/events/library/add-custom-game-to-library.ts
index f2f2dd40..6a90087e 100644
--- a/src/main/events/library/add-custom-game-to-library.ts
+++ b/src/main/events/library/add-custom-game-to-library.ts
@@ -37,6 +37,7 @@ const addCustomGameToLibrary = async (
logoImageUrl: logoImageUrl || "",
logoPosition: null,
coverImageUrl: iconUrl || "",
+ downloadSources: [],
};
await gamesShopAssetsSublevel.put(gameKey, assets);
diff --git a/src/main/services/library-sync/merge-with-remote-games.ts b/src/main/services/library-sync/merge-with-remote-games.ts
index f7ea2744..c00e4961 100644
--- a/src/main/services/library-sync/merge-with-remote-games.ts
+++ b/src/main/services/library-sync/merge-with-remote-games.ts
@@ -72,6 +72,7 @@ export const mergeWithRemoteGames = async () => {
logoImageUrl: game.logoImageUrl,
iconUrl: game.iconUrl,
logoPosition: game.logoPosition,
+ downloadSources: game.downloadSources,
});
}
})
From 8a40c678f7c2db1d4558cf1cca018359a592e3d7 Mon Sep 17 00:00:00 2001
From: Chubby Granny Chaser
Date: Tue, 21 Oct 2025 04:21:56 +0100
Subject: [PATCH 05/26] feat: using api download sources
---
src/renderer/src/pages/game-details/game-details.tsx | 1 -
src/types/index.ts | 1 -
2 files changed, 2 deletions(-)
diff --git a/src/renderer/src/pages/game-details/game-details.tsx b/src/renderer/src/pages/game-details/game-details.tsx
index f0778494..04b78aa4 100644
--- a/src/renderer/src/pages/game-details/game-details.tsx
+++ b/src/renderer/src/pages/game-details/game-details.tsx
@@ -102,7 +102,6 @@ export default function GameDetails() {
automaticallyExtract: boolean
) => {
const response = await startDownload({
- repackId: repack.id,
objectId: objectId!,
title: gameTitle,
downloader,
diff --git a/src/types/index.ts b/src/types/index.ts
index 092adaf8..7d11171b 100644
--- a/src/types/index.ts
+++ b/src/types/index.ts
@@ -107,7 +107,6 @@ export type AppUpdaterEvent =
/* Events */
export interface StartGameDownloadPayload {
- repackId: number;
objectId: string;
title: string;
shop: GameShop;
From 40f7e6e2ad210d56bddd15b2b59828358f3919fb Mon Sep 17 00:00:00 2001
From: Zamitto <167933696+zamitto@users.noreply.github.com>
Date: Thu, 23 Oct 2025 17:47:54 -0300
Subject: [PATCH 06/26] chore: bump electron version to 35
---
package.json | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/package.json b/package.json
index 342b078a..59497aad 100644
--- a/package.json
+++ b/package.json
@@ -116,7 +116,7 @@
"@types/winreg": "^1.2.36",
"@types/ws": "^8.18.1",
"@vitejs/plugin-react": "^4.2.1",
- "electron": "^33.4.11",
+ "electron": "^35.7.5",
"electron-builder": "^26.0.12",
"electron-vite": "^3.0.0",
"eslint": "^8.56.0",
From a388acf9481ac1dcdff964b7c24749d084ba6247 Mon Sep 17 00:00:00 2001
From: Zamitto <167933696+zamitto@users.noreply.github.com>
Date: Thu, 23 Oct 2025 17:51:15 -0300
Subject: [PATCH 07/26] chore: update node version on gh actions
---
.github/workflows/build-renderer.yml | 4 ++--
.github/workflows/build.yml | 2 +-
.github/workflows/lint.yml | 2 +-
.github/workflows/release.yml | 2 +-
yarn.lock | 19 +++++++++++++------
5 files changed, 18 insertions(+), 11 deletions(-)
diff --git a/.github/workflows/build-renderer.yml b/.github/workflows/build-renderer.yml
index 6aefac43..ed7a99ab 100644
--- a/.github/workflows/build-renderer.yml
+++ b/.github/workflows/build-renderer.yml
@@ -6,7 +6,7 @@ concurrency:
on:
push:
- branches: main
+ branches: [main]
jobs:
build:
@@ -19,7 +19,7 @@ jobs:
- name: Install Node.js
uses: actions/setup-node@v4
with:
- node-version: 20.18.0
+ node-version: 22.19.5
- name: Install dependencies
run: yarn --frozen-lockfile --ignore-scripts
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 5062c7ad..32688379 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -22,7 +22,7 @@ jobs:
- name: Install Node.js
uses: actions/setup-node@v4
with:
- node-version: 20.18.3
+ node-version: 22.19.5
- name: Install dependencies
run: yarn --frozen-lockfile
diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml
index ac359364..6d08525c 100644
--- a/.github/workflows/lint.yml
+++ b/.github/workflows/lint.yml
@@ -17,7 +17,7 @@ jobs:
- name: Install Node.js
uses: actions/setup-node@v4
with:
- node-version: 20.18.3
+ node-version: 22.19.5
- name: Install dependencies
run: yarn --frozen-lockfile
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index 3ceb42c7..a06eeb21 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -23,7 +23,7 @@ jobs:
- name: Install Node.js
uses: actions/setup-node@v4
with:
- node-version: 20.18.3
+ node-version: 22.19.5
- name: Install dependencies
run: yarn --frozen-lockfile
diff --git a/yarn.lock b/yarn.lock
index 0337a77b..5ffc3f03 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -3206,13 +3206,20 @@
dependencies:
undici-types "~7.14.0"
-"@types/node@^20.12.7", "@types/node@^20.9.0":
+"@types/node@^20.12.7":
version "20.19.21"
resolved "https://registry.yarnpkg.com/@types/node/-/node-20.19.21.tgz#6e5378e04993c40395473b13baf94a09875157b8"
integrity sha512-CsGG2P3I5y48RPMfprQGfy4JPRZ6csfC3ltBZSRItG3ngggmNY/qs2uZKp4p9VbrpqNNSMzUZNFZKzgOGnd/VA==
dependencies:
undici-types "~6.21.0"
+"@types/node@^22.7.7":
+ version "22.18.12"
+ resolved "https://registry.yarnpkg.com/@types/node/-/node-22.18.12.tgz#e165d87bc25d7bf6d3657035c914db7485de84fb"
+ integrity sha512-BICHQ67iqxQGFSzfCFTT7MRQ5XcBjG5aeKh5Ok38UBbPe5fxTyE+aHFxwVrGyr8GNlqFMLKD1D3P2K/1ks8tog==
+ dependencies:
+ undici-types "~6.21.0"
+
"@types/parse-torrent-file@*":
version "4.0.6"
resolved "https://registry.yarnpkg.com/@types/parse-torrent-file/-/parse-torrent-file-4.0.6.tgz#11801dfd5b0a017302a164b72c8869f2bcba15b1"
@@ -4651,13 +4658,13 @@ electron-vite@^3.0.0:
magic-string "^0.30.17"
picocolors "^1.1.1"
-electron@^33.4.11:
- version "33.4.11"
- resolved "https://registry.yarnpkg.com/electron/-/electron-33.4.11.tgz#225d7f106ed3edf788ced318c63858d8b8a446dc"
- integrity sha512-xmdAs5QWRkInC7TpXGNvzo/7exojubk+72jn1oJL7keNeIlw7xNglf8TGtJtkR4rWC5FJq0oXiIXPS9BcK2Irg==
+electron@^35.7.5:
+ version "35.7.5"
+ resolved "https://registry.yarnpkg.com/electron/-/electron-35.7.5.tgz#294a4aebb2ad2a884de730c410f2358d061e8d53"
+ integrity sha512-dnL+JvLraKZl7iusXTVTGYs10TKfzUi30uEDTqsmTm0guN9V2tbOjTzyIZbh9n3ygUjgEYyo+igAwMRXIi3IPw==
dependencies:
"@electron/get" "^2.0.0"
- "@types/node" "^20.9.0"
+ "@types/node" "^22.7.7"
extract-zip "^2.0.1"
embla-carousel-autoplay@^8.6.0:
From 29e822f2f110a3ae83d0f18862a37d5614112fbe Mon Sep 17 00:00:00 2001
From: Zamitto <167933696+zamitto@users.noreply.github.com>
Date: Thu, 23 Oct 2025 17:56:45 -0300
Subject: [PATCH 08/26] fix: node version on gh actions files
---
.github/workflows/build-renderer.yml | 2 +-
.github/workflows/build.yml | 2 +-
.github/workflows/lint.yml | 2 +-
.github/workflows/release.yml | 2 +-
4 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/.github/workflows/build-renderer.yml b/.github/workflows/build-renderer.yml
index ed7a99ab..f7361883 100644
--- a/.github/workflows/build-renderer.yml
+++ b/.github/workflows/build-renderer.yml
@@ -19,7 +19,7 @@ jobs:
- name: Install Node.js
uses: actions/setup-node@v4
with:
- node-version: 22.19.5
+ node-version: 22.21.0
- name: Install dependencies
run: yarn --frozen-lockfile --ignore-scripts
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 32688379..86fce350 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -22,7 +22,7 @@ jobs:
- name: Install Node.js
uses: actions/setup-node@v4
with:
- node-version: 22.19.5
+ node-version: 22.21.0
- name: Install dependencies
run: yarn --frozen-lockfile
diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml
index 6d08525c..89e8b59f 100644
--- a/.github/workflows/lint.yml
+++ b/.github/workflows/lint.yml
@@ -17,7 +17,7 @@ jobs:
- name: Install Node.js
uses: actions/setup-node@v4
with:
- node-version: 22.19.5
+ node-version: 22.21.0
- name: Install dependencies
run: yarn --frozen-lockfile
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index a06eeb21..11df9b9f 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -23,7 +23,7 @@ jobs:
- name: Install Node.js
uses: actions/setup-node@v4
with:
- node-version: 22.19.5
+ node-version: 22.21.0
- name: Install dependencies
run: yarn --frozen-lockfile
From 11c19f5fe5bd49e7fb5560f65e383e98fb3000fa Mon Sep 17 00:00:00 2001
From: Zamitto <167933696+zamitto@users.noreply.github.com>
Date: Fri, 24 Oct 2025 20:20:51 -0300
Subject: [PATCH 09/26] chore: downgrade to latest of 34
---
package.json | 2 +-
src/renderer/src/pages/game-details/game-reviews.tsx | 4 ----
yarn.lock | 2 +-
3 files changed, 2 insertions(+), 6 deletions(-)
diff --git a/package.json b/package.json
index 59497aad..f74825a1 100644
--- a/package.json
+++ b/package.json
@@ -116,7 +116,7 @@
"@types/winreg": "^1.2.36",
"@types/ws": "^8.18.1",
"@vitejs/plugin-react": "^4.2.1",
- "electron": "^35.7.5",
+ "electron": "^34.5.8",
"electron-builder": "^26.0.12",
"electron-vite": "^3.0.0",
"eslint": "^8.56.0",
diff --git a/src/renderer/src/pages/game-details/game-reviews.tsx b/src/renderer/src/pages/game-details/game-reviews.tsx
index f8117f43..1ce44550 100644
--- a/src/renderer/src/pages/game-details/game-reviews.tsx
+++ b/src/renderer/src/pages/game-details/game-reviews.tsx
@@ -144,8 +144,6 @@ export function GameReviews({
}
}, [objectId, userDetailsId, shop, game, onUserReviewedChange]);
- console.log("reviews", reviews);
-
const loadReviews = useCallback(
async (reset = false) => {
if (!objectId) return;
@@ -440,8 +438,6 @@ export function GameReviews({
});
}, [reviews]);
- console.log("reviews", reviews);
-
return (
{showReviewPrompt &&
diff --git a/yarn.lock b/yarn.lock
index 5ffc3f03..d936ff61 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -4658,7 +4658,7 @@ electron-vite@^3.0.0:
magic-string "^0.30.17"
picocolors "^1.1.1"
-electron@^35.7.5:
+electron@^35.2.1:
version "35.7.5"
resolved "https://registry.yarnpkg.com/electron/-/electron-35.7.5.tgz#294a4aebb2ad2a884de730c410f2358d061e8d53"
integrity sha512-dnL+JvLraKZl7iusXTVTGYs10TKfzUi30uEDTqsmTm0guN9V2tbOjTzyIZbh9n3ygUjgEYyo+igAwMRXIi3IPw==
From 4471bf0f8bc9ee7e27a48dbfc2c9a3be3299f6a7 Mon Sep 17 00:00:00 2001
From: Zamitto <167933696+zamitto@users.noreply.github.com>
Date: Fri, 24 Oct 2025 21:05:40 -0300
Subject: [PATCH 10/26] chore: bump to electron 37
---
package.json | 4 ++--
yarn.lock | 10 +++++-----
2 files changed, 7 insertions(+), 7 deletions(-)
diff --git a/package.json b/package.json
index f74825a1..b34425a0 100644
--- a/package.json
+++ b/package.json
@@ -116,9 +116,9 @@
"@types/winreg": "^1.2.36",
"@types/ws": "^8.18.1",
"@vitejs/plugin-react": "^4.2.1",
- "electron": "^34.5.8",
+ "electron": "^37.7.1",
"electron-builder": "^26.0.12",
- "electron-vite": "^3.0.0",
+ "electron-vite": "^3.1.0",
"eslint": "^8.56.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.4",
diff --git a/yarn.lock b/yarn.lock
index d936ff61..c362ada8 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -4646,7 +4646,7 @@ electron-updater@^6.6.2:
semver "^7.6.3"
tiny-typed-emitter "^2.1.0"
-electron-vite@^3.0.0:
+electron-vite@^3.1.0:
version "3.1.0"
resolved "https://registry.yarnpkg.com/electron-vite/-/electron-vite-3.1.0.tgz#1784907a83d23c6c8093ec68b8e414a74d814385"
integrity sha512-M7aAzaRvSl5VO+6KN4neJCYLHLpF/iWo5ztchI/+wMxIieDZQqpbCYfaEHHHPH6eupEzfvZdLYdPdmvGqoVe0Q==
@@ -4658,10 +4658,10 @@ electron-vite@^3.0.0:
magic-string "^0.30.17"
picocolors "^1.1.1"
-electron@^35.2.1:
- version "35.7.5"
- resolved "https://registry.yarnpkg.com/electron/-/electron-35.7.5.tgz#294a4aebb2ad2a884de730c410f2358d061e8d53"
- integrity sha512-dnL+JvLraKZl7iusXTVTGYs10TKfzUi30uEDTqsmTm0guN9V2tbOjTzyIZbh9n3ygUjgEYyo+igAwMRXIi3IPw==
+electron@^37.7.1:
+ version "37.7.1"
+ resolved "https://registry.yarnpkg.com/electron/-/electron-37.7.1.tgz#7d771b3d3365b5458f8bc758385defee14387034"
+ integrity sha512-2EmIqWv4T8BtgFQosB3/0Fezs09X3l0wXhIzes/cNt/GI+UDljbQr3NiF2J9WnqP0aFSbUEfztGUQMiX+qDvsw==
dependencies:
"@electron/get" "^2.0.0"
"@types/node" "^22.7.7"
From 87a57f7a37ea51a547a9fa213120710c44a7c173 Mon Sep 17 00:00:00 2001
From: Chubby Granny Chaser
Date: Sun, 26 Oct 2025 23:22:20 +0000
Subject: [PATCH 11/26] feat: adding sources migration
---
.../download-sources/add-download-source.ts | 16 +++++------
.../download-sources/get-download-sources.ts | 4 ++-
src/main/helpers/migrate-download-sources.ts | 27 +++++++++++++++++++
src/main/main.ts | 2 ++
.../src/components/game-card/game-card.tsx | 2 --
.../settings/settings-download-sources.tsx | 2 ++
src/types/index.ts | 2 ++
7 files changed, 43 insertions(+), 12 deletions(-)
create mode 100644 src/main/helpers/migrate-download-sources.ts
diff --git a/src/main/events/download-sources/add-download-source.ts b/src/main/events/download-sources/add-download-source.ts
index 45bcd27c..d4e65ef3 100644
--- a/src/main/events/download-sources/add-download-source.ts
+++ b/src/main/events/download-sources/add-download-source.ts
@@ -2,6 +2,7 @@ import { registerEvent } from "../register-event";
import { HydraApi } from "@main/services/hydra-api";
import { downloadSourcesSublevel } from "@main/level";
import type { DownloadSource } from "@types";
+import { logger } from "@main/services";
const addDownloadSource = async (
_event: Electron.IpcMainInvokeEvent,
@@ -22,22 +23,19 @@ const addDownloadSource = async (
urls: [url],
});
} catch (error) {
- console.error("Failed to add download source to profile:", error);
+ logger.error("Failed to add download source to profile:", error);
}
}
- const downloadSourceForStorage = {
+ await downloadSourcesSublevel.put(downloadSource.id, {
...downloadSource,
- fingerprint: downloadSource.fingerprint || "",
- };
- await downloadSourcesSublevel.put(
- downloadSource.id,
- downloadSourceForStorage
- );
+ isRemote: true,
+ createdAt: new Date().toISOString(),
+ });
return downloadSource;
} catch (error) {
- console.error("Failed to add download source:", error);
+ logger.error("Failed to add download source:", error);
throw error;
}
};
diff --git a/src/main/events/download-sources/get-download-sources.ts b/src/main/events/download-sources/get-download-sources.ts
index cf7cd4d7..48583d9e 100644
--- a/src/main/events/download-sources/get-download-sources.ts
+++ b/src/main/events/download-sources/get-download-sources.ts
@@ -1,8 +1,10 @@
import { downloadSourcesSublevel } from "@main/level";
import { registerEvent } from "../register-event";
+import { orderBy } from "lodash-es";
const getDownloadSources = async (_event: Electron.IpcMainInvokeEvent) => {
- return downloadSourcesSublevel.values().all();
+ const allSources = await downloadSourcesSublevel.values().all();
+ return orderBy(allSources, "createdAt", "desc");
};
registerEvent("getDownloadSources", getDownloadSources);
diff --git a/src/main/helpers/migrate-download-sources.ts b/src/main/helpers/migrate-download-sources.ts
new file mode 100644
index 00000000..fd627f20
--- /dev/null
+++ b/src/main/helpers/migrate-download-sources.ts
@@ -0,0 +1,27 @@
+import { downloadSourcesSublevel } from "@main/level";
+import { HydraApi } from "@main/services/hydra-api";
+import { DownloadSource } from "@types";
+
+export const migrateDownloadSources = async () => {
+ const downloadSources = downloadSourcesSublevel.iterator();
+
+ for await (const [key, value] of downloadSources) {
+ if (!value.isRemote) {
+ const downloadSource = await HydraApi.post(
+ "/download-sources",
+ {
+ url: value.url,
+ },
+ { needsAuth: false }
+ );
+
+ await downloadSourcesSublevel.put(downloadSource.id, {
+ ...downloadSource,
+ isRemote: true,
+ createdAt: new Date().toISOString(),
+ });
+
+ await downloadSourcesSublevel.del(key);
+ }
+ }
+};
diff --git a/src/main/main.ts b/src/main/main.ts
index 617dd135..6e477a18 100644
--- a/src/main/main.ts
+++ b/src/main/main.ts
@@ -17,6 +17,7 @@ import {
Lock,
DeckyPlugin,
} from "@main/services";
+import { migrateDownloadSources } from "./helpers/migrate-download-sources";
export const loadState = async () => {
await Lock.acquireLock();
@@ -51,6 +52,7 @@ export const loadState = async () => {
await HydraApi.setupApi().then(() => {
uploadGamesBatch();
+ void migrateDownloadSources();
// WSClient.connect();
});
diff --git a/src/renderer/src/components/game-card/game-card.tsx b/src/renderer/src/components/game-card/game-card.tsx
index 598874b5..edea8d50 100644
--- a/src/renderer/src/components/game-card/game-card.tsx
+++ b/src/renderer/src/components/game-card/game-card.tsx
@@ -38,8 +38,6 @@ export function GameCard({ game, ...props }: GameCardProps) {
const { numberFormatter } = useFormat();
- console.log("game", game);
-
return (
}
- placeholder="API Token"
+ placeholder={t("api_token")}
hint={
diff --git a/src/renderer/src/pages/settings/settings-torbox.tsx b/src/renderer/src/pages/settings/settings-torbox.tsx
index 610dc942..46c8e2f9 100644
--- a/src/renderer/src/pages/settings/settings-torbox.tsx
+++ b/src/renderer/src/pages/settings/settings-torbox.tsx
@@ -116,7 +116,7 @@ export function SettingsTorBox() {
onChange={(event) =>
setForm({ ...form, torBoxApiToken: event.target.value })
}
- placeholder="API Token"
+ placeholder={t("api_token")}
rightContent={
{t("save_changes")}
From 6921bfa3ff0870c1e16ec787032eed000f8ec5c0 Mon Sep 17 00:00:00 2001
From: Chubby Granny Chaser
Date: Mon, 27 Oct 2025 07:41:58 +0000
Subject: [PATCH 14/26] ci: testing windows 2019
---
.github/workflows/build.yml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 5062c7ad..c269359b 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -10,7 +10,7 @@ jobs:
build:
strategy:
matrix:
- os: [windows-2022, ubuntu-latest]
+ os: [windows-2019, ubuntu-latest]
fail-fast: false
runs-on: ${{ matrix.os }}
From a073cf7f8cff712a40963c06b4cd827a5cc60783 Mon Sep 17 00:00:00 2001
From: Zamitto <167933696+zamitto@users.noreply.github.com>
Date: Mon, 27 Oct 2025 04:50:32 -0300
Subject: [PATCH 15/26] chore: bump electron vite version
---
package.json | 4 +-
yarn.lock | 359 ++++++++++++++++++++++++++++++---------------------
2 files changed, 214 insertions(+), 149 deletions(-)
diff --git a/package.json b/package.json
index b34425a0..08c1d80e 100644
--- a/package.json
+++ b/package.json
@@ -118,7 +118,7 @@
"@vitejs/plugin-react": "^4.2.1",
"electron": "^37.7.1",
"electron-builder": "^26.0.12",
- "electron-vite": "^3.1.0",
+ "electron-vite": "^4.0.1",
"eslint": "^8.56.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.4",
@@ -130,7 +130,7 @@
"sass-embedded": "^1.80.6",
"ts-node": "^10.9.2",
"typescript": "^5.3.3",
- "vite": "5.4.20",
+ "vite": "5.4.21",
"vite-plugin-svgr": "^4.5.0"
},
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
diff --git a/yarn.lock b/yarn.lock
index c362ada8..6340a43f 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -601,7 +601,7 @@
resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.28.4.tgz#96fdf1af1b8859c8474ab39c295312bfb7c24b04"
integrity sha512-YsmSKC29MJwf0gF8Rjjrg5LQCmyh+j/nD8/eP7f+BeoQTKYqs9RoWbjGOdy0+1Ekr68RJZMUOPVQaQisnIo4Rw==
-"@babel/core@^7.21.3", "@babel/core@^7.26.10", "@babel/core@^7.28.0":
+"@babel/core@^7.21.3", "@babel/core@^7.28.0":
version "7.28.4"
resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.28.4.tgz#12a550b8794452df4c8b084f95003bce1742d496"
integrity sha512-2BCOP7TN8M+gVDj7/ht3hsaO/B/n5oDbiAyyvnRlNOs+u1o+JWNYTQrmpuNp1/Wq2gcFrI01JAW+paEKDMx/CA==
@@ -622,6 +622,27 @@
json5 "^2.2.3"
semver "^6.3.1"
+"@babel/core@^7.27.7":
+ version "7.28.5"
+ resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.28.5.tgz#4c81b35e51e1b734f510c99b07dfbc7bbbb48f7e"
+ integrity sha512-e7jT4DxYvIDLk1ZHmU/m/mB19rex9sv0c2ftBtjSBv+kVM/902eh0fINUzD7UwLLNR+jU585GxUJ8/EBfAM5fw==
+ dependencies:
+ "@babel/code-frame" "^7.27.1"
+ "@babel/generator" "^7.28.5"
+ "@babel/helper-compilation-targets" "^7.27.2"
+ "@babel/helper-module-transforms" "^7.28.3"
+ "@babel/helpers" "^7.28.4"
+ "@babel/parser" "^7.28.5"
+ "@babel/template" "^7.27.2"
+ "@babel/traverse" "^7.28.5"
+ "@babel/types" "^7.28.5"
+ "@jridgewell/remapping" "^2.3.5"
+ convert-source-map "^2.0.0"
+ debug "^4.1.0"
+ gensync "^1.0.0-beta.2"
+ json5 "^2.2.3"
+ semver "^6.3.1"
+
"@babel/generator@^7.28.3":
version "7.28.3"
resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.28.3.tgz#9626c1741c650cbac39121694a0f2d7451b8ef3e"
@@ -633,6 +654,17 @@
"@jridgewell/trace-mapping" "^0.3.28"
jsesc "^3.0.2"
+"@babel/generator@^7.28.5":
+ version "7.28.5"
+ resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.28.5.tgz#712722d5e50f44d07bc7ac9fe84438742dd61298"
+ integrity sha512-3EwLFhZ38J4VyIP6WNtt2kUdW9dokXA9Cr4IVIFHuCpZ3H8/YFOl5JjZHisrn1fATPBmKKqXzDFvh9fUwHz6CQ==
+ dependencies:
+ "@babel/parser" "^7.28.5"
+ "@babel/types" "^7.28.5"
+ "@jridgewell/gen-mapping" "^0.3.12"
+ "@jridgewell/trace-mapping" "^0.3.28"
+ jsesc "^3.0.2"
+
"@babel/helper-compilation-targets@^7.27.2":
version "7.27.2"
resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.27.2.tgz#46a0f6efab808d51d29ce96858dd10ce8732733d"
@@ -681,6 +713,11 @@
resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.27.1.tgz#a7054dcc145a967dd4dc8fee845a57c1316c9df8"
integrity sha512-D2hP9eA+Sqx1kBZgzxZh0y1trbuU+JoDkiEwqhQ36nodYqJwyEIhPSdMNd7lOm/4io72luTPWH20Yda0xOuUow==
+"@babel/helper-validator-identifier@^7.28.5":
+ version "7.28.5"
+ resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.28.5.tgz#010b6938fab7cb7df74aa2bbc06aa503b8fe5fb4"
+ integrity sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==
+
"@babel/helper-validator-option@^7.27.1":
version "7.27.1"
resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.27.1.tgz#fa52f5b1e7db1ab049445b421c4471303897702f"
@@ -701,7 +738,14 @@
dependencies:
"@babel/types" "^7.28.4"
-"@babel/plugin-transform-arrow-functions@^7.25.9":
+"@babel/parser@^7.28.5":
+ version "7.28.5"
+ resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.28.5.tgz#0b0225ee90362f030efd644e8034c99468893b08"
+ integrity sha512-KKBU1VGYR7ORr3At5HAtUQ+TV3SzRCXmA/8OdDZiLDBIZxVyzXuztPjfLd3BV1PRAQGCMWWSHYhL0F8d5uHBDQ==
+ dependencies:
+ "@babel/types" "^7.28.5"
+
+"@babel/plugin-transform-arrow-functions@^7.27.1":
version "7.27.1"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.27.1.tgz#6e2061067ba3ab0266d834a9f94811196f2aba9a"
integrity sha512-8Z4TGic6xW70FKThA5HYEKKyBpOOsucTOD1DjU3fZxDg+K3zBJcXMFnt/4yQiZnf5+MiOMSXQ9PaEK/Ilh1DeA==
@@ -749,6 +793,19 @@
"@babel/types" "^7.28.4"
debug "^4.3.1"
+"@babel/traverse@^7.28.5":
+ version "7.28.5"
+ resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.28.5.tgz#450cab9135d21a7a2ca9d2d35aa05c20e68c360b"
+ integrity sha512-TCCj4t55U90khlYkVV/0TfkJkAkUg3jZFA3Neb7unZT8CPok7iiRfaX0F+WnqWqt7OxhOn0uBKXCw4lbL8W0aQ==
+ dependencies:
+ "@babel/code-frame" "^7.27.1"
+ "@babel/generator" "^7.28.5"
+ "@babel/helper-globals" "^7.28.0"
+ "@babel/parser" "^7.28.5"
+ "@babel/template" "^7.27.2"
+ "@babel/types" "^7.28.5"
+ debug "^4.3.1"
+
"@babel/types@^7.0.0", "@babel/types@^7.20.7", "@babel/types@^7.21.3", "@babel/types@^7.27.1", "@babel/types@^7.28.2", "@babel/types@^7.28.4":
version "7.28.4"
resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.28.4.tgz#0a4e618f4c60a7cd6c11cb2d48060e4dbe38ac3a"
@@ -757,6 +814,14 @@
"@babel/helper-string-parser" "^7.27.1"
"@babel/helper-validator-identifier" "^7.27.1"
+"@babel/types@^7.28.5":
+ version "7.28.5"
+ resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.28.5.tgz#10fc405f60897c35f07e85493c932c7b5ca0592b"
+ integrity sha512-qQ5m48eI/MFLQ5PxQj4PFaprjyCTLI37ElWMmNs0K8Lk3dVeOdNpB3ks8jc7yM5CDmVC73eMVk/trk3fgmrUpA==
+ dependencies:
+ "@babel/helper-string-parser" "^7.27.1"
+ "@babel/helper-validator-identifier" "^7.28.5"
+
"@borewit/text-codec@^0.1.0":
version "0.1.1"
resolved "https://registry.yarnpkg.com/@borewit/text-codec/-/text-codec-0.1.1.tgz#7e7f27092473d5eabcffef693a849f2cc48431da"
@@ -1121,245 +1186,245 @@
resolved "https://registry.yarnpkg.com/@esbuild/aix-ppc64/-/aix-ppc64-0.21.5.tgz#c7184a326533fcdf1b8ee0733e21c713b975575f"
integrity sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==
-"@esbuild/aix-ppc64@0.25.10":
- version "0.25.10"
- resolved "https://registry.yarnpkg.com/@esbuild/aix-ppc64/-/aix-ppc64-0.25.10.tgz#ee6b7163a13528e099ecf562b972f2bcebe0aa97"
- integrity sha512-0NFWnA+7l41irNuaSVlLfgNT12caWJVLzp5eAVhZ0z1qpxbockccEt3s+149rE64VUI3Ml2zt8Nv5JVc4QXTsw==
+"@esbuild/aix-ppc64@0.25.11":
+ version "0.25.11"
+ resolved "https://registry.yarnpkg.com/@esbuild/aix-ppc64/-/aix-ppc64-0.25.11.tgz#2ae33300598132cc4cf580dbbb28d30fed3c5c49"
+ integrity sha512-Xt1dOL13m8u0WE8iplx9Ibbm+hFAO0GsU2P34UNoDGvZYkY8ifSiy6Zuc1lYxfG7svWE2fzqCUmFp5HCn51gJg==
"@esbuild/android-arm64@0.21.5":
version "0.21.5"
resolved "https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.21.5.tgz#09d9b4357780da9ea3a7dfb833a1f1ff439b4052"
integrity sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==
-"@esbuild/android-arm64@0.25.10":
- version "0.25.10"
- resolved "https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.25.10.tgz#115fc76631e82dd06811bfaf2db0d4979c16e2cb"
- integrity sha512-LSQa7eDahypv/VO6WKohZGPSJDq5OVOo3UoFR1E4t4Gj1W7zEQMUhI+lo81H+DtB+kP+tDgBp+M4oNCwp6kffg==
+"@esbuild/android-arm64@0.25.11":
+ version "0.25.11"
+ resolved "https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.25.11.tgz#927708b3db5d739d6cb7709136924cc81bec9b03"
+ integrity sha512-9slpyFBc4FPPz48+f6jyiXOx/Y4v34TUeDDXJpZqAWQn/08lKGeD8aDp9TMn9jDz2CiEuHwfhRmGBvpnd/PWIQ==
"@esbuild/android-arm@0.21.5":
version "0.21.5"
resolved "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.21.5.tgz#9b04384fb771926dfa6d7ad04324ecb2ab9b2e28"
integrity sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==
-"@esbuild/android-arm@0.25.10":
- version "0.25.10"
- resolved "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.25.10.tgz#8d5811912da77f615398611e5bbc1333fe321aa9"
- integrity sha512-dQAxF1dW1C3zpeCDc5KqIYuZ1tgAdRXNoZP7vkBIRtKZPYe2xVr/d3SkirklCHudW1B45tGiUlz2pUWDfbDD4w==
+"@esbuild/android-arm@0.25.11":
+ version "0.25.11"
+ resolved "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.25.11.tgz#571f94e7f4068957ec4c2cfb907deae3d01b55ae"
+ integrity sha512-uoa7dU+Dt3HYsethkJ1k6Z9YdcHjTrSb5NUy66ZfZaSV8hEYGD5ZHbEMXnqLFlbBflLsl89Zke7CAdDJ4JI+Gg==
"@esbuild/android-x64@0.21.5":
version "0.21.5"
resolved "https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.21.5.tgz#29918ec2db754cedcb6c1b04de8cd6547af6461e"
integrity sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==
-"@esbuild/android-x64@0.25.10":
- version "0.25.10"
- resolved "https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.25.10.tgz#e3e96516b2d50d74105bb92594c473e30ddc16b1"
- integrity sha512-MiC9CWdPrfhibcXwr39p9ha1x0lZJ9KaVfvzA0Wxwz9ETX4v5CHfF09bx935nHlhi+MxhA63dKRRQLiVgSUtEg==
+"@esbuild/android-x64@0.25.11":
+ version "0.25.11"
+ resolved "https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.25.11.tgz#8a3bf5cae6c560c7ececa3150b2bde76e0fb81e6"
+ integrity sha512-Sgiab4xBjPU1QoPEIqS3Xx+R2lezu0LKIEcYe6pftr56PqPygbB7+szVnzoShbx64MUupqoE0KyRlN7gezbl8g==
"@esbuild/darwin-arm64@0.21.5":
version "0.21.5"
resolved "https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.21.5.tgz#e495b539660e51690f3928af50a76fb0a6ccff2a"
integrity sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==
-"@esbuild/darwin-arm64@0.25.10":
- version "0.25.10"
- resolved "https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.25.10.tgz#6af6bb1d05887dac515de1b162b59dc71212ed76"
- integrity sha512-JC74bdXcQEpW9KkV326WpZZjLguSZ3DfS8wrrvPMHgQOIEIG/sPXEN/V8IssoJhbefLRcRqw6RQH2NnpdprtMA==
+"@esbuild/darwin-arm64@0.25.11":
+ version "0.25.11"
+ resolved "https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.25.11.tgz#0a678c4ac4bf8717e67481e1a797e6c152f93c84"
+ integrity sha512-VekY0PBCukppoQrycFxUqkCojnTQhdec0vevUL/EDOCnXd9LKWqD/bHwMPzigIJXPhC59Vd1WFIL57SKs2mg4w==
"@esbuild/darwin-x64@0.21.5":
version "0.21.5"
resolved "https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.21.5.tgz#c13838fa57372839abdddc91d71542ceea2e1e22"
integrity sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==
-"@esbuild/darwin-x64@0.25.10":
- version "0.25.10"
- resolved "https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.25.10.tgz#99ae82347fbd336fc2d28ffd4f05694e6e5b723d"
- integrity sha512-tguWg1olF6DGqzws97pKZ8G2L7Ig1vjDmGTwcTuYHbuU6TTjJe5FXbgs5C1BBzHbJ2bo1m3WkQDbWO2PvamRcg==
+"@esbuild/darwin-x64@0.25.11":
+ version "0.25.11"
+ resolved "https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.25.11.tgz#70f5e925a30c8309f1294d407a5e5e002e0315fe"
+ integrity sha512-+hfp3yfBalNEpTGp9loYgbknjR695HkqtY3d3/JjSRUyPg/xd6q+mQqIb5qdywnDxRZykIHs3axEqU6l1+oWEQ==
"@esbuild/freebsd-arm64@0.21.5":
version "0.21.5"
resolved "https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.21.5.tgz#646b989aa20bf89fd071dd5dbfad69a3542e550e"
integrity sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==
-"@esbuild/freebsd-arm64@0.25.10":
- version "0.25.10"
- resolved "https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.25.10.tgz#0c6d5558a6322b0bdb17f7025c19bd7d2359437d"
- integrity sha512-3ZioSQSg1HT2N05YxeJWYR+Libe3bREVSdWhEEgExWaDtyFbbXWb49QgPvFH8u03vUPX10JhJPcz7s9t9+boWg==
+"@esbuild/freebsd-arm64@0.25.11":
+ version "0.25.11"
+ resolved "https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.25.11.tgz#4ec1db687c5b2b78b44148025da9632397553e8a"
+ integrity sha512-CmKjrnayyTJF2eVuO//uSjl/K3KsMIeYeyN7FyDBjsR3lnSJHaXlVoAK8DZa7lXWChbuOk7NjAc7ygAwrnPBhA==
"@esbuild/freebsd-x64@0.21.5":
version "0.21.5"
resolved "https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.21.5.tgz#aa615cfc80af954d3458906e38ca22c18cf5c261"
integrity sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==
-"@esbuild/freebsd-x64@0.25.10":
- version "0.25.10"
- resolved "https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.25.10.tgz#8c35873fab8c0857a75300a3dcce4324ca0b9844"
- integrity sha512-LLgJfHJk014Aa4anGDbh8bmI5Lk+QidDmGzuC2D+vP7mv/GeSN+H39zOf7pN5N8p059FcOfs2bVlrRr4SK9WxA==
+"@esbuild/freebsd-x64@0.25.11":
+ version "0.25.11"
+ resolved "https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.25.11.tgz#4c81abd1b142f1e9acfef8c5153d438ca53f44bb"
+ integrity sha512-Dyq+5oscTJvMaYPvW3x3FLpi2+gSZTCE/1ffdwuM6G1ARang/mb3jvjxs0mw6n3Lsw84ocfo9CrNMqc5lTfGOw==
"@esbuild/linux-arm64@0.21.5":
version "0.21.5"
resolved "https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.21.5.tgz#70ac6fa14f5cb7e1f7f887bcffb680ad09922b5b"
integrity sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==
-"@esbuild/linux-arm64@0.25.10":
- version "0.25.10"
- resolved "https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.25.10.tgz#3edc2f87b889a15b4cedaf65f498c2bed7b16b90"
- integrity sha512-5luJWN6YKBsawd5f9i4+c+geYiVEw20FVW5x0v1kEMWNq8UctFjDiMATBxLvmmHA4bf7F6hTRaJgtghFr9iziQ==
+"@esbuild/linux-arm64@0.25.11":
+ version "0.25.11"
+ resolved "https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.25.11.tgz#69517a111acfc2b93aa0fb5eaeb834c0202ccda5"
+ integrity sha512-Qr8AzcplUhGvdyUF08A1kHU3Vr2O88xxP0Tm8GcdVOUm25XYcMPp2YqSVHbLuXzYQMf9Bh/iKx7YPqECs6ffLA==
"@esbuild/linux-arm@0.21.5":
version "0.21.5"
resolved "https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.21.5.tgz#fc6fd11a8aca56c1f6f3894f2bea0479f8f626b9"
integrity sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==
-"@esbuild/linux-arm@0.25.10":
- version "0.25.10"
- resolved "https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.25.10.tgz#86501cfdfb3d110176d80c41b27ed4611471cde7"
- integrity sha512-oR31GtBTFYCqEBALI9r6WxoU/ZofZl962pouZRTEYECvNF/dtXKku8YXcJkhgK/beU+zedXfIzHijSRapJY3vg==
+"@esbuild/linux-arm@0.25.11":
+ version "0.25.11"
+ resolved "https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.25.11.tgz#58dac26eae2dba0fac5405052b9002dac088d38f"
+ integrity sha512-TBMv6B4kCfrGJ8cUPo7vd6NECZH/8hPpBHHlYI3qzoYFvWu2AdTvZNuU/7hsbKWqu/COU7NIK12dHAAqBLLXgw==
"@esbuild/linux-ia32@0.21.5":
version "0.21.5"
resolved "https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.21.5.tgz#3271f53b3f93e3d093d518d1649d6d68d346ede2"
integrity sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==
-"@esbuild/linux-ia32@0.25.10":
- version "0.25.10"
- resolved "https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.25.10.tgz#e6589877876142537c6864680cd5d26a622b9d97"
- integrity sha512-NrSCx2Kim3EnnWgS4Txn0QGt0Xipoumb6z6sUtl5bOEZIVKhzfyp/Lyw4C1DIYvzeW/5mWYPBFJU3a/8Yr75DQ==
+"@esbuild/linux-ia32@0.25.11":
+ version "0.25.11"
+ resolved "https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.25.11.tgz#b89d4efe9bdad46ba944f0f3b8ddd40834268c2b"
+ integrity sha512-TmnJg8BMGPehs5JKrCLqyWTVAvielc615jbkOirATQvWWB1NMXY77oLMzsUjRLa0+ngecEmDGqt5jiDC6bfvOw==
"@esbuild/linux-loong64@0.21.5":
version "0.21.5"
resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.21.5.tgz#ed62e04238c57026aea831c5a130b73c0f9f26df"
integrity sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==
-"@esbuild/linux-loong64@0.25.10":
- version "0.25.10"
- resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.25.10.tgz#11119e18781f136d8083ea10eb6be73db7532de8"
- integrity sha512-xoSphrd4AZda8+rUDDfD9J6FUMjrkTz8itpTITM4/xgerAZZcFW7Dv+sun7333IfKxGG8gAq+3NbfEMJfiY+Eg==
+"@esbuild/linux-loong64@0.25.11":
+ version "0.25.11"
+ resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.25.11.tgz#11f603cb60ad14392c3f5c94d64b3cc8b630fbeb"
+ integrity sha512-DIGXL2+gvDaXlaq8xruNXUJdT5tF+SBbJQKbWy/0J7OhU8gOHOzKmGIlfTTl6nHaCOoipxQbuJi7O++ldrxgMw==
"@esbuild/linux-mips64el@0.21.5":
version "0.21.5"
resolved "https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.21.5.tgz#e79b8eb48bf3b106fadec1ac8240fb97b4e64cbe"
integrity sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==
-"@esbuild/linux-mips64el@0.25.10":
- version "0.25.10"
- resolved "https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.25.10.tgz#3052f5436b0c0c67a25658d5fc87f045e7def9e6"
- integrity sha512-ab6eiuCwoMmYDyTnyptoKkVS3k8fy/1Uvq7Dj5czXI6DF2GqD2ToInBI0SHOp5/X1BdZ26RKc5+qjQNGRBelRA==
+"@esbuild/linux-mips64el@0.25.11":
+ version "0.25.11"
+ resolved "https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.25.11.tgz#b7d447ff0676b8ab247d69dac40a5cf08e5eeaf5"
+ integrity sha512-Osx1nALUJu4pU43o9OyjSCXokFkFbyzjXb6VhGIJZQ5JZi8ylCQ9/LFagolPsHtgw6himDSyb5ETSfmp4rpiKQ==
"@esbuild/linux-ppc64@0.21.5":
version "0.21.5"
resolved "https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.21.5.tgz#5f2203860a143b9919d383ef7573521fb154c3e4"
integrity sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==
-"@esbuild/linux-ppc64@0.25.10":
- version "0.25.10"
- resolved "https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.25.10.tgz#2f098920ee5be2ce799f35e367b28709925a8744"
- integrity sha512-NLinzzOgZQsGpsTkEbdJTCanwA5/wozN9dSgEl12haXJBzMTpssebuXR42bthOF3z7zXFWH1AmvWunUCkBE4EA==
+"@esbuild/linux-ppc64@0.25.11":
+ version "0.25.11"
+ resolved "https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.25.11.tgz#b3a28ed7cc252a61b07ff7c8fd8a984ffd3a2f74"
+ integrity sha512-nbLFgsQQEsBa8XSgSTSlrnBSrpoWh7ioFDUmwo158gIm5NNP+17IYmNWzaIzWmgCxq56vfr34xGkOcZ7jX6CPw==
"@esbuild/linux-riscv64@0.21.5":
version "0.21.5"
resolved "https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.21.5.tgz#07bcafd99322d5af62f618cb9e6a9b7f4bb825dc"
integrity sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==
-"@esbuild/linux-riscv64@0.25.10":
- version "0.25.10"
- resolved "https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.25.10.tgz#fa51d7fd0a22a62b51b4b94b405a3198cf7405dd"
- integrity sha512-FE557XdZDrtX8NMIeA8LBJX3dC2M8VGXwfrQWU7LB5SLOajfJIxmSdyL/gU1m64Zs9CBKvm4UAuBp5aJ8OgnrA==
+"@esbuild/linux-riscv64@0.25.11":
+ version "0.25.11"
+ resolved "https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.25.11.tgz#ce75b08f7d871a75edcf4d2125f50b21dc9dc273"
+ integrity sha512-HfyAmqZi9uBAbgKYP1yGuI7tSREXwIb438q0nqvlpxAOs3XnZ8RsisRfmVsgV486NdjD7Mw2UrFSw51lzUk1ww==
"@esbuild/linux-s390x@0.21.5":
version "0.21.5"
resolved "https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.21.5.tgz#b7ccf686751d6a3e44b8627ababc8be3ef62d8de"
integrity sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==
-"@esbuild/linux-s390x@0.25.10":
- version "0.25.10"
- resolved "https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.25.10.tgz#a27642e36fc282748fdb38954bd3ef4f85791e8a"
- integrity sha512-3BBSbgzuB9ajLoVZk0mGu+EHlBwkusRmeNYdqmznmMc9zGASFjSsxgkNsqmXugpPk00gJ0JNKh/97nxmjctdew==
+"@esbuild/linux-s390x@0.25.11":
+ version "0.25.11"
+ resolved "https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.25.11.tgz#cd08f6c73b6b6ff9ccdaabbd3ff6ad3dca99c263"
+ integrity sha512-HjLqVgSSYnVXRisyfmzsH6mXqyvj0SA7pG5g+9W7ESgwA70AXYNpfKBqh1KbTxmQVaYxpzA/SvlB9oclGPbApw==
"@esbuild/linux-x64@0.21.5":
version "0.21.5"
resolved "https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.21.5.tgz#6d8f0c768e070e64309af8004bb94e68ab2bb3b0"
integrity sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==
-"@esbuild/linux-x64@0.25.10":
- version "0.25.10"
- resolved "https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.25.10.tgz#9d9b09c0033d17529570ced6d813f98315dfe4e9"
- integrity sha512-QSX81KhFoZGwenVyPoberggdW1nrQZSvfVDAIUXr3WqLRZGZqWk/P4T8p2SP+de2Sr5HPcvjhcJzEiulKgnxtA==
+"@esbuild/linux-x64@0.25.11":
+ version "0.25.11"
+ resolved "https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.25.11.tgz#3c3718af31a95d8946ebd3c32bb1e699bdf74910"
+ integrity sha512-HSFAT4+WYjIhrHxKBwGmOOSpphjYkcswF449j6EjsjbinTZbp8PJtjsVK1XFJStdzXdy/jaddAep2FGY+wyFAQ==
-"@esbuild/netbsd-arm64@0.25.10":
- version "0.25.10"
- resolved "https://registry.yarnpkg.com/@esbuild/netbsd-arm64/-/netbsd-arm64-0.25.10.tgz#25c09a659c97e8af19e3f2afd1c9190435802151"
- integrity sha512-AKQM3gfYfSW8XRk8DdMCzaLUFB15dTrZfnX8WXQoOUpUBQ+NaAFCP1kPS/ykbbGYz7rxn0WS48/81l9hFl3u4A==
+"@esbuild/netbsd-arm64@0.25.11":
+ version "0.25.11"
+ resolved "https://registry.yarnpkg.com/@esbuild/netbsd-arm64/-/netbsd-arm64-0.25.11.tgz#b4c767082401e3a4e8595fe53c47cd7f097c8077"
+ integrity sha512-hr9Oxj1Fa4r04dNpWr3P8QKVVsjQhqrMSUzZzf+LZcYjZNqhA3IAfPQdEh1FLVUJSiu6sgAwp3OmwBfbFgG2Xg==
"@esbuild/netbsd-x64@0.21.5":
version "0.21.5"
resolved "https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.21.5.tgz#bbe430f60d378ecb88decb219c602667387a6047"
integrity sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==
-"@esbuild/netbsd-x64@0.25.10":
- version "0.25.10"
- resolved "https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.25.10.tgz#7fa5f6ffc19be3a0f6f5fd32c90df3dc2506937a"
- integrity sha512-7RTytDPGU6fek/hWuN9qQpeGPBZFfB4zZgcz2VK2Z5VpdUxEI8JKYsg3JfO0n/Z1E/6l05n0unDCNc4HnhQGig==
+"@esbuild/netbsd-x64@0.25.11":
+ version "0.25.11"
+ resolved "https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.25.11.tgz#f2a930458ed2941d1f11ebc34b9c7d61f7a4d034"
+ integrity sha512-u7tKA+qbzBydyj0vgpu+5h5AeudxOAGncb8N6C9Kh1N4n7wU1Xw1JDApsRjpShRpXRQlJLb9wY28ELpwdPcZ7A==
-"@esbuild/openbsd-arm64@0.25.10":
- version "0.25.10"
- resolved "https://registry.yarnpkg.com/@esbuild/openbsd-arm64/-/openbsd-arm64-0.25.10.tgz#8faa6aa1afca0c6d024398321d6cb1c18e72a1c3"
- integrity sha512-5Se0VM9Wtq797YFn+dLimf2Zx6McttsH2olUBsDml+lm0GOCRVebRWUvDtkY4BWYv/3NgzS8b/UM3jQNh5hYyw==
+"@esbuild/openbsd-arm64@0.25.11":
+ version "0.25.11"
+ resolved "https://registry.yarnpkg.com/@esbuild/openbsd-arm64/-/openbsd-arm64-0.25.11.tgz#b4ae93c75aec48bc1e8a0154957a05f0641f2dad"
+ integrity sha512-Qq6YHhayieor3DxFOoYM1q0q1uMFYb7cSpLD2qzDSvK1NAvqFi8Xgivv0cFC6J+hWVw2teCYltyy9/m/14ryHg==
"@esbuild/openbsd-x64@0.21.5":
version "0.21.5"
resolved "https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.21.5.tgz#99d1cf2937279560d2104821f5ccce220cb2af70"
integrity sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==
-"@esbuild/openbsd-x64@0.25.10":
- version "0.25.10"
- resolved "https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.25.10.tgz#a42979b016f29559a8453d32440d3c8cd420af5e"
- integrity sha512-XkA4frq1TLj4bEMB+2HnI0+4RnjbuGZfet2gs/LNs5Hc7D89ZQBHQ0gL2ND6Lzu1+QVkjp3x1gIcPKzRNP8bXw==
+"@esbuild/openbsd-x64@0.25.11":
+ version "0.25.11"
+ resolved "https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.25.11.tgz#b42863959c8dcf9b01581522e40012d2c70045e2"
+ integrity sha512-CN+7c++kkbrckTOz5hrehxWN7uIhFFlmS/hqziSFVWpAzpWrQoAG4chH+nN3Be+Kzv/uuo7zhX716x3Sn2Jduw==
-"@esbuild/openharmony-arm64@0.25.10":
- version "0.25.10"
- resolved "https://registry.yarnpkg.com/@esbuild/openharmony-arm64/-/openharmony-arm64-0.25.10.tgz#fd87bfeadd7eeb3aa384bbba907459ffa3197cb1"
- integrity sha512-AVTSBhTX8Y/Fz6OmIVBip9tJzZEUcY8WLh7I59+upa5/GPhh2/aM6bvOMQySspnCCHvFi79kMtdJS1w0DXAeag==
+"@esbuild/openharmony-arm64@0.25.11":
+ version "0.25.11"
+ resolved "https://registry.yarnpkg.com/@esbuild/openharmony-arm64/-/openharmony-arm64-0.25.11.tgz#b2e717141c8fdf6bddd4010f0912e6b39e1640f1"
+ integrity sha512-rOREuNIQgaiR+9QuNkbkxubbp8MSO9rONmwP5nKncnWJ9v5jQ4JxFnLu4zDSRPf3x4u+2VN4pM4RdyIzDty/wQ==
"@esbuild/sunos-x64@0.21.5":
version "0.21.5"
resolved "https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.21.5.tgz#08741512c10d529566baba837b4fe052c8f3487b"
integrity sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==
-"@esbuild/sunos-x64@0.25.10":
- version "0.25.10"
- resolved "https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.25.10.tgz#3a18f590e36cb78ae7397976b760b2b8c74407f4"
- integrity sha512-fswk3XT0Uf2pGJmOpDB7yknqhVkJQkAQOcW/ccVOtfx05LkbWOaRAtn5SaqXypeKQra1QaEa841PgrSL9ubSPQ==
+"@esbuild/sunos-x64@0.25.11":
+ version "0.25.11"
+ resolved "https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.25.11.tgz#9fbea1febe8778927804828883ec0f6dd80eb244"
+ integrity sha512-nq2xdYaWxyg9DcIyXkZhcYulC6pQ2FuCgem3LI92IwMgIZ69KHeY8T4Y88pcwoLIjbed8n36CyKoYRDygNSGhA==
"@esbuild/win32-arm64@0.21.5":
version "0.21.5"
resolved "https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.21.5.tgz#675b7385398411240735016144ab2e99a60fc75d"
integrity sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==
-"@esbuild/win32-arm64@0.25.10":
- version "0.25.10"
- resolved "https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.25.10.tgz#e71741a251e3fd971408827a529d2325551f530c"
- integrity sha512-ah+9b59KDTSfpaCg6VdJoOQvKjI33nTaQr4UluQwW7aEwZQsbMCfTmfEO4VyewOxx4RaDT/xCy9ra2GPWmO7Kw==
+"@esbuild/win32-arm64@0.25.11":
+ version "0.25.11"
+ resolved "https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.25.11.tgz#501539cedb24468336073383989a7323005a8935"
+ integrity sha512-3XxECOWJq1qMZ3MN8srCJ/QfoLpL+VaxD/WfNRm1O3B4+AZ/BnLVgFbUV3eiRYDMXetciH16dwPbbHqwe1uU0Q==
"@esbuild/win32-ia32@0.21.5":
version "0.21.5"
resolved "https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.21.5.tgz#1bfc3ce98aa6ca9a0969e4d2af72144c59c1193b"
integrity sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==
-"@esbuild/win32-ia32@0.25.10":
- version "0.25.10"
- resolved "https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.25.10.tgz#c6f010b5d3b943d8901a0c87ea55f93b8b54bf94"
- integrity sha512-QHPDbKkrGO8/cz9LKVnJU22HOi4pxZnZhhA2HYHez5Pz4JeffhDjf85E57Oyco163GnzNCVkZK0b/n4Y0UHcSw==
+"@esbuild/win32-ia32@0.25.11":
+ version "0.25.11"
+ resolved "https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.25.11.tgz#8ac7229aa82cef8f16ffb58f1176a973a7a15343"
+ integrity sha512-3ukss6gb9XZ8TlRyJlgLn17ecsK4NSQTmdIXRASVsiS2sQ6zPPZklNJT5GR5tE/MUarymmy8kCEf5xPCNCqVOA==
"@esbuild/win32-x64@0.21.5":
version "0.21.5"
resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.21.5.tgz#acad351d582d157bb145535db2a6ff53dd514b5c"
integrity sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==
-"@esbuild/win32-x64@0.25.10":
- version "0.25.10"
- resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.25.10.tgz#e4b3e255a1b4aea84f6e1d2ae0b73f826c3785bd"
- integrity sha512-9KpxSVFCu0iK1owoez6aC/s/EdUQLDN3adTxGCqxMVhrPDj6bt5dbrHDXUuq+Bs2vATFBBrQS5vdQ/Ed2P+nbw==
+"@esbuild/win32-x64@0.25.11":
+ version "0.25.11"
+ resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.25.11.tgz#5ecda6f3fe138b7e456f4e429edde33c823f392f"
+ integrity sha512-D7Hpz6A2L4hzsRpPaCYkQnGOotdUpDzSGRIv9I+1ITdHROSFUWW95ZPZWQmGka1Fg7W3zFJowyn9WGwMJ0+KPA==
"@eslint-community/eslint-utils@^4.2.0", "@eslint-community/eslint-utils@^4.4.0":
version "4.9.0"
@@ -4646,15 +4711,15 @@ electron-updater@^6.6.2:
semver "^7.6.3"
tiny-typed-emitter "^2.1.0"
-electron-vite@^3.1.0:
- version "3.1.0"
- resolved "https://registry.yarnpkg.com/electron-vite/-/electron-vite-3.1.0.tgz#1784907a83d23c6c8093ec68b8e414a74d814385"
- integrity sha512-M7aAzaRvSl5VO+6KN4neJCYLHLpF/iWo5ztchI/+wMxIieDZQqpbCYfaEHHHPH6eupEzfvZdLYdPdmvGqoVe0Q==
+electron-vite@^4.0.1:
+ version "4.0.1"
+ resolved "https://registry.yarnpkg.com/electron-vite/-/electron-vite-4.0.1.tgz#6cdf798f842c255779983ccadd06b3d475c02f57"
+ integrity sha512-QqacJbA8f1pmwUTqki1qLL5vIBaOQmeq13CZZefZ3r3vKVaIoC7cpoTgE+KPKxJDFTax+iFZV0VYvLVWPiQ8Aw==
dependencies:
- "@babel/core" "^7.26.10"
- "@babel/plugin-transform-arrow-functions" "^7.25.9"
+ "@babel/core" "^7.27.7"
+ "@babel/plugin-transform-arrow-functions" "^7.27.1"
cac "^6.7.14"
- esbuild "^0.25.1"
+ esbuild "^0.25.5"
magic-string "^0.30.17"
picocolors "^1.1.1"
@@ -4900,37 +4965,37 @@ esbuild@^0.21.3:
"@esbuild/win32-ia32" "0.21.5"
"@esbuild/win32-x64" "0.21.5"
-esbuild@^0.25.1:
- version "0.25.10"
- resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.25.10.tgz#37f5aa5cd14500f141be121c01b096ca83ac34a9"
- integrity sha512-9RiGKvCwaqxO2owP61uQ4BgNborAQskMR6QusfWzQqv7AZOg5oGehdY2pRJMTKuwxd1IDBP4rSbI5lHzU7SMsQ==
+esbuild@^0.25.5:
+ version "0.25.11"
+ resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.25.11.tgz#0f31b82f335652580f75ef6897bba81962d9ae3d"
+ integrity sha512-KohQwyzrKTQmhXDW1PjCv3Tyspn9n5GcY2RTDqeORIdIJY8yKIF7sTSopFmn/wpMPW4rdPXI0UE5LJLuq3bx0Q==
optionalDependencies:
- "@esbuild/aix-ppc64" "0.25.10"
- "@esbuild/android-arm" "0.25.10"
- "@esbuild/android-arm64" "0.25.10"
- "@esbuild/android-x64" "0.25.10"
- "@esbuild/darwin-arm64" "0.25.10"
- "@esbuild/darwin-x64" "0.25.10"
- "@esbuild/freebsd-arm64" "0.25.10"
- "@esbuild/freebsd-x64" "0.25.10"
- "@esbuild/linux-arm" "0.25.10"
- "@esbuild/linux-arm64" "0.25.10"
- "@esbuild/linux-ia32" "0.25.10"
- "@esbuild/linux-loong64" "0.25.10"
- "@esbuild/linux-mips64el" "0.25.10"
- "@esbuild/linux-ppc64" "0.25.10"
- "@esbuild/linux-riscv64" "0.25.10"
- "@esbuild/linux-s390x" "0.25.10"
- "@esbuild/linux-x64" "0.25.10"
- "@esbuild/netbsd-arm64" "0.25.10"
- "@esbuild/netbsd-x64" "0.25.10"
- "@esbuild/openbsd-arm64" "0.25.10"
- "@esbuild/openbsd-x64" "0.25.10"
- "@esbuild/openharmony-arm64" "0.25.10"
- "@esbuild/sunos-x64" "0.25.10"
- "@esbuild/win32-arm64" "0.25.10"
- "@esbuild/win32-ia32" "0.25.10"
- "@esbuild/win32-x64" "0.25.10"
+ "@esbuild/aix-ppc64" "0.25.11"
+ "@esbuild/android-arm" "0.25.11"
+ "@esbuild/android-arm64" "0.25.11"
+ "@esbuild/android-x64" "0.25.11"
+ "@esbuild/darwin-arm64" "0.25.11"
+ "@esbuild/darwin-x64" "0.25.11"
+ "@esbuild/freebsd-arm64" "0.25.11"
+ "@esbuild/freebsd-x64" "0.25.11"
+ "@esbuild/linux-arm" "0.25.11"
+ "@esbuild/linux-arm64" "0.25.11"
+ "@esbuild/linux-ia32" "0.25.11"
+ "@esbuild/linux-loong64" "0.25.11"
+ "@esbuild/linux-mips64el" "0.25.11"
+ "@esbuild/linux-ppc64" "0.25.11"
+ "@esbuild/linux-riscv64" "0.25.11"
+ "@esbuild/linux-s390x" "0.25.11"
+ "@esbuild/linux-x64" "0.25.11"
+ "@esbuild/netbsd-arm64" "0.25.11"
+ "@esbuild/netbsd-x64" "0.25.11"
+ "@esbuild/openbsd-arm64" "0.25.11"
+ "@esbuild/openbsd-x64" "0.25.11"
+ "@esbuild/openharmony-arm64" "0.25.11"
+ "@esbuild/sunos-x64" "0.25.11"
+ "@esbuild/win32-arm64" "0.25.11"
+ "@esbuild/win32-ia32" "0.25.11"
+ "@esbuild/win32-x64" "0.25.11"
escalade@^3.1.1, escalade@^3.2.0:
version "3.2.0"
@@ -8858,10 +8923,10 @@ vite-plugin-svgr@^4.5.0:
"@svgr/core" "^8.1.0"
"@svgr/plugin-jsx" "^8.1.0"
-vite@5.4.20:
- version "5.4.20"
- resolved "https://registry.yarnpkg.com/vite/-/vite-5.4.20.tgz#3267a5e03f21212f44edfd72758138e8fcecd76a"
- integrity sha512-j3lYzGC3P+B5Yfy/pfKNgVEg4+UtcIJcVRt2cDjIOmhLourAqPqf8P7acgxeiSgUB7E3p2P8/3gNIgDLpwzs4g==
+vite@5.4.21:
+ version "5.4.21"
+ resolved "https://registry.yarnpkg.com/vite/-/vite-5.4.21.tgz#84a4f7c5d860b071676d39ba513c0d598fdc7027"
+ integrity sha512-o5a9xKjbtuhY6Bi5S3+HvbRERmouabWbyUcpXXUA1u+GNUKoROi9byOJ8M0nHbHYHkYICiMlqxkg1KkYmm25Sw==
dependencies:
esbuild "^0.21.3"
postcss "^8.4.43"
From 54632bd06d2cec7df82e23c8d74380b5bfb023a4 Mon Sep 17 00:00:00 2001
From: Chubby Granny Chaser
Date: Mon, 27 Oct 2025 09:16:55 +0000
Subject: [PATCH 16/26] ci: testing windows 2019
---
.github/workflows/build.yml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index c269359b..5062c7ad 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -10,7 +10,7 @@ jobs:
build:
strategy:
matrix:
- os: [windows-2019, ubuntu-latest]
+ os: [windows-2022, ubuntu-latest]
fail-fast: false
runs-on: ${{ matrix.os }}
From eb006c5e9097e259c7066a48ea1f205043148173 Mon Sep 17 00:00:00 2001
From: Chubby Granny Chaser
Date: Mon, 27 Oct 2025 09:51:11 +0000
Subject: [PATCH 17/26] ci: testing windows 2019
---
.github/workflows/build.yml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 5062c7ad..d6bc0785 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -10,7 +10,7 @@ jobs:
build:
strategy:
matrix:
- os: [windows-2022, ubuntu-latest]
+ os: [self-hosted, ubuntu-latest]
fail-fast: false
runs-on: ${{ matrix.os }}
From 549e1270ee12121ad6fa3351a8c31cfb23a96e6c Mon Sep 17 00:00:00 2001
From: Chubby Granny Chaser
Date: Mon, 27 Oct 2025 09:56:45 +0000
Subject: [PATCH 18/26] ci: testing windows
From 1effa8031164d47d96783b5cdeeee2be1d09294d Mon Sep 17 00:00:00 2001
From: Chubby Granny Chaser
Date: Mon, 27 Oct 2025 10:35:20 +0000
Subject: [PATCH 19/26] ci: testing windows
---
.github/workflows/build.yml | 191 ++++++++++++++++++++----------------
1 file changed, 108 insertions(+), 83 deletions(-)
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index d6bc0785..ebceea1e 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -7,93 +7,118 @@ concurrency:
on: pull_request
jobs:
- build:
- strategy:
- matrix:
- os: [self-hosted, ubuntu-latest]
- fail-fast: false
-
- runs-on: ${{ matrix.os }}
-
+ verify-openssl:
+ runs-on: windows-2022
steps:
- - name: Check out Git repository
+ - name: Check out repository
uses: actions/checkout@v4
- - name: Install Node.js
- uses: actions/setup-node@v4
- with:
- node-version: 20.18.3
-
- - name: Install dependencies
- run: yarn --frozen-lockfile
-
- - name: Install Python
- uses: actions/setup-python@v5
- with:
- python-version: 3.9
-
- - name: Install dependencies
- run: pip install -r requirements.txt
-
- - name: Build with cx_Freeze
- run: python python_rpc/setup.py build
-
- - name: Build Linux
- if: matrix.os == 'ubuntu-latest'
+ - name: Verify OpenSSL 1.1 DLLs exist
+ shell: pwsh
run: |
- yarn build:linux
- env:
- MAIN_VITE_API_URL: ${{ vars.MAIN_VITE_STAGING_API_URL }}
- MAIN_VITE_AUTH_URL: ${{ vars.MAIN_VITE_STAGING_AUTH_URL }}
- MAIN_VITE_CHECKOUT_URL: ${{ vars.MAIN_VITE_STAGING_CHECKOUT_URL }}
- MAIN_VITE_WS_URL: ${{ vars.MAIN_VITE_WS_STAGING_URL }}
- RENDERER_VITE_EXTERNAL_RESOURCES_URL: ${{ vars.EXTERNAL_RESOURCES_URL }}
- MAIN_VITE_EXTERNAL_RESOURCES_URL: ${{ vars.EXTERNAL_RESOURCES_URL }}
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}
- RENDERER_VITE_SENTRY_DSN: ${{ vars.SENTRY_DSN }}
- RENDERER_VITE_REAL_DEBRID_REFERRAL_ID: ${{ vars.RENDERER_VITE_REAL_DEBRID_REFERRAL_ID }}
- RENDERER_VITE_TORBOX_REFERRAL_CODE: ${{ vars.RENDERER_VITE_TORBOX_REFERRAL_CODE }}
+ $dll1 = "vendor/openssl-1.1/win64/libcrypto-1_1-x64.dll"
+ $dll2 = "vendor/openssl-1.1/win64/libssl-1_1-x64.dll"
- - name: Build Windows
- if: matrix.os == 'windows-2022'
- run: yarn build:win
- env:
- MAIN_VITE_API_URL: ${{ vars.MAIN_VITE_STAGING_API_URL }}
- MAIN_VITE_AUTH_URL: ${{ vars.MAIN_VITE_STAGING_AUTH_URL }}
- MAIN_VITE_CHECKOUT_URL: ${{ vars.MAIN_VITE_STAGING_CHECKOUT_URL }}
- MAIN_VITE_WS_URL: ${{ vars.MAIN_VITE_WS_STAGING_URL }}
- RENDERER_VITE_EXTERNAL_RESOURCES_URL: ${{ vars.EXTERNAL_RESOURCES_URL }}
- MAIN_VITE_EXTERNAL_RESOURCES_URL: ${{ vars.EXTERNAL_RESOURCES_URL }}
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}
- RENDERER_VITE_SENTRY_DSN: ${{ vars.SENTRY_DSN }}
- RENDERER_VITE_REAL_DEBRID_REFERRAL_ID: ${{ vars.RENDERER_VITE_REAL_DEBRID_REFERRAL_ID }}
- RENDERER_VITE_TORBOX_REFERRAL_CODE: ${{ vars.RENDERER_VITE_TORBOX_REFERRAL_CODE }}
+ $missing = @()
- - name: Upload build
- env:
- BRANCH_NAME: ${{ github.head_ref || github.ref_name }}
- S3_ENDPOINT: ${{ secrets.S3_ENDPOINT }}
- S3_ACCESS_KEY_ID: ${{ secrets.S3_ACCESS_KEY_ID }}
- S3_SECRET_ACCESS_KEY: ${{ secrets.S3_SECRET_ACCESS_KEY }}
- S3_BUILDS_BUCKET_NAME: ${{ secrets.S3_BUILDS_BUCKET_NAME }}
- BUILDS_URL: ${{ secrets.BUILDS_URL }}
- BUILD_WEBHOOK_URL: ${{ secrets.BUILD_WEBHOOK_URL }}
- GITHUB_ACTOR: ${{ github.actor }}
- run: node scripts/upload-build.cjs
+ if (-not (Test-Path $dll1)) { $missing += $dll1 }
+ if (-not (Test-Path $dll2)) { $missing += $dll2 }
- - name: Create artifact
- uses: actions/upload-artifact@v4
- with:
- name: Build-${{ matrix.os }}
- path: |
- dist/*-portable.exe
- dist/*.zip
- dist/*.dmg
- dist/*.deb
- dist/*.rpm
- dist/*.tar.gz
- dist/*.yml
- dist/*.blockmap
- dist/*.AppImage
+ if ($missing.Count -gt 0) {
+ Write-Error "Missing required OpenSSL 1.1 DLLs:`n$($missing -join "`n")"
+ exit 1
+ } else {
+ Write-Host "✅ Both OpenSSL 1.1 DLLs found"
+ }
+
+# jobs:
+# build:
+# strategy:
+# matrix:
+# os: [windows-2022, ubuntu-latest]
+# fail-fast: false
+
+# runs-on: ${{ matrix.os }}
+
+# steps:
+# - name: Check out Git repository
+# uses: actions/checkout@v4
+
+# - name: Install Node.js
+# uses: actions/setup-node@v4
+# with:
+# node-version: 20.18.3
+
+# - name: Install dependencies
+# run: yarn --frozen-lockfile
+
+# - name: Install Python
+# uses: actions/setup-python@v5
+# with:
+# python-version: 3.9
+
+# - name: Install dependencies
+# run: pip install -r requirements.txt
+
+# - name: Build with cx_Freeze
+# run: python python_rpc/setup.py build
+
+# - name: Build Linux
+# if: matrix.os == 'ubuntu-latest'
+# run: |
+# yarn build:linux
+# env:
+# MAIN_VITE_API_URL: ${{ vars.MAIN_VITE_STAGING_API_URL }}
+# MAIN_VITE_AUTH_URL: ${{ vars.MAIN_VITE_STAGING_AUTH_URL }}
+# MAIN_VITE_CHECKOUT_URL: ${{ vars.MAIN_VITE_STAGING_CHECKOUT_URL }}
+# MAIN_VITE_WS_URL: ${{ vars.MAIN_VITE_WS_STAGING_URL }}
+# RENDERER_VITE_EXTERNAL_RESOURCES_URL: ${{ vars.EXTERNAL_RESOURCES_URL }}
+# MAIN_VITE_EXTERNAL_RESOURCES_URL: ${{ vars.EXTERNAL_RESOURCES_URL }}
+# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
+# SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}
+# RENDERER_VITE_SENTRY_DSN: ${{ vars.SENTRY_DSN }}
+# RENDERER_VITE_REAL_DEBRID_REFERRAL_ID: ${{ vars.RENDERER_VITE_REAL_DEBRID_REFERRAL_ID }}
+# RENDERER_VITE_TORBOX_REFERRAL_CODE: ${{ vars.RENDERER_VITE_TORBOX_REFERRAL_CODE }}
+
+# - name: Build Windows
+# if: matrix.os == 'windows-2022'
+# run: yarn build:win
+# env:
+# MAIN_VITE_API_URL: ${{ vars.MAIN_VITE_STAGING_API_URL }}
+# MAIN_VITE_AUTH_URL: ${{ vars.MAIN_VITE_STAGING_AUTH_URL }}
+# MAIN_VITE_CHECKOUT_URL: ${{ vars.MAIN_VITE_STAGING_CHECKOUT_URL }}
+# MAIN_VITE_WS_URL: ${{ vars.MAIN_VITE_WS_STAGING_URL }}
+# RENDERER_VITE_EXTERNAL_RESOURCES_URL: ${{ vars.EXTERNAL_RESOURCES_URL }}
+# MAIN_VITE_EXTERNAL_RESOURCES_URL: ${{ vars.EXTERNAL_RESOURCES_URL }}
+# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
+# SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}
+# RENDERER_VITE_SENTRY_DSN: ${{ vars.SENTRY_DSN }}
+# RENDERER_VITE_REAL_DEBRID_REFERRAL_ID: ${{ vars.RENDERER_VITE_REAL_DEBRID_REFERRAL_ID }}
+# RENDERER_VITE_TORBOX_REFERRAL_CODE: ${{ vars.RENDERER_VITE_TORBOX_REFERRAL_CODE }}
+
+# - name: Upload build
+# env:
+# BRANCH_NAME: ${{ github.head_ref || github.ref_name }}
+# S3_ENDPOINT: ${{ secrets.S3_ENDPOINT }}
+# S3_ACCESS_KEY_ID: ${{ secrets.S3_ACCESS_KEY_ID }}
+# S3_SECRET_ACCESS_KEY: ${{ secrets.S3_SECRET_ACCESS_KEY }}
+# S3_BUILDS_BUCKET_NAME: ${{ secrets.S3_BUILDS_BUCKET_NAME }}
+# BUILDS_URL: ${{ secrets.BUILDS_URL }}
+# BUILD_WEBHOOK_URL: ${{ secrets.BUILD_WEBHOOK_URL }}
+# GITHUB_ACTOR: ${{ github.actor }}
+# run: node scripts/upload-build.cjs
+
+# - name: Create artifact
+# uses: actions/upload-artifact@v4
+# with:
+# name: Build-${{ matrix.os }}
+# path: |
+# dist/*-portable.exe
+# dist/*.zip
+# dist/*.dmg
+# dist/*.deb
+# dist/*.rpm
+# dist/*.tar.gz
+# dist/*.yml
+# dist/*.blockmap
+# dist/*.AppImage
From 3ab1e2957821ebf44bc80fca93c4689d730b6457 Mon Sep 17 00:00:00 2001
From: Chubby Granny Chaser
Date: Mon, 27 Oct 2025 10:47:19 +0000
Subject: [PATCH 20/26] ci: testing windows
---
.github/workflows/build.yml | 206 +++++++++++++++++-------------------
1 file changed, 100 insertions(+), 106 deletions(-)
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index ebceea1e..598b157f 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -1,124 +1,118 @@
name: Build
+on:
+ pull_request:
+
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
-on: pull_request
-
jobs:
- verify-openssl:
- runs-on: windows-2022
+ build:
+ strategy:
+ matrix:
+ os: [windows-2022, ubuntu-latest]
+ fail-fast: false
+
+ runs-on: ${{ matrix.os }}
+
steps:
- - name: Check out repository
+ - name: Check out Git repository
uses: actions/checkout@v4
- - name: Verify OpenSSL 1.1 DLLs exist
+ - name: Install Node.js
+ uses: actions/setup-node@v4
+ with:
+ node-version: 20.18.3
+
+ - name: Install dependencies
+ run: yarn --frozen-lockfile
+
+ - name: Install Python
+ uses: actions/setup-python@v5
+ with:
+ python-version: 3.9
+
+ - name: Install dependencies
+ run: pip install -r requirements.txt
+
+ - name: Download OpenSSL 1.1.1w installer
+ if: matrix.os == 'windows-2022'
shell: pwsh
run: |
- $dll1 = "vendor/openssl-1.1/win64/libcrypto-1_1-x64.dll"
- $dll2 = "vendor/openssl-1.1/win64/libssl-1_1-x64.dll"
+ $url = "https://slproweb.com/download/Win64OpenSSL-1_1_1w.exe"
+ $out = "$env:RUNNER_TEMP\Win64OpenSSL-1_1_1w.exe"
+ Invoke-WebRequest $url -OutFile $out
- $missing = @()
+ - name: Silent install OpenSSL 1.1.1w
+ if: matrix.os == 'windows-2022'
+ shell: pwsh
+ run: |
+ $installer = "$env:RUNNER_TEMP\Win64OpenSSL-1_1_1w.exe"
+ if (!(Test-Path $installer)) { Write-Error "Installer not found: $installer"; exit 1 }
+ $dest = Join-Path $env:ProgramFiles "OpenSSL-Win64"
+ $args = "/VERYSILENT /SUPPRESSMSGBOXES /SP- /NORESTART /DIR=""$dest"""
+ Start-Process -FilePath $installer -ArgumentList $args -Wait -NoNewWindow
- if (-not (Test-Path $dll1)) { $missing += $dll1 }
- if (-not (Test-Path $dll2)) { $missing += $dll2 }
+ - name: Build with cx_Freeze
+ run: python python_rpc/setup.py build
- if ($missing.Count -gt 0) {
- Write-Error "Missing required OpenSSL 1.1 DLLs:`n$($missing -join "`n")"
- exit 1
- } else {
- Write-Host "✅ Both OpenSSL 1.1 DLLs found"
- }
+ - name: Build Linux
+ if: matrix.os == 'ubuntu-latest'
+ run: |
+ yarn build:linux
+ env:
+ MAIN_VITE_API_URL: ${{ vars.MAIN_VITE_STAGING_API_URL }}
+ MAIN_VITE_AUTH_URL: ${{ vars.MAIN_VITE_STAGING_AUTH_URL }}
+ MAIN_VITE_CHECKOUT_URL: ${{ vars.MAIN_VITE_STAGING_CHECKOUT_URL }}
+ MAIN_VITE_WS_URL: ${{ vars.MAIN_VITE_WS_STAGING_URL }}
+ RENDERER_VITE_EXTERNAL_RESOURCES_URL: ${{ vars.EXTERNAL_RESOURCES_URL }}
+ MAIN_VITE_EXTERNAL_RESOURCES_URL: ${{ vars.EXTERNAL_RESOURCES_URL }}
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
+ SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}
+ RENDERER_VITE_SENTRY_DSN: ${{ vars.SENTRY_DSN }}
+ RENDERER_VITE_REAL_DEBRID_REFERRAL_ID: ${{ vars.RENDERER_VITE_REAL_DEBRID_REFERRAL_ID }}
+ RENDERER_VITE_TORBOX_REFERRAL_CODE: ${{ vars.RENDERER_VITE_TORBOX_REFERRAL_CODE }}
-# jobs:
-# build:
-# strategy:
-# matrix:
-# os: [windows-2022, ubuntu-latest]
-# fail-fast: false
+ - name: Build Windows
+ if: matrix.os == 'windows-2022'
+ run: yarn build:win
+ env:
+ MAIN_VITE_API_URL: ${{ vars.MAIN_VITE_STAGING_API_URL }}
+ MAIN_VITE_AUTH_URL: ${{ vars.MAIN_VITE_STAGING_AUTH_URL }}
+ MAIN_VITE_CHECKOUT_URL: ${{ vars.MAIN_VITE_STAGING_CHECKOUT_URL }}
+ MAIN_VITE_WS_URL: ${{ vars.MAIN_VITE_WS_STAGING_URL }}
+ RENDERER_VITE_EXTERNAL_RESOURCES_URL: ${{ vars.EXTERNAL_RESOURCES_URL }}
+ MAIN_VITE_EXTERNAL_RESOURCES_URL: ${{ vars.EXTERNAL_RESOURCES_URL }}
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
+ SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}
+ RENDERER_VITE_SENTRY_DSN: ${{ vars.SENTRY_DSN }}
+ RENDERER_VITE_REAL_DEBRID_REFERRAL_ID: ${{ vars.RENDERER_VITE_REAL_DEBRID_REFERRAL_ID }}
+ RENDERER_VITE_TORBOX_REFERRAL_CODE: ${{ vars.RENDERER_VITE_TORBOX_REFERRAL_CODE }}
-# runs-on: ${{ matrix.os }}
+ - name: Upload build
+ env:
+ BRANCH_NAME: ${{ github.head_ref || github.ref_name }}
+ S3_ENDPOINT: ${{ secrets.S3_ENDPOINT }}
+ S3_ACCESS_KEY_ID: ${{ secrets.S3_ACCESS_KEY_ID }}
+ S3_SECRET_ACCESS_KEY: ${{ secrets.S3_SECRET_ACCESS_KEY }}
+ S3_BUILDS_BUCKET_NAME: ${{ secrets.S3_BUILDS_BUCKET_NAME }}
+ BUILDS_URL: ${{ secrets.BUILDS_URL }}
+ BUILD_WEBHOOK_URL: ${{ secrets.BUILD_WEBHOOK_URL }}
+ GITHUB_ACTOR: ${{ github.actor }}
+ run: node scripts/upload-build.cjs
-# steps:
-# - name: Check out Git repository
-# uses: actions/checkout@v4
-
-# - name: Install Node.js
-# uses: actions/setup-node@v4
-# with:
-# node-version: 20.18.3
-
-# - name: Install dependencies
-# run: yarn --frozen-lockfile
-
-# - name: Install Python
-# uses: actions/setup-python@v5
-# with:
-# python-version: 3.9
-
-# - name: Install dependencies
-# run: pip install -r requirements.txt
-
-# - name: Build with cx_Freeze
-# run: python python_rpc/setup.py build
-
-# - name: Build Linux
-# if: matrix.os == 'ubuntu-latest'
-# run: |
-# yarn build:linux
-# env:
-# MAIN_VITE_API_URL: ${{ vars.MAIN_VITE_STAGING_API_URL }}
-# MAIN_VITE_AUTH_URL: ${{ vars.MAIN_VITE_STAGING_AUTH_URL }}
-# MAIN_VITE_CHECKOUT_URL: ${{ vars.MAIN_VITE_STAGING_CHECKOUT_URL }}
-# MAIN_VITE_WS_URL: ${{ vars.MAIN_VITE_WS_STAGING_URL }}
-# RENDERER_VITE_EXTERNAL_RESOURCES_URL: ${{ vars.EXTERNAL_RESOURCES_URL }}
-# MAIN_VITE_EXTERNAL_RESOURCES_URL: ${{ vars.EXTERNAL_RESOURCES_URL }}
-# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
-# SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}
-# RENDERER_VITE_SENTRY_DSN: ${{ vars.SENTRY_DSN }}
-# RENDERER_VITE_REAL_DEBRID_REFERRAL_ID: ${{ vars.RENDERER_VITE_REAL_DEBRID_REFERRAL_ID }}
-# RENDERER_VITE_TORBOX_REFERRAL_CODE: ${{ vars.RENDERER_VITE_TORBOX_REFERRAL_CODE }}
-
-# - name: Build Windows
-# if: matrix.os == 'windows-2022'
-# run: yarn build:win
-# env:
-# MAIN_VITE_API_URL: ${{ vars.MAIN_VITE_STAGING_API_URL }}
-# MAIN_VITE_AUTH_URL: ${{ vars.MAIN_VITE_STAGING_AUTH_URL }}
-# MAIN_VITE_CHECKOUT_URL: ${{ vars.MAIN_VITE_STAGING_CHECKOUT_URL }}
-# MAIN_VITE_WS_URL: ${{ vars.MAIN_VITE_WS_STAGING_URL }}
-# RENDERER_VITE_EXTERNAL_RESOURCES_URL: ${{ vars.EXTERNAL_RESOURCES_URL }}
-# MAIN_VITE_EXTERNAL_RESOURCES_URL: ${{ vars.EXTERNAL_RESOURCES_URL }}
-# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
-# SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}
-# RENDERER_VITE_SENTRY_DSN: ${{ vars.SENTRY_DSN }}
-# RENDERER_VITE_REAL_DEBRID_REFERRAL_ID: ${{ vars.RENDERER_VITE_REAL_DEBRID_REFERRAL_ID }}
-# RENDERER_VITE_TORBOX_REFERRAL_CODE: ${{ vars.RENDERER_VITE_TORBOX_REFERRAL_CODE }}
-
-# - name: Upload build
-# env:
-# BRANCH_NAME: ${{ github.head_ref || github.ref_name }}
-# S3_ENDPOINT: ${{ secrets.S3_ENDPOINT }}
-# S3_ACCESS_KEY_ID: ${{ secrets.S3_ACCESS_KEY_ID }}
-# S3_SECRET_ACCESS_KEY: ${{ secrets.S3_SECRET_ACCESS_KEY }}
-# S3_BUILDS_BUCKET_NAME: ${{ secrets.S3_BUILDS_BUCKET_NAME }}
-# BUILDS_URL: ${{ secrets.BUILDS_URL }}
-# BUILD_WEBHOOK_URL: ${{ secrets.BUILD_WEBHOOK_URL }}
-# GITHUB_ACTOR: ${{ github.actor }}
-# run: node scripts/upload-build.cjs
-
-# - name: Create artifact
-# uses: actions/upload-artifact@v4
-# with:
-# name: Build-${{ matrix.os }}
-# path: |
-# dist/*-portable.exe
-# dist/*.zip
-# dist/*.dmg
-# dist/*.deb
-# dist/*.rpm
-# dist/*.tar.gz
-# dist/*.yml
-# dist/*.blockmap
-# dist/*.AppImage
+ - name: Create artifact
+ uses: actions/upload-artifact@v4
+ with:
+ name: Build-${{ matrix.os }}
+ path: |
+ dist/*-portable.exe
+ dist/*.zip
+ dist/*.dmg
+ dist/*.deb
+ dist/*.rpm
+ dist/*.tar.gz
+ dist/*.yml
+ dist/*.blockmap
+ dist/*.AppImage
From fc6068d6035654d57d3671e739ee717659a8dec2 Mon Sep 17 00:00:00 2001
From: Chubby Granny Chaser
Date: Mon, 27 Oct 2025 12:33:29 +0000
Subject: [PATCH 21/26] fix: fixing dlls
---
.github/workflows/build.yml | 24 ++++++------------------
1 file changed, 6 insertions(+), 18 deletions(-)
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 598b157f..949bc864 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -36,27 +36,15 @@ jobs:
- name: Install dependencies
run: pip install -r requirements.txt
- - name: Download OpenSSL 1.1.1w installer
- if: matrix.os == 'windows-2022'
- shell: pwsh
- run: |
- $url = "https://slproweb.com/download/Win64OpenSSL-1_1_1w.exe"
- $out = "$env:RUNNER_TEMP\Win64OpenSSL-1_1_1w.exe"
- Invoke-WebRequest $url -OutFile $out
-
- - name: Silent install OpenSSL 1.1.1w
- if: matrix.os == 'windows-2022'
- shell: pwsh
- run: |
- $installer = "$env:RUNNER_TEMP\Win64OpenSSL-1_1_1w.exe"
- if (!(Test-Path $installer)) { Write-Error "Installer not found: $installer"; exit 1 }
- $dest = Join-Path $env:ProgramFiles "OpenSSL-Win64"
- $args = "/VERYSILENT /SUPPRESSMSGBOXES /SP- /NORESTART /DIR=""$dest"""
- Start-Process -FilePath $installer -ArgumentList $args -Wait -NoNewWindow
-
- name: Build with cx_Freeze
run: python python_rpc/setup.py build
+ - name: Copy OpenSSL DLLs
+ if: matrix.os == 'windows-2022'
+ run: |
+ cp hydra-python-rpc/lib/libcrypto-1_1.dll hydra-python-rpc/lib/libcrypto-1_1-x64.dll
+ cp hydra-python-rpc/lib/libssl-1_1.dll hydra-python-rpc/lib/libssl-1_1-x64.dll
+
- name: Build Linux
if: matrix.os == 'ubuntu-latest'
run: |
From 1123aaa65ea49bea512a3eef23210ce8389eddb2 Mon Sep 17 00:00:00 2001
From: Zamitto <167933696+zamitto@users.noreply.github.com>
Date: Tue, 28 Oct 2025 06:48:42 -0300
Subject: [PATCH 22/26] chore: remove zod dep
---
package.json | 3 +--
yarn.lock | 5 -----
2 files changed, 1 insertion(+), 7 deletions(-)
diff --git a/package.json b/package.json
index 08c1d80e..9ed25fa9 100644
--- a/package.json
+++ b/package.json
@@ -90,8 +90,7 @@
"winreg": "^1.2.5",
"ws": "^8.18.1",
"yaml": "^2.6.1",
- "yup": "^1.5.0",
- "zod": "^3.24.1"
+ "yup": "^1.5.0"
},
"devDependencies": {
"@aws-sdk/client-s3": "^3.705.0",
diff --git a/yarn.lock b/yarn.lock
index 6340a43f..6fb80492 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -9190,8 +9190,3 @@ yup@^1.5.0:
tiny-case "^1.0.3"
toposort "^2.0.2"
type-fest "^2.19.0"
-
-zod@^3.24.1:
- version "3.25.76"
- resolved "https://registry.yarnpkg.com/zod/-/zod-3.25.76.tgz#26841c3f6fd22a6a2760e7ccb719179768471e34"
- integrity sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==
From 6b96c99bb177f18dc8a54834acea21cfc4c0c495 Mon Sep 17 00:00:00 2001
From: Chubby Granny Chaser
Date: Tue, 28 Oct 2025 21:37:28 +0000
Subject: [PATCH 23/26] ci: fixing release pipeline
---
.github/workflows/release.yml | 6 +++
src/locales/en/translation.json | 1 +
src/locales/pt-BR/translation.json | 3 ++
.../download-sources/add-download-source.ts | 9 +++-
.../remove-download-source.ts | 2 +-
src/main/main.ts | 7 +++-
src/main/services/hydra-api.ts | 5 ++-
src/main/services/index.ts | 1 +
src/main/services/user/index.ts | 3 ++
.../services/user/sync-download-sources.ts | 42 +++++++++++++++++++
.../settings/add-download-source-modal.tsx | 6 ++-
11 files changed, 80 insertions(+), 5 deletions(-)
create mode 100644 src/main/services/user/index.ts
create mode 100644 src/main/services/user/sync-download-sources.ts
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index 3ceb42c7..9524c4b9 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -39,6 +39,12 @@ jobs:
- name: Build with cx_Freeze
run: python python_rpc/setup.py build
+ - name: Copy OpenSSL DLLs
+ if: matrix.os == 'windows-2022'
+ run: |
+ cp hydra-python-rpc/lib/libcrypto-1_1.dll hydra-python-rpc/lib/libcrypto-1_1-x64.dll
+ cp hydra-python-rpc/lib/libssl-1_1.dll hydra-python-rpc/lib/libssl-1_1-x64.dll
+
- name: Build Linux
if: matrix.os == 'ubuntu-latest'
run: |
diff --git a/src/locales/en/translation.json b/src/locales/en/translation.json
index bfc4a379..3977c27d 100755
--- a/src/locales/en/translation.json
+++ b/src/locales/en/translation.json
@@ -430,6 +430,7 @@
"add_download_source": "Add source",
"adding": "Adding…",
"failed_add_download_source": "Failed to add download source. Please try again.",
+ "download_source_already_exists": "This download source URL already exists.",
"download_count_zero": "No download options",
"download_count_one": "{{countFormatted}} download option",
"download_count_other": "{{countFormatted}} download options",
diff --git a/src/locales/pt-BR/translation.json b/src/locales/pt-BR/translation.json
index 968483a6..c9e908ac 100755
--- a/src/locales/pt-BR/translation.json
+++ b/src/locales/pt-BR/translation.json
@@ -416,6 +416,9 @@
"validate_download_source": "Validar",
"remove_download_source": "Remover",
"add_download_source": "Adicionar fonte",
+ "adding": "Adicionando…",
+ "failed_add_download_source": "Falha ao adicionar fonte de download. Tente novamente.",
+ "download_source_already_exists": "Esta URL de fonte de download já existe.",
"download_count_zero": "Sem downloads na lista",
"download_count_one": "{{countFormatted}} download na lista",
"download_count_other": "{{countFormatted}} downloads na lista",
diff --git a/src/main/events/download-sources/add-download-source.ts b/src/main/events/download-sources/add-download-source.ts
index d4e65ef3..ee426a82 100644
--- a/src/main/events/download-sources/add-download-source.ts
+++ b/src/main/events/download-sources/add-download-source.ts
@@ -9,6 +9,13 @@ const addDownloadSource = async (
url: string
) => {
try {
+ const existingSources = await downloadSourcesSublevel.values().all();
+ const urlExists = existingSources.some((source) => source.url === url);
+
+ if (urlExists) {
+ throw new Error("Download source with this URL already exists");
+ }
+
const downloadSource = await HydraApi.post(
"/download-sources",
{
@@ -17,7 +24,7 @@ const addDownloadSource = async (
{ needsAuth: false }
);
- if (HydraApi.isLoggedIn()) {
+ if (HydraApi.isLoggedIn() && HydraApi.hasActiveSubscription()) {
try {
await HydraApi.post("/profile/download-sources", {
urls: [url],
diff --git a/src/main/events/download-sources/remove-download-source.ts b/src/main/events/download-sources/remove-download-source.ts
index 8efe0072..9caeaba5 100644
--- a/src/main/events/download-sources/remove-download-source.ts
+++ b/src/main/events/download-sources/remove-download-source.ts
@@ -13,7 +13,7 @@ const removeDownloadSource = async (
if (downloadSourceId) params.set("downloadSourceId", downloadSourceId);
- if (HydraApi.isLoggedIn()) {
+ if (HydraApi.isLoggedIn() && HydraApi.hasActiveSubscription()) {
void HydraApi.delete(`/profile/download-sources?${params.toString()}`);
}
diff --git a/src/main/main.ts b/src/main/main.ts
index 6e477a18..f2440b9f 100644
--- a/src/main/main.ts
+++ b/src/main/main.ts
@@ -50,9 +50,14 @@ export const loadState = async () => {
DeckyPlugin.checkAndUpdateIfOutdated();
}
- await HydraApi.setupApi().then(() => {
+ await HydraApi.setupApi().then(async () => {
uploadGamesBatch();
void migrateDownloadSources();
+
+ const { syncDownloadSourcesFromApi } = await import(
+ "./services/user"
+ );
+ void syncDownloadSourcesFromApi();
// WSClient.connect();
});
diff --git a/src/main/services/hydra-api.ts b/src/main/services/hydra-api.ts
index ffc5756c..12090df3 100644
--- a/src/main/services/hydra-api.ts
+++ b/src/main/services/hydra-api.ts
@@ -46,7 +46,7 @@ export class HydraApi {
return this.userAuth.authToken !== "";
}
- private static hasActiveSubscription() {
+ public static hasActiveSubscription() {
const expiresAt = new Date(this.userAuth.subscription?.expiresAt ?? 0);
return expiresAt > new Date();
}
@@ -105,6 +105,9 @@ export class HydraApi {
// WSClient.close();
// WSClient.connect();
+
+ const { syncDownloadSourcesFromApi } = await import("./user");
+ syncDownloadSourcesFromApi();
}
}
diff --git a/src/main/services/index.ts b/src/main/services/index.ts
index 88b39d1b..da4e6848 100644
--- a/src/main/services/index.ts
+++ b/src/main/services/index.ts
@@ -18,3 +18,4 @@ export * from "./library-sync";
export * from "./wine";
export * from "./lock";
export * from "./decky-plugin";
+export * from "./user";
diff --git a/src/main/services/user/index.ts b/src/main/services/user/index.ts
new file mode 100644
index 00000000..b5001f7a
--- /dev/null
+++ b/src/main/services/user/index.ts
@@ -0,0 +1,3 @@
+export * from "./get-user-data";
+export * from "./sync-download-sources";
+
diff --git a/src/main/services/user/sync-download-sources.ts b/src/main/services/user/sync-download-sources.ts
new file mode 100644
index 00000000..c5695d68
--- /dev/null
+++ b/src/main/services/user/sync-download-sources.ts
@@ -0,0 +1,42 @@
+import { HydraApi, logger } from "../";
+import { downloadSourcesSublevel } from "@main/level";
+import type { DownloadSource } from "@types";
+
+export const syncDownloadSourcesFromApi = async () => {
+ if (!HydraApi.isLoggedIn() || !HydraApi.hasActiveSubscription()) {
+ return;
+ }
+
+ try {
+ const profileSources = await HydraApi.get(
+ "/profile/download-sources"
+ );
+
+ const existingSources = await downloadSourcesSublevel.values().all();
+ const existingUrls = new Set(existingSources.map((source) => source.url));
+
+ for (const downloadSource of profileSources) {
+ if (!existingUrls.has(downloadSource.url)) {
+ try {
+ await downloadSourcesSublevel.put(downloadSource.id, {
+ ...downloadSource,
+ isRemote: true,
+ createdAt: new Date().toISOString(),
+ });
+
+ logger.log(
+ `Synced download source from profile: ${downloadSource.url}`
+ );
+ } catch (error) {
+ logger.error(
+ `Failed to sync download source ${downloadSource.url}:`,
+ error
+ );
+ }
+ }
+ }
+ } catch (error) {
+ logger.error("Failed to sync download sources from API:", error);
+ }
+};
+
diff --git a/src/renderer/src/pages/settings/add-download-source-modal.tsx b/src/renderer/src/pages/settings/add-download-source-modal.tsx
index d7071391..d96c67a5 100644
--- a/src/renderer/src/pages/settings/add-download-source-modal.tsx
+++ b/src/renderer/src/pages/settings/add-download-source-modal.tsx
@@ -57,9 +57,13 @@ export function AddDownloadSourceModal({
onAddDownloadSource();
} catch (error) {
logger.error("Failed to add download source:", error);
+ const errorMessage = error instanceof Error && error.message.includes("already exists")
+ ? t("download_source_already_exists")
+ : t("failed_add_download_source");
+
setError("url", {
type: "server",
- message: t("failed_add_download_source"),
+ message: errorMessage,
});
} finally {
setIsLoading(false);
From a11b3e887796966b64e2ec73786f27d9c5a2e741 Mon Sep 17 00:00:00 2001
From: Chubby Granny Chaser
Date: Tue, 28 Oct 2025 21:38:07 +0000
Subject: [PATCH 24/26] ci: fixing release pipeline
---
src/main/events/download-sources/add-download-source.ts | 2 +-
src/main/main.ts | 6 ++----
src/main/services/user/index.ts | 1 -
src/main/services/user/sync-download-sources.ts | 1 -
.../src/pages/settings/add-download-source-modal.tsx | 9 +++++----
5 files changed, 8 insertions(+), 11 deletions(-)
diff --git a/src/main/events/download-sources/add-download-source.ts b/src/main/events/download-sources/add-download-source.ts
index ee426a82..bea009cb 100644
--- a/src/main/events/download-sources/add-download-source.ts
+++ b/src/main/events/download-sources/add-download-source.ts
@@ -11,7 +11,7 @@ const addDownloadSource = async (
try {
const existingSources = await downloadSourcesSublevel.values().all();
const urlExists = existingSources.some((source) => source.url === url);
-
+
if (urlExists) {
throw new Error("Download source with this URL already exists");
}
diff --git a/src/main/main.ts b/src/main/main.ts
index f2440b9f..ffb8f8a9 100644
--- a/src/main/main.ts
+++ b/src/main/main.ts
@@ -53,10 +53,8 @@ export const loadState = async () => {
await HydraApi.setupApi().then(async () => {
uploadGamesBatch();
void migrateDownloadSources();
-
- const { syncDownloadSourcesFromApi } = await import(
- "./services/user"
- );
+
+ const { syncDownloadSourcesFromApi } = await import("./services/user");
void syncDownloadSourcesFromApi();
// WSClient.connect();
});
diff --git a/src/main/services/user/index.ts b/src/main/services/user/index.ts
index b5001f7a..b1d8c9b7 100644
--- a/src/main/services/user/index.ts
+++ b/src/main/services/user/index.ts
@@ -1,3 +1,2 @@
export * from "./get-user-data";
export * from "./sync-download-sources";
-
diff --git a/src/main/services/user/sync-download-sources.ts b/src/main/services/user/sync-download-sources.ts
index c5695d68..ff9819ce 100644
--- a/src/main/services/user/sync-download-sources.ts
+++ b/src/main/services/user/sync-download-sources.ts
@@ -39,4 +39,3 @@ export const syncDownloadSourcesFromApi = async () => {
logger.error("Failed to sync download sources from API:", error);
}
};
-
diff --git a/src/renderer/src/pages/settings/add-download-source-modal.tsx b/src/renderer/src/pages/settings/add-download-source-modal.tsx
index d96c67a5..af6f8b4d 100644
--- a/src/renderer/src/pages/settings/add-download-source-modal.tsx
+++ b/src/renderer/src/pages/settings/add-download-source-modal.tsx
@@ -57,10 +57,11 @@ export function AddDownloadSourceModal({
onAddDownloadSource();
} catch (error) {
logger.error("Failed to add download source:", error);
- const errorMessage = error instanceof Error && error.message.includes("already exists")
- ? t("download_source_already_exists")
- : t("failed_add_download_source");
-
+ const errorMessage =
+ error instanceof Error && error.message.includes("already exists")
+ ? t("download_source_already_exists")
+ : t("failed_add_download_source");
+
setError("url", {
type: "server",
message: errorMessage,
From ad588b5600a1172c4f7e67d1c2a8f78f6b0404ce Mon Sep 17 00:00:00 2001
From: Moyasee
Date: Wed, 29 Oct 2025 19:51:09 +0200
Subject: [PATCH 25/26] fix: images with big height breaking layout
---
src/renderer/src/pages/game-details/hero.scss | 3 +++
1 file changed, 3 insertions(+)
diff --git a/src/renderer/src/pages/game-details/hero.scss b/src/renderer/src/pages/game-details/hero.scss
index 6bd63320..41264fe4 100644
--- a/src/renderer/src/pages/game-details/hero.scss
+++ b/src/renderer/src/pages/game-details/hero.scss
@@ -146,6 +146,8 @@ $hero-height: 350px;
&__game-logo {
width: 200px;
align-self: flex-end;
+ object-fit: contain;
+ object-position: left bottom;
@media (min-width: 768px) {
width: 250px;
@@ -153,6 +155,7 @@ $hero-height: 350px;
@media (min-width: 1024px) {
width: 300px;
+ max-height: 150px;
}
}
From 49df40650c8e8779b7cfff917441ead54df971f2 Mon Sep 17 00:00:00 2001
From: Zamitto <167933696+zamitto@users.noreply.github.com>
Date: Wed, 29 Oct 2025 15:27:36 -0300
Subject: [PATCH 26/26] chore: prettier
---
.../src/components/text-field/text-field.tsx | 16 ++++++++++------
1 file changed, 10 insertions(+), 6 deletions(-)
diff --git a/src/renderer/src/components/text-field/text-field.tsx b/src/renderer/src/components/text-field/text-field.tsx
index 7c0cbb58..76759126 100644
--- a/src/renderer/src/components/text-field/text-field.tsx
+++ b/src/renderer/src/components/text-field/text-field.tsx
@@ -4,10 +4,11 @@ import { useTranslation } from "react-i18next";
import cn from "classnames";
import "./text-field.scss";
-export interface TextFieldProps extends React.DetailedHTMLProps<
- React.InputHTMLAttributes,
- HTMLInputElement
-> {
+export interface TextFieldProps
+ extends React.DetailedHTMLProps<
+ React.InputHTMLAttributes,
+ HTMLInputElement
+ > {
theme?: "primary" | "dark";
label?: string | React.ReactNode;
hint?: string | React.ReactNode;
@@ -42,7 +43,10 @@ export const TextField = React.forwardRef(
const [isPasswordVisible, setIsPasswordVisible] = useState(false);
const { t } = useTranslation("forms");
const showPasswordToggleButton = props.type === "password";
- const inputType = props.type === "password" && isPasswordVisible ? "text" : props.type ?? "text";
+ const inputType =
+ props.type === "password" && isPasswordVisible
+ ? "text"
+ : (props.type ?? "text");
const hintContent = error ? (
{error}
) : hint ? (
@@ -106,4 +110,4 @@ export const TextField = React.forwardRef(
);
}
);
-TextField.displayName = "TextField";
\ No newline at end of file
+TextField.displayName = "TextField";