Skip to content

Commit

Permalink
Added linux appimage links
Browse files Browse the repository at this point in the history
  • Loading branch information
ferraridamiano committed Apr 1, 2024
1 parent 3762c02 commit b2a6326
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 7 deletions.
3 changes: 3 additions & 0 deletions README.md
Expand Up @@ -56,6 +56,9 @@ You can find the compiled app in [GitHub releases](https://github.com/ferraridam
[<img src="https://flathub.org/assets/badges/flathub-badge-en.png"
alt="Download on Flathub"
height="50">](https://flathub.org/apps/details/io.github.ferraridamiano.ConverterNOW)
[<img src="https://user-images.githubusercontent.com/61944859/169455015-13385466-8901-48fe-ba90-b62d58b0be64.png"
alt="Download AppImage"
height="50">](https://github.com/ferraridamiano/ConverterNOW/releases/latest)
[<img src="https://snapcraft.io/static/images/badges/en/snap-store-black.svg"
alt="Get it from the Snap Store"
height="50">](https://snapcraft.io/converternow)
Expand Down
27 changes: 20 additions & 7 deletions lib/pages/settings_page.dart
Expand Up @@ -263,13 +263,26 @@ class SettingsPage extends ConsumerWidget {
title: const Text('Linux (Flatpak)'),
leading: const Icon(Icons.desktop_windows_outlined),
onTap: () => launchURL(
Uri(
scheme: 'https',
host: 'flathub.org',
path:
'/apps/details/io.github.ferraridamiano.ConverterNOW',
),
mode: LaunchMode.externalApplication),
Uri(
scheme: 'https',
host: 'flathub.org',
path:
'/apps/details/io.github.ferraridamiano.ConverterNOW',
),
mode: LaunchMode.externalApplication,
),
),
ListTile(
title: const Text('Linux (AppImage)'),
leading: const Icon(Icons.desktop_windows_outlined),
onTap: () => launchURL(
Uri(
scheme: 'https',
host: 'github.com',
path: '/ferraridamiano/ConverterNOW/releases/latest',
),
mode: LaunchMode.externalApplication,
),
),
ListTile(
title: const Text('Linux (Snap)'),
Expand Down

0 comments on commit b2a6326

Please sign in to comment.