-
Notifications
You must be signed in to change notification settings - Fork 58
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Ubuntu 17.10 Support #71
Comments
Appears to be an upstream issue with Ubuntu 17.10 documented here: https://bugs.launchpad.net/ubuntu/+source/ubuntu-themes/+bug/1723422
Ok, the ubuntu proposed does fix the |
It seems that Gnome 3.26 has changed everything... Nothing I currently have works on it, and it looks list I will have to add a native DBus implementation to support it. |
Ubuntu 17.10 + "TopIcons Plus" extension [ https://extensions.gnome.org/extension/1031/topicons/ ] |
Interesting... And great find. This will make 17.10 compatibility a lot easier. Thanks!! |
Since ISVs don't have control over the desktops they deploy to, I'd disagree with this statement. No 3rd party software need to be installed on Mac or Windows for a System Tray to work properly. Using legacy packages is only a stop-gap in my opinion. I hope you feel the same way. <3 |
I do and I'm really, really hoping a native DBUS implementation solves this problem, because I hate the idea of having an extension to do it... Some background... So for some versions of Gnome, Gnome leadership decided to hide all icons by default, and only show them if you press magic key combinations or click on a not-obvious-at-all button at the bottom left of the screen. Because I couldn't figure out how to get around this restriction showing tray icons using C/C++ (the process is to start with C/C++ and then port the code to Java) I had to resort to using an extension, which the SystemTray runtime will automatically install. Nothing 3rd party, since I maintain the extension and it is only available via the SystemTray (however, it's an extension and I hate having to use it). The extension installed is very similar to TopIcons, and it was previously excluded from Ubuntu, just because the Ubuntu Gnome implementations were completely different than "official" gnome, even though both report themselves as using gnome. As a stop-gap solution that will work until (hopefully) a DBUS implementation fixes it, these extensions are sadly the only way I know how to show an icon in the tray area. |
@dorkbox what if we leveraged something like Steam does instead... Can Java do this? |
Update on the steam menu above... the [Desktop Entry]
Name=Steam
Comment=Application for managing and playing games on Steam
Exec=/usr/bin/steam %U
Icon=steam
Terminal=false
Type=Application
Categories=Network;FileTransfer;Game;
MimeType=x-scheme-handler/steam;
Actions=Store;Community;Library;Servers;Screenshots;News;Settings;BigPicture;Friends; And then the executable path and language translations are as follows: [Desktop Action Store]
Name=Store
Name[de]=Shop
Name[es]=Tienda
Name[fr]=Magasin
Name[it]=Negozio
Name[pt]=Loja
Name[ru]=Магазин
Name[zh_CN]=商店
Name[zh_TW]=商店
Exec=steam steam://store I wanted to offer this information because it was hard to find on the internet and I wanted to clarify that it does not appear to be a solution we can leverage after the application has been started. |
It's now working in Ubuntu 17.10. note: there are some harmless GLIB warnings now, that I can't seem to get rid of. The test examples work as expected. I will do a release shortly. |
Version 3.17 is now released, there is support now for Ubuntu 17.10, 18.04, Fedora 27, 28, 29, and Debian 9.5 (+ all DE's possible from it's installer, so Gnome3, KDE, Xfce, LXDE, and MATE). ElementaryOS 5.0 removed support for tray icons entirely, however a workaround is possible to get them back via some compiled libraries. |
@dorkbox FYI, I've found a reasonable way to draw the menu at the task bar using a minimize/restore listener on a 1px x 1px window, wanted to share. (Pure Java, no JNI). |
That is fantastic! Something you might find useful, is that I have re-written the macos tray to natively support icons in the menu. (See: https://git.dorkbox.com/dorkbox/SystemTray for screenshots). There is still the fallback of AWT, but having icons there as well is a nice improvement. I've also re-written the windows one (to fix scaling bugs) to use JNA as well, but there are some interesting menu position bugs w.r.t. monitor scaling. HiDPI is tricky stuff when the JVM doesn't fully support it. Even IntelliJ struggles with HiDPI scaling bugs on windows, and every three updates seems to be a JVM scaling bug fix. |
Newer Java is restricting what APIs can be used with reflection. Java 8, 9, 10 are EOL, so we decided to use this technique. The state of libappindicator (or lack thereof) has forced us to write our own workaround. As always, feel free to use what you'd like out of out tray source for this project. |
Some notable findings:
|
Yes, the inconsistent state of libappindicator is quite frustrating, and your work looks like a great workaround.
Thank you! Do I still have permission to use it under the Apache 2 license? |
Absolutely. Anything inside the |
Just tried running SystemTray 3.11 on Ubuntu 17.10 x64 using openjdk-8:
The text was updated successfully, but these errors were encountered: