feat: Implemented public plugin system accessible from the store.
feat: Implemented external ryujinx integration plugin refactor: moved sdk types and schemas to own workspace package fix: Fixed emulator launch with no game
This commit is contained in:
parent
9051834ace
commit
38cb752552
124 changed files with 1918 additions and 1067 deletions
|
|
@ -1,11 +1,15 @@
|
|||
import { LocalOption } from '@/mainview/components/options/LocalOption';
|
||||
import { LocalSettingsSchema, settingRegistry } from '@/shared/constants';
|
||||
import { settingRegistry } from '@simeonradivoev/gameflow-sdk/shared';
|
||||
import { LocalSettingsSchema } from '@simeonradivoev/gameflow-sdk/shared';
|
||||
import { FocusContext, useFocusable } from '@noriginmedia/norigin-spatial-navigation';
|
||||
import { createFileRoute } from '@tanstack/react-router';
|
||||
import { Terminal } from 'lucide-react';
|
||||
import { zodValidator } from '@tanstack/zod-adapter';
|
||||
import z from 'zod';
|
||||
|
||||
export const Route = createFileRoute('/settings/interface')({
|
||||
component: RouteComponent,
|
||||
validateSearch: zodValidator(z.object({ focus: z.string().optional() }))
|
||||
});
|
||||
|
||||
function RouteComponent ()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue