Skip to content

Commit 98d2ed8

Browse files
committed
chore(release): release desktop app v0.13.4
1 parent 73f5b31 commit 98d2ed8

File tree

4 files changed

+11
-7
lines changed

4 files changed

+11
-7
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
44

5+
### [0.13.4](https://github.com/Noovolari/leapp/compare/v0.13.3...v0.13.4) (2022-08-08)
6+
7+
### Bug Fixes
8+
9+
* fixed dev tools opening on app start
10+
511
### [0.13.3](https://github.com/Noovolari/leapp/compare/v0.13.2...v0.13.3) (2022-08-08)
612

713
### Features

packages/desktop-app/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/desktop-app/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "Leapp",
3-
"version": "0.13.3",
3+
"version": "0.13.4",
44
"private": true,
55
"author": {
66
"name": "Noovolari",

packages/desktop-app/src/app/app.component.ts

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -100,8 +100,6 @@ export class AppComponent implements OnInit {
100100

101101
this.awsSsoRoleService.setAwsIntegrationDelegate(this.awsSsoIntegrationService);
102102

103-
// await this.installPlugin("leapp://leapp-helloworld");
104-
105103
// We get the right moment to set an hook to app close
106104
const ipcRenderer = this.appNativeService.ipcRenderer;
107105
ipcRenderer.on("app-close", () => {
@@ -120,8 +118,8 @@ export class AppComponent implements OnInit {
120118
}
121119

122120
// Prevent Dev Tool to show on production mode
123-
this.windowService.getCurrentWindow().webContents.openDevTools();
124-
//this.windowService.blockDevToolInProductionMode();
121+
//this.windowService.getCurrentWindow().webContents.openDevTools();
122+
this.windowService.blockDevToolInProductionMode();
125123

126124
// Create folders and files if missing
127125
this.updaterService.createFoldersIfMissing();

0 commit comments

Comments
 (0)