fix: Fixed tests
feat: Added RClone integration feat: Implemented plugin settings feat: Updated minimal store version test: Fixed tests feat: Moved store and igdb and es-de to their own plugins
This commit is contained in:
parent
444d8c4c27
commit
c09fbd3dc8
115 changed files with 4139 additions and 1502 deletions
|
|
@ -1,7 +1,21 @@
|
|||
import { Gamepad2, HardDrive, Store } from "lucide-react";
|
||||
import { CloudSync, Gamepad2, HardDrive, MonitorPlay, Store, Terminal } from "lucide-react";
|
||||
|
||||
export const sourceIconMap: Record<string, any> = {
|
||||
store: <Store />,
|
||||
local: <HardDrive />,
|
||||
romm: <Gamepad2 />
|
||||
};
|
||||
|
||||
export const pluginCategoryIcons: Record<string, any> = {
|
||||
saves: <CloudSync />,
|
||||
sources: <Gamepad2 />,
|
||||
launchers: <Terminal />,
|
||||
emulators: <MonitorPlay />
|
||||
};
|
||||
|
||||
export const pluginCategoryPriorities: Record<string, number> = {
|
||||
saves: 100,
|
||||
sources: 90,
|
||||
launchers: 80,
|
||||
emulators: 60
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue