Skip to content

Releases: hashtag-include/slacky

Lowered minimum app size

14 Sep 03:57
Compare
Choose a tag to compare

Changed minimum app size from 1100x700 to 765x300 to fix #6 by supporting smaller windows.

Fix for links crashing new chrome tabs

19 Apr 02:49
Compare
Choose a tag to compare

In a recent update to chrome, there was a change which broke the current
window.open() logic used when opening links from inside Slacky. The
solution is to move window.open() logic from the background file to
javascript controlled by the view.

Automatically focus on Input

19 Apr 03:11
Compare
Choose a tag to compare

Adding some much needed auto-focus on input elements within the app. The entire issue stemmed from the webview not getting focus when the app's window did. Once I sorted that, the Slack web app took care of the rest.

Open links in a new, regular Chrome window or tab

19 Apr 05:49
Compare
Choose a tag to compare

The old way the code was handling links opened them in a webapp webview window. The reasoning behind it - as I understand it from the code comments - was because window.open() crashed Chrome. But that's only correct when trying to use window.open() without the event handler because of a security restriction on Chrome packaged apps. Once you add the event handler, window.open() works perfectly fine.

See more information here

Removed the frame options

19 Apr 05:50
Compare
Choose a tag to compare

When you specify frame options like 'color' the window doesn't inherit the OS' theme in regards to window controls, colors, etc. This is a personal preference but I get frustrated with 'close', 'minimize', and 'maximize' suddenly appearing on the other side of the window and not looking like the rest of my native apps. I'm assuming this issue is more noticeable on certain Linux flavors and windows managers, and Mac OS.

Fixed Page Content Size

19 Apr 05:52
Compare
Choose a tag to compare

Fixed bug where page content would not conform to the window size properly when resizing

Fixed links not opening properly

19 Apr 05:54
Compare
Choose a tag to compare

Fixed links not opening properly, improved code readability, and changed css to be inline to reduce http requests

Initial Release

19 Apr 05:54
Compare
Choose a tag to compare

The birth of Slacky