Skip to content

Commit 0923157

Browse files
authored
Release 0.8.2
Merge pull request #234 from vrlkacha/0.8.2
2 parents cbb5d89 + 81b044f commit 0923157

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

src/app/appbar/headerbar.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
<md-icon style="color: #424242">help</md-icon>
4646
<md-tooltip>Open Automint Help</md-tooltip>
4747
</md-button>
48-
<md-button ng-if="vm.IsPasscodeEnabled()" aria-label="Lock" class="md-icon-button" ng-click="headerVm.openLockScreen()">
48+
<md-button ng-if="headerVm.IsPasscodeEnabled()" aria-label="Lock" class="md-icon-button" ng-click="headerVm.openLockScreen()">
4949
<md-icon style="color: #424242">lock</md-icon>
5050
<md-tooltip>Lock Screen</md-tooltip>
5151
</md-button>

src/automint_modules/print/am-print.js

+3-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* Print document
33
* @author ndkcha
44
* @since 0.5.0
5-
* @version 0.5.0
5+
* @version 0.8.2
66
*/
77

88
/// <reference path="../../typings/main.d.ts" />
@@ -27,7 +27,8 @@
2727
height: 600
2828
});
2929
win.loadURL('file://' + path);
30-
setTimeout(performPrint, 600);
30+
win.webContents.on('dom-ready', performPrint);
31+
// setTimeout(performPrint, 600);
3132

3233
function performPrint() {
3334
win.webContents.print();

src/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"name": "Automint",
3-
"version": "0.8.1",
2+
"name": "automint",
3+
"version": "0.8.2",
44
"description": "CRM by Automint",
55
"main": "main.js",
66
"scripts": {

0 commit comments

Comments
 (0)