Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update RoRR image and pump settings store schema version #1351

Merged
merged 1 commit into from
Jun 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/assets/data/games.json
Original file line number Diff line number Diff line change
Expand Up @@ -2344,7 +2344,7 @@
"label": "risk-of-rain-returns",
"meta": {
"displayName": "Risk of Rain Returns",
"iconUrl": "RiskofRainReturns.jpg"
"iconUrl": "RiskOfRainReturns.png"
},
"distributions": [
{
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
4 changes: 2 additions & 2 deletions src/model/game/GameManager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -632,7 +632,7 @@ export default class GameManager {
"https://thunderstore.io/c/castle-story/api/v1/package/", EXCLUSIONS,
[new StorePlatformMetadata(StorePlatform.STEAM_DIRECT, "227860")], "CastleStory.png",
GameSelectionDisplayMode.VISIBLE, GameInstanceType.GAME, PackageLoader.BEPINEX, ["cs"]),

new Game(
"Panicore", "Panicore", "Panicore",
"Panicore", ["Panicore.exe"], "Panicore",
Expand All @@ -643,7 +643,7 @@ export default class GameManager {
new Game("Risk of Rain Returns", "RiskofRainReturns", "RiskofRainReturns",
"Risk of Rain Returns", ["Risk of Rain Returns.exe"], "",
"https://thunderstore.io/c/risk-of-rain-returns/api/v1/package/", EXCLUSIONS,
[new StorePlatformMetadata(StorePlatform.STEAM, "1337520")], "RiskofRainReturns.jpg",
[new StorePlatformMetadata(StorePlatform.STEAM, "1337520")], "RiskOfRainReturns.png",
GameSelectionDisplayMode.VISIBLE, GameInstanceType.GAME, PackageLoader.RETURN_OF_MODDING, ["rorr"]),
];

Expand Down
2 changes: 1 addition & 1 deletion src/r2mm/manager/SettingsDexieStore.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export default class SettingsDexieStore extends Dexie {

// Add all games to store. Borked v2-3 locally
// Increment per game or change to settings.
this.version(72).stores(store);
this.version(73).stores(store);

this.activeGame = game;
this.global = this.table("value");
Expand Down
Loading