-
Notifications
You must be signed in to change notification settings - Fork 79
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
Make deep links work for Linux #8027
Comments
Executive summary: not possible with the current AppImage packaging format that we use on Linux. AppImage simply doesn't support this usecase scenario. As a starting point, our
in order for the DE to recognize the Then we need to make our binary aware of passing URL(s) via cmdline, which is done as follows:
then somewhere in our NIM "main" code we'd need to parse that (list of) URL(s) and handle it accordingly and emit the appropriate signal. Conclusion: fix this by moving to a more modern pkg format, such as Snap and/or Flatpak |
I think we should leave this open, but move it to a later milestone with a to-analyze tag maybe? |
Sure, why not, let's keep it open as a reminder what to do as the next step :) |
@endulab @jrainville is it still a case to implement for 0.9.0? |
Moved to 0.10. We might move to later if we want to prioritize performance in 0.10. |
Just an FYI for whoever implements this. This part from Lukas |
I was able to make it work by manually changing my configs on Ubuntu. Here are the steps:
[Desktop Entry]
Version=1.0
Name=Status
Comment=Status is a free, open-source super app
Exec="PATH/TO/status.AppImage" --uri=%U
Terminal=false
Type=Application
TryExec=PATH/TO/status.AppImage
With this in place, calling I'll now investigate how to set this up automatically when installing the app. Like @caybro said, it most likely involves changing the type of package we use. |
I have a branch here with my initial work https://github.com/status-im/status-desktop/tree/feat/bundle-app-as-flatpak. I had to pause this as there were more pressing issues |
Investigate what should be done to make deep links working on Linux.
Internal deep links should work from web browser according to specs: https://github.com/status-im/specs/blob/feature/url-shema/docs/draft/17-url-scheme.md (/u, /c and /cc for now).
The text was updated successfully, but these errors were encountered: