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
I think the best UX is to use the screenshot specified in appdata.metainfo. I even wrote a small parser (I managed to get the right result, but I'm sure it won't always be like this)
cat $METAFILE| grep '<image type="source">'| sed "s/^\ *<[^>]*>//g;s/<\/[^>]*>//g"| cut -d'>' -f2 # For 1 screenshot
cat $METAFILE| grep '<image>'| sed "s/^\ *<[^>]*>//g;s/<\/[^>]*>//g"| cut -d '>' -f1 | head -n1 # For multiple screenshots
Benefits:
User see app in better resolution
this will simplify worker.sh
Warning:
Not all include appdata.xml or metainfo.xml in your AppImage
The text was updated successfully, but these errors were encountered:
Historically, most applications in Linux have an "Internet addiction" and often instead of a screenshot giving the user an idea of the application's appearance and functions, the user sees a "No Internet connection" window
I think the best UX is to use the screenshot specified in appdata.metainfo. I even wrote a small parser (I managed to get the right result, but I'm sure it won't always be like this)
Benefits:
Warning:
Not all include appdata.xml or metainfo.xml in your AppImage
The text was updated successfully, but these errors were encountered: