Skip to content

Commit

Permalink
v 0.2.4-alpha
Browse files Browse the repository at this point in the history
  • Loading branch information
drlight17 committed May 28, 2024
1 parent b154693 commit 0309c21
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 6 deletions.
3 changes: 2 additions & 1 deletion main.js
Original file line number Diff line number Diff line change
Expand Up @@ -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);
})

Expand Down
11 changes: 7 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down Expand Up @@ -48,19 +48,22 @@
{
"target": "nsis",
"arch": [
"x64"
"x64",
"ia32"
]
},
{
"target": "zip",
"arch": [
"x64"
"x64",
"ia32"
]
},
{
"target": "msi",
"arch": [
"x64"
"x64",
"ia32"
]
}
]
Expand Down
2 changes: 1 addition & 1 deletion styles.css
Original file line number Diff line number Diff line change
@@ -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;
}

Expand Down

0 comments on commit 0309c21

Please sign in to comment.