Skip to content

Commit

Permalink
Version 0.5.5
Browse files Browse the repository at this point in the history
  • Loading branch information
redsolver committed May 4, 2021
1 parent d4cef7d commit 32ed494
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 6 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 0.5.5

- Added support for different versionCodes for different ABIs for the same versionName (This fixes the bug that some apps can't be installed)

## 0.5.4

- Added new languages and updated translations (Thanks to all contributors!)
Expand Down
8 changes: 6 additions & 2 deletions lib/main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -599,8 +599,12 @@ class _MyHomePageState extends State<MyHomePage> {

// print(preparedKeys);

preparedKeys.sort(
(a, b) => -apps.get(a).lastUpdated.compareTo(apps.get(b).lastUpdated));
if (collectionFilter != null) {
preparedKeys.removeWhere((key) => !apps.containsKey(key));
}

preparedKeys.sort((a, b) => -(apps.get(a)?.lastUpdated ?? 0)
.compareTo(apps.get(b)?.lastUpdated ?? 0));

List<String> updateKeys = [];
//List<String> installedKeys = [];
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ description: A decentralized domain-based App Store for Android.

publish_to: "none"

version: 0.5.4+54
version: 0.5.5+55

environment:
sdk: ">=2.7.0 <3.0.0"
Expand Down
10 changes: 7 additions & 3 deletions skydroid-app.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,10 @@ localized:
• Small improvements and bugfixes
builds:
- versionName: 0.5.5
versionCode: 55
sha256: 93265676dc14d8ee89a4db5124505ee106575b2c2c9010fbbfced217ea386480
apkLink: sia://AABCNokpXSqzkRo4v8PvOU5R2PteygHex3-PK0NzVqN7fA
- versionName: 0.5.4
versionCode: 54
sha256: 282ba6b4b68a061a16efd896e76d2ef7330bc2e8793cc082ddd2b2ae4cbbfd5b
Expand Down Expand Up @@ -96,8 +100,8 @@ builds:
sha256: c62c2d73c0ead2fb1a287eecc6d637c318cb49b8c1543bbd2110d73b78ee7c6a
apkLink: sia://AADzaC8YfqVlUAcSf8-1PdT9mLDb9KRLeV9Pi8y3l8G2KA

currentVersionName: 0.5.4
currentVersionCode: 54
currentVersionName: 0.5.5
currentVersionCode: 55

added: 1597353106000
lastUpdated: 1620051888583
lastUpdated: 1620160465735

0 comments on commit 32ed494

Please sign in to comment.