diff --git a/app/preload.js b/app/preload.js index 774cd34..372b841 100644 --- a/app/preload.js +++ b/app/preload.js @@ -11,7 +11,7 @@ function init() ipc.send('clocks-get') - $('.update .version').innerHTML += `v${config.APP_VERSION}` + $('.update .version').innerHTML = `v${config.APP_VERSION}` $all('.app-name').forEach(item => { item.innerText = config.APP_NAME }) } diff --git a/app/static/style.css b/app/static/style.css index 5e61691..2860f19 100644 --- a/app/static/style.css +++ b/app/static/style.css @@ -17,7 +17,7 @@ button, html input[type='button'], input[type='reset'], input[type='submit'] { - .search { position:relative; background:#0C0F12; cursor:text; } .search input { position:relative; z-index:10; width:100%; background:transparent; font-weight:400; font-size:13px; color:#fff; border:none; padding:10px 20px 10px 40px; background:url('../static/search-darkmode.svg') no-repeat 15px center; background-size:14px 14px; } -.search label { position:absolute; z-index:9; top:-2px; right:0; z-index:9; text-align:right; display:block; width:100%; opacity:.5; padding:10px 25px; font-weight:400; font-size:13px; } +.search label { position:absolute; z-index:9; top:2px; right:0; z-index:9; text-align:right; display:block; width:100%; opacity:.5; padding:10px 15px; font-weight:400; font-size:13px; } .clock { padding:5px 15px; background:#0C0F12; overflow-y:auto; } .clock button { display:block; width:100%; position:relative; text-align:left; font-weight:400; border:none; padding:0 5px; margin:10px 0px; background:transparent; font-size:13px; opacity:.3; transition:all 0.2s linear 0s; } @@ -48,7 +48,7 @@ button, html input[type='button'], input[type='reset'], input[type='submit'] { - .update.install { background-color:#2662C1; color:#fff; } .update.install:hover { background-color:#3b74cf; } .update.install .version { opacity:.7; } -.update .version { font-size:10px; position:relative; top:2px; float:right; } +.update .version { font-size:10px; position:relative; text-align:right; top:2px; left:5px; float:right; } .settings button, .update, .about, .support, .exit { padding-left:30px; } .about:before { content:''; width:13px; height:13px; position:relative; top:1px; margin-left:-15px; margin-right:10px; background:url('../static/about-darkmode.svg') no-repeat 0px center; background-size:13px 13px; display:inline-block; } diff --git a/app/updater.js b/app/updater.js index 19457b1..4641e4d 100644 --- a/app/updater.js +++ b/app/updater.js @@ -34,7 +34,7 @@ function init() { if(process.platform == 'darwin' && !win.isVisible()) { app.dock.show() app.dock.bounce() - app.dock.setBadge('•') + app.dock.setBadge(' ') } if(!win.isVisible()) { diff --git a/package.json b/package.json index 169f76b..aeb47fe 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "hovrly", "productName": "Hovrly", - "version": "2.3.7", + "version": "2.3.8", "description": "Best partner for disctributed teams", "main": "app/index.js", "scripts": {