Skip to content
This repository has been archived by the owner on Oct 29, 2023. It is now read-only.

Commit

Permalink
Merge pull request #69 from scottbot95/staging
Browse files Browse the repository at this point in the history
Version 0.6.2
  • Loading branch information
scottbot95 committed May 9, 2019
2 parents 6652be6 + 2fe89eb commit 550e935
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 4 deletions.
10 changes: 9 additions & 1 deletion CHANGELOG.md
Expand Up @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.6.2] 2019.05-08

### Fixed

- Fixed installer not saving RoR2 install path correctly.
- Should fix issue where you needed to change path from in the app for it to work

## [0.6.1] 2019-05-08

### Fixed
Expand Down Expand Up @@ -95,7 +102,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Initial alpha release

[unreleased]: https://github.com/scottbot95/RoR2ModManager/compare/v0.1.0...HEAD
[unreleased]: https://github.com/scottbot95/RoR2ModManager/compare/v0.6.2...HEAD
[0.6.1]: https://github.com/scottbot95/RoR2ModManager/compare/v0.6.1...v0.6.2
[0.6.1]: https://github.com/scottbot95/RoR2ModManager/compare/v0.6.0...v0.6.1
[0.6.0]: https://github.com/scottbot95/RoR2ModManager/compare/v0.5.1...v0.6.0
[0.5.1]: https://github.com/scottbot95/RoR2ModManager/compare/v0.4.1...v0.5.1
Expand Down
6 changes: 4 additions & 2 deletions main.ts
@@ -1,5 +1,5 @@
// tslint:disable-next-line:no-unused-variable
import { app, BrowserWindow, Notification } from 'electron';
import { app, BrowserWindow, Notification, dialog } from 'electron';
import * as path from 'path';
import * as Registry from 'winreg';

Expand All @@ -25,7 +25,7 @@ const args = process.argv.slice(1);
serve = args.some(val => val === '--serve');

const regKey = new Registry({
hive: Registry.HKCU,
hive: Registry.HKLM,
key: `\\SOFTWARE\\${name}`
});

Expand All @@ -36,6 +36,8 @@ regKey.get('RoR2Dir', (err, result) => {
prefs.set('ror2_path', result.value);

// leave it in registry in case we reinstall
} else {
dialog.showErrorBox('Cannot read registry', err.message);
}
});

Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "ror2-mod-manager",
"version": "0.6.1",
"version": "0.6.2",
"description": "A simple mod manager built using electron. Currently only supports BepInEx mods",
"homepage": "https://github.com/scottbot95/RoR2ModManager",
"repository": {
Expand Down

0 comments on commit 550e935

Please sign in to comment.