fix: Made store downloads extract in their own folder
feat: Implemented cemu integration
This commit is contained in:
parent
09b8b9c6f8
commit
764691fc86
11 changed files with 156 additions and 52 deletions
|
|
@ -70,7 +70,8 @@ export class InstallJob implements IJob<never, InstallJobStates>
|
|||
name: game.title,
|
||||
summary: game.description,
|
||||
system_slug: gameId.system,
|
||||
extract_path: path.join('roms', gameId.system),
|
||||
path_fs: path.join('roms', gameId.system, game.title),
|
||||
extract_path: path.join('roms', gameId.system, game.title),
|
||||
};
|
||||
|
||||
break;
|
||||
|
|
@ -218,7 +219,7 @@ export class InstallJob implements IJob<never, InstallJobStates>
|
|||
source_id: info.source_id,
|
||||
source: this.source,
|
||||
slug: info.slug,
|
||||
path_fs: info.path_fs,
|
||||
path_fs: info.path_fs ?? (info.extract_path ? path.join(downloadPath, info.extract_path) : undefined),
|
||||
last_played: info.last_played,
|
||||
platform_id: platformId,
|
||||
igdb_id: info.igdb_id,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue