mirror of
https://github.com/hydralauncher/hydra.git
synced 2025-03-09 15:40:26 +00:00
feat: adding remove function to filter tags
This commit is contained in:
parent
4476b1b216
commit
b5a9beb481
18 changed files with 560 additions and 385 deletions
|
@ -37,8 +37,8 @@ contextBridge.exposeInMainWorld("electron", {
|
|||
},
|
||||
|
||||
/* Catalogue */
|
||||
searchGames: (payload: CatalogueSearchPayload, page: number) =>
|
||||
ipcRenderer.invoke("searchGames", payload, page),
|
||||
searchGames: (payload: CatalogueSearchPayload, take: number, skip: number) =>
|
||||
ipcRenderer.invoke("searchGames", payload, take, skip),
|
||||
getCatalogue: (category: CatalogueCategory) =>
|
||||
ipcRenderer.invoke("getCatalogue", category),
|
||||
getGameShopDetails: (objectId: string, shop: GameShop, language: string) =>
|
||||
|
@ -65,8 +65,6 @@ contextBridge.exposeInMainWorld("electron", {
|
|||
listener
|
||||
);
|
||||
},
|
||||
getPublishers: () => ipcRenderer.invoke("getPublishers"),
|
||||
getDevelopers: () => ipcRenderer.invoke("getDevelopers"),
|
||||
|
||||
/* User preferences */
|
||||
getUserPreferences: () => ipcRenderer.invoke("getUserPreferences"),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue