You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As per #10, this is the proposed way for detecting .AppImage versions. Putting this here so we can gather feedback on it. The current implementation currently matches for files with the .AppImage suffix.
So thinking about it again maybe we could do something much simpler which would cover at least >80% of cases:
Look for files with the .AppImage suffix
If there are at least 2 - characters in the filename, remove everything behind the second-last - character from the filename
there is only one - character in the filename, remove everything behind the -
Replace _ with
Compare the result against what the user wants to launch to determine whether we have a candidate
If there are at least 2 - characters in the filename, assume that what is between the first and second - is the version; this will be needed to decide amongst several candidates (to pick the latest version)
The text was updated successfully, but these errors were encountered:
As per #10, this is the proposed way for detecting .AppImage versions. Putting this here so we can gather feedback on it. The current implementation currently matches for files with the .AppImage suffix.
The text was updated successfully, but these errors were encountered: