-
Notifications
You must be signed in to change notification settings - Fork 258
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
Unable to open Gitify on Pop!_OS 22.04 #1612
Comments
There's not enough information included in this Issue for us to act on it:
In general, filing Issues saying simply "not works" isn't a good use of anyone's time, for any project. If you're unsure about your English, there's more than enough LLMs out there to help you translate. They could also guide you through common debugging steps, and suggest what you could do to fill out an effective bug report. If you're unsure what even to prompt it, you could copy paste my message and your issue and it would probably explain in whatever language you'd like. Happy to re-open this if sufficiently more information is provided later. |
I sincerely apologize for my informal description of the issue. I have added more details to it; would you mind reviewing it again? Please feel free to ask me for any additional information if needed. @bmulholland |
Much better, thank you! |
@boundless-forest if possible, I'd be interested to hear your experience running Gitify from source code on your PopOS machine. Does that work? |
I'm stuck at the first step when installing dependencies; it reports the following error, indicating something unexpected in the post-install script. ⋊> ~/w/gitify on main ◦ pnpm install 13:58:56
Lockfile is up to date, resolution step is skipped
Packages: +2 -20
++--------------------
Progress: resolved 0, reused 21, downloaded 1, added 2, done
node_modules/electron: Running postinstall script, failed in 2m 15.9s
node_modules/electron postinstall$ node install.js
│ RequestError
│ at ClientRequest.<anonymous> (/home/bear/working-on/gitify/node_modules/got/dist/source/core/index.js:970:111)
│ at Object.onceWrapper (node:events:622:26)
│ at ClientRequest.emit (node:events:519:35)
│ at origin.emit (/home/bear/working-on/gitify/node_modules/@szmarczak/http-timer/dist/source/index.js:43:20)
│ at emitErrorEvent (node:_http_client:103:11)
│ at TLSSocket.socketErrorListener (node:_http_client:506:5)
│ at TLSSocket.emit (node:events:507:28)
│ at emitErrorNT (node:internal/streams/destroy:170:8)
│ at emitErrorCloseNT (node:internal/streams/destroy:129:3)
│ at process.processTicksAndRejections (node:internal/process/task_queues:90:21)AggregateError [ETIMEDOUT]:
│ at internalConnectMultiple (node:net:1128:18)
│ at afterConnectMultiple (node:net:1693:7)
└─ Failed in 2m 15.9s at /home/bear/working-on/gitify/node_modules/electron
ELIFECYCLE Command failed with exit code 1. |
Yeah, env issues can be frustrating! Let us know when you've worked through issues installing electron etc and have details on running Gitify itself. |
ACtually i have the exact same issue on PopOS 22.04. The tray appear but does not react to click (left/right). |
I have this same issue. Can't be used right now on Pop!_OS. |
Curious if any of you have tried downgrading Gitify. I'm interested in what is the latest working version |
I did a test with those versions, neither of them works, but I noticed a strange log in the installation, not sure if it's helpful. ⋊> ~/Downloads sudo dpkg -i gitify_5.10.0_amd64.deb 13:49:46
dpkg: warning: downgrading gitify from 5.17.0 to 5.10.0
(Reading database ... 235664 files and directories currently installed.)
Preparing to unpack gitify_5.10.0_amd64.deb ...
Unpacking gitify (5.10.0) over (5.17.0) ...
Setting up gitify (5.10.0) ...
update-alternatives is /usr/bin/update-alternatives
Could not parse file "/usr/share/applications/guake.desktop": No such file or directory // this line
Processing triggers for hicolor-icon-theme (0.17-2) ...
Processing triggers for mailcap (3.70+nmu1ubuntu1) ...
Processing triggers for desktop-file-utils (0.26-1ubuntu3) ...
Processing triggers for gnome-menus (3.36.0-1ubuntu3) ... The log looks like this: ⋊> ~ cat ~/.config/gitify/logs/main.log 14:00:26
[2024-12-26 13:36:47.848] [info] Electron's autoUpdater does not support the 'linux' platform. Ref: https://www.electronjs.org/docs/latest/api/auto-updater#platform-notices
[2024-12-26 13:41:42.718] [info] Electron's autoUpdater does not support the 'linux' platform. Ref: https://www.electronjs.org/docs/latest/api/auto-updater#platform-notices
[2024-12-26 13:42:00.910] [info] Electron's autoUpdater does not support the 'linux' platform. Ref: https://www.electronjs.org/docs/latest/api/auto-updater#platform-notices
[2024-12-26 13:42:31.155] [info] Electron's autoUpdater does not support the 'linux' platform. Ref: https://www.electronjs.org/docs/latest/api/auto-updater#platform-notices
[2024-12-26 13:46:09.007] [info] Electron's autoUpdater does not support the 'linux' platform. Ref: https://www.electronjs.org/docs/latest/api/auto-updater#platform-notices
[2024-12-26 13:46:37.737] [info] Electron's autoUpdater does not support the 'linux' platform. Ref: https://www.electronjs.org/docs/latest/api/auto-updater#platform-notices
[2024-12-26 13:51:21.548] [info] Electron's autoUpdater does not support the 'linux' platform. Ref: https://www.electronjs.org/docs/latest/api/auto-updater#platform-notices
|
Thanks @boundless-forest So to confirm my understanding, these versions were tested and found incompatible with PopOS
Re: the |
Yes, it's a bit strange that I noticed from the GitHub issues that Gitify appears to work on other Linux platforms except Pop!_OS. However, since Pop!_OS is based on Ubuntu, it should function properly as well. I have researched this issue extensively but have not found a workaround. Do you have any suggestions? |
I'd continue to debug the logic within https://github.com/gitify-app/gitify/blob/main/src/main/main.ts, which controls showing/hiding the main window with the help of the package https://github.com/max-mapper/menubar |
I'm here if anything that I can help. Please tell me. |
🔍 Is there already an issue for your problem?
📝 Description
I discovered Gitify this afternoon and attempted to install the deb version on PopOS first, which installed successfully. However, when I click the icon, the Gitify window does not open. The icon appears in the system bar, but there is no response when clicked.
I checked the process info like this:
I guess AppImage might work, so I’ll give it a try, but no luck. The Gitify window still hasn’t popped up.
The AppImage console output:
I'm not sure what to do next; perhaps there's a way to output a debug log?
🪜 Steps To Reproduce
Gitify Version
5.16.1
Operating System
PopOs 22.04
The text was updated successfully, but these errors were encountered: