diff --git a/main.js b/main.js index f5e401f..730ad9d 100644 --- a/main.js +++ b/main.js @@ -580,7 +580,8 @@ if (!gotTheLock) { win.reload(); }*/ store.set('bounds', win.getBounds()); - win.focus(); + // check 0.2.4-alpha BUG pinned/maximized window + //win.focus(); }, 500); }) diff --git a/package.json b/package.json index f362bee..cc63da1 100644 --- a/package.json +++ b/package.json @@ -11,7 +11,7 @@ ], "icon": "icon.png", "main": "./main.js", - "version": "0.2.3-alpha", + "version": "0.2.4-alpha", "author": "drlight17", "build": { "appId": "com.electron.talk-electron", @@ -48,19 +48,22 @@ { "target": "nsis", "arch": [ - "x64" + "x64", + "ia32" ] }, { "target": "zip", "arch": [ - "x64" + "x64", + "ia32" ] }, { "target": "msi", "arch": [ - "x64" + "x64", + "ia32" ] } ] diff --git a/styles.css b/styles.css index 35710ec..55fe61f 100644 --- a/styles.css +++ b/styles.css @@ -1,6 +1,6 @@ /* styles.css */ /*hide some elements*/ -.side-menu-opener, #nextcloud, .toast-error,#header > div.header-right > div:nth-child(1), /*#header > div.header-right > div:nth-child(2),*/ #header > div.header-right > div:nth-child(3),/*#profile,*/#accessibility_settings, #settings,#admin_settings, #core_apps, #core_users,#help, #body-login > footer { +.side-menu-opener, #nextcloud, .toast-error,#header > div.header-right > div:nth-child(1), /*#header > div.header-right > div:nth-child(2),*/ #header > div.header-right > div:nth-child(3),/*#profile,*/#accessibility_settings, #settings,#admin_settings, #core_apps, #core_users,#help, #body-login > footer,#header > div.header-left > nav { display:none!important; }