Skip to content

Commit

Permalink
Release 0.8.2
Browse files Browse the repository at this point in the history
Merge pull request #234 from vrlkacha/0.8.2
  • Loading branch information
vrlk authored Sep 29, 2016
2 parents cbb5d89 + 81b044f commit 0923157
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/app/appbar/headerbar.html
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
<md-icon style="color: #424242">help</md-icon>
<md-tooltip>Open Automint Help</md-tooltip>
</md-button>
<md-button ng-if="vm.IsPasscodeEnabled()" aria-label="Lock" class="md-icon-button" ng-click="headerVm.openLockScreen()">
<md-button ng-if="headerVm.IsPasscodeEnabled()" aria-label="Lock" class="md-icon-button" ng-click="headerVm.openLockScreen()">
<md-icon style="color: #424242">lock</md-icon>
<md-tooltip>Lock Screen</md-tooltip>
</md-button>
Expand Down
5 changes: 3 additions & 2 deletions src/automint_modules/print/am-print.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* Print document
* @author ndkcha
* @since 0.5.0
* @version 0.5.0
* @version 0.8.2
*/

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

function performPrint() {
win.webContents.print();
Expand Down
4 changes: 2 additions & 2 deletions src/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Automint",
"version": "0.8.1",
"name": "automint",
"version": "0.8.2",
"description": "CRM by Automint",
"main": "main.js",
"scripts": {
Expand Down

0 comments on commit 0923157

Please sign in to comment.