Skip to content

Commit

Permalink
Merge pull request #142 from vitrine-app/hotfix/v0.11.3
Browse files Browse the repository at this point in the history
hotfix: v0.11.3 stable
  • Loading branch information
Paul Roman authored Mar 19, 2019
2 parents 533d5fa + aa57d6b commit cb647f7
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Vitrine Changelog

## 0.11.3 (19/03/2019)
- fix: emulators can now be added without bugs

## 0.11.2 (10/03/2019)
- fix: auto-updates can now be performed without crashing

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vitrine",
"version": "0.11.2",
"version": "0.11.3",
"description": "Centralize all of your games within a simple interface.",
"main": "public/server.js",
"productName": "Vitrine",
Expand Down
2 changes: 1 addition & 1 deletion sources/client/app/features/settings/SettingsModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ class SettingsModal extends VitrineComponent<Props, State> {
if (!found) {
aliveEmulators.push(emulatorConfig);
} else {
aliveEmulators = aliveEmulators.map((aliveEmulator: any) => (aliveEmulator.id !== emulatorConfig.i ? aliveEmulator : emulatorConfig));
aliveEmulators = aliveEmulators.map((aliveEmulator: any) => (aliveEmulator.id !== emulatorConfig.id ? aliveEmulator : emulatorConfig));
}
} else {
aliveEmulators = aliveEmulators.filter((aliveEmulator: any) => aliveEmulator.id !== emulatorConfig.id);
Expand Down

0 comments on commit cb647f7

Please sign in to comment.