Skip to content

Commit

Permalink
⚡ v1.0.1+1 Released with Flatpak support.
Browse files Browse the repository at this point in the history
V1.0.1+1 source
  • Loading branch information
omegaui authored Mar 25, 2024
2 parents a5ae794 + a1f7b3c commit c5a701c
Show file tree
Hide file tree
Showing 11 changed files with 28 additions and 35 deletions.
49 changes: 21 additions & 28 deletions lib/config/assets/generators/linux_app_finder.dart
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,6 @@ class LinuxAppFinder {
static Set<String> iconPaths = {};
bool initialized = false;
String? systemIconTheme;
bool tempDebug = false;

void _tempDebug(e) {
if (tempDebug) {
print(e);
}
}

void initialize() {
if (initialized) {
Expand All @@ -33,27 +26,27 @@ class LinuxAppFinder {

prettyLog(tag: "LinuxAppFinder", value: "Loading Apps ...");

// // Finding Global Applications
// _addAppsFrom('/usr/share/applications', onNotExistEvent: () {
// prettyLog(
// tag: "LinuxAppFinder",
// value: "Unable to find any global applications ...");
// });
//
// // Finding Local Snap Applications
// _addAppsFrom('${Platform.environment['HOME']}/.local/share/applications',
// onNotExistEvent: () {
// prettyLog(
// tag: "LinuxAppFinder",
// value: "Unable to find local applications ...");
// });
//
// // Finding Global Snap Applications
// _addAppsFrom('/var/lib/snapd/desktop/applications', onNotExistEvent: () {
// prettyLog(
// tag: "LinuxAppFinder",
// value: "Unable to find any global snap applications ...");
// });
// Finding Global Applications
_addAppsFrom('/usr/share/applications', onNotExistEvent: () {
prettyLog(
tag: "LinuxAppFinder",
value: "Unable to find any global applications ...");
});

// Finding Local Snap Applications
_addAppsFrom('${Platform.environment['HOME']}/.local/share/applications',
onNotExistEvent: () {
prettyLog(
tag: "LinuxAppFinder",
value: "Unable to find local applications ...");
});

// Finding Global Snap Applications
_addAppsFrom('/var/lib/snapd/desktop/applications', onNotExistEvent: () {
prettyLog(
tag: "LinuxAppFinder",
value: "Unable to find any global snap applications ...");
});

// Finding Global Flatpak Applications
_addAppsFrom('/var/lib/flatpak/exports/share/applications',
Expand Down
2 changes: 1 addition & 1 deletion lib/constants/app_meta_info.dart
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
class AppMetaInfo {
AppMetaInfo._();

static const version = "v1.0.0+10";
static const version = "v1.0.1+1";
static const sourceCodeUrl = "https://github.com/omegaui/app-fleet";
static const releasePageUrl =
"https://github.com/omegaui/app-fleet/releases/latest";
Expand Down
Empty file modified package/integration/app-fleet
100644 → 100755
Empty file.
Binary file modified package/integration/bundle/app-fleet
Binary file not shown.
Binary file modified package/integration/bundle/data/flutter_assets/NOTICES.Z
Binary file not shown.
Binary file not shown.
Binary file modified package/integration/bundle/lib/libapp.so
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Name=App Fleet (Launcher)
Exec=app-fleet --mode launcher
Icon=app-fleet
Version=1.0
Version=1.0.1
Type=Application
Categories=Utility
Terminal=false
Expand Down
2 changes: 1 addition & 1 deletion package/integration/desktop-entries/app-fleet.desktop
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Name=App Fleet
Exec=app-fleet
Icon=app-fleet
Version=1.0
Version=1.0.1
Type=Application
Categories=Utility
Terminal=false
Expand Down
8 changes: 4 additions & 4 deletions updates/latest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"latest": "v1.0.0+10",
"url": "https://github.com/omegaui/app_fleet/releases/download/v1.0.0+10/app-fleet-bundle.zip",
"size": "25.5 MB",
"title": "Build 10"
"latest": "v1.0.1+1",
"url": "https://github.com/omegaui/app_fleet/releases/download/v1.0.1+1/app-fleet-bundle.zip",
"size": "25.7 MB",
"title": "Build 11"
}

0 comments on commit c5a701c

Please sign in to comment.