Skip to content

Commit

Permalink
#219: Upgrade electron to v9 and use shell.openPath()
Browse files Browse the repository at this point in the history
  • Loading branch information
bstein committed Aug 15, 2022
1 parent 64b4321 commit c8455a0
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion app/app/bcl/modalBclController.js
Expand Up @@ -583,7 +583,7 @@ export class ModalBclController {
vm.toastr.info(translation, {
timeOut: 3000, onHidden: function () {
//if (vm.Message.showDebug()) vm.$log.debug('Opening measure file');
vm.shell.openItem(measure.measure_dir + '/measure.rb');
vm.shell.openPath(measure.measure_dir + '/measure.rb');
}
});
});
Expand Down
2 changes: 1 addition & 1 deletion app/app/run/runController.js
Expand Up @@ -859,7 +859,7 @@ export class RunController {

viewAlgorithmResults() {
const vm = this;
vm.shell.openItem(vm.Project.getAlgorithmResultsPath());
vm.shell.openPath(vm.Project.getAlgorithmResultsPath());
}

downloadResults(datapoint) {
Expand Down
14 changes: 7 additions & 7 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -11,7 +11,7 @@
"browser-sync-spa": "~1.0.3",
"chalk": "~1.1.1",
"del": "~2.2.0",
"electron": "~7.3.3",
"electron": "~9.4.4",
"eslint-plugin-angular": "~1.0.0",
"eslint-plugin-lodash": "~1.5.1",
"estraverse": "~4.2.0",
Expand Down

0 comments on commit c8455a0

Please sign in to comment.