Skip to content

Commit

Permalink
Version 0.5.3
Browse files Browse the repository at this point in the history
  • Loading branch information
redsolver committed Apr 8, 2021
1 parent a6138df commit 2359e38
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 4 deletions.
11 changes: 11 additions & 0 deletions lib/main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -224,6 +224,17 @@ class MyApp extends StatelessWidget {
debugShowCheckedModeBanner: false,
localizationsDelegates: Translations.localizationsDelegates,
supportedLocales: Translations.supportedLocales,
localeListResolutionCallback: (locales, supportedLocales) {
for (final wantedLocale in locales) {
for (final supportedLocale in supportedLocales) {
if (wantedLocale.languageCode == supportedLocale.languageCode) {
return supportedLocale;
}
}
}
return supportedLocales
.firstWhere((element) => element.languageCode == 'en');
},
);
},
);
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.2+52
version: 0.5.3+53

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 @@ -28,6 +28,10 @@ localized:
• Small bug fixes and optimizations
builds:
- versionName: 0.5.3
versionCode: 53
sha256: 016923b6247f9be6c9baf93541333a77677f5ff0b36220763fe93ceef60a0250
apkLink: sia://AABQKroBHN8arO6Nuk_ZH3_6NEQhtKPBKWMIIEGfT-zusA
- versionName: 0.5.2
versionCode: 52
sha256: 696af6220c3956661a7950d450931ff77d2c854fb4c95065bed28fe8f804c0d2
Expand Down Expand Up @@ -89,8 +93,8 @@ builds:
sha256: c62c2d73c0ead2fb1a287eecc6d637c318cb49b8c1543bbd2110d73b78ee7c6a
apkLink: sia://AADzaC8YfqVlUAcSf8-1PdT9mLDb9KRLeV9Pi8y3l8G2KA

currentVersionName: 0.5.2
currentVersionCode: 52
currentVersionName: 0.5.3
currentVersionCode: 53

added: 1597353106000
lastUpdated: 1617735429122
lastUpdated: 1617919168014

0 comments on commit 2359e38

Please sign in to comment.