-
Notifications
You must be signed in to change notification settings - Fork 78
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
AppImage support #181
base: master
Are you sure you want to change the base?
AppImage support #181
Conversation
@@ -39,7 +39,7 @@ fn symlink_dir(src: &Path, dst: &Path) -> io::Result<()> { | |||
} | |||
|
|||
#[cfg(unix)] | |||
fn symlink_file(src: &Path, dst: &Path) -> io::Result<()> { | |||
pub fn symlink_file(src: &Path, dst: &Path) -> io::Result<()> { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm not sure if there's another intended way to do this
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not sure if I just missed another way of doing this, but AppDir specifies you can symlink the .desktop file and the icons to the AppDir root
this should close #75. It's not quite done yet but does work (want to cleanup). AppImages require two things, the AppDir and the AppImage runtime; I found a couple of ways of setting this up, and went with what I thought was the best.
Other similar implementations
This mimicks the last one downloading the runtime when bundling, but doesn't cache it.