Compare commits

...

6 Commits

Author SHA1 Message Date
Imran Remtulla
bd5f21984e Shorter default interval (see #87) 2022-11-04 19:10:20 -04:00
Imran Remtulla
5037d77b14 Increment version 2022-11-04 18:57:06 -04:00
Imran Remtulla
c9711c7734 Addresses #76 and #93 2022-11-04 18:53:25 -04:00
Imran Remtulla
76e98feeb7 Increment version 2022-11-02 20:24:12 -04:00
Imran Remtulla
03da23f77a Addresses #90 2022-11-02 20:23:40 -04:00
Imran Remtulla
9b99e2b302 Addresses #88, #89 2022-11-02 20:07:46 -04:00
8 changed files with 72 additions and 13 deletions

View File

@@ -28,6 +28,7 @@ class _GeneratedFormModalState extends State<GeneratedFormModal> {
@override @override
void initState() { void initState() {
super.initState(); super.initState();
values = widget.defaultValues;
valid = widget.initValid; valid = widget.initValid;
} }

View File

@@ -14,7 +14,7 @@ import 'package:workmanager/workmanager.dart';
import 'package:dynamic_color/dynamic_color.dart'; import 'package:dynamic_color/dynamic_color.dart';
import 'package:device_info_plus/device_info_plus.dart'; import 'package:device_info_plus/device_info_plus.dart';
const String currentVersion = '0.6.4'; const String currentVersion = '0.6.6';
const String currentReleaseTag = const String currentReleaseTag =
'v$currentVersion-beta'; // KEEP THIS IN SYNC WITH GITHUB RELEASES 'v$currentVersion-beta'; // KEEP THIS IN SYNC WITH GITHUB RELEASES

View File

@@ -63,6 +63,7 @@ class _AppPageState extends State<AppPage> {
Image.memory( Image.memory(
app!.installedInfo!.icon!, app!.installedInfo!.icon!,
height: 150, height: 150,
gaplessPlayback: true,
) )
]) ])
: Container(), : Container(),

View File

@@ -23,6 +23,7 @@ class AppsPageState extends State<AppsPage> {
var updatesOnlyFilter = var updatesOnlyFilter =
AppsFilter(includeUptodate: false, includeNonInstalled: false); AppsFilter(includeUptodate: false, includeNonInstalled: false);
Set<String> selectedIds = {}; Set<String> selectedIds = {};
DateTime? refreshingSince;
clearSelected() { clearSelected() {
if (selectedIds.isNotEmpty) { if (selectedIds.isNotEmpty) {
@@ -119,8 +120,9 @@ class AppsPageState extends State<AppsPage> {
sortedApps = sortedApps.reversed.toList(); sortedApps = sortedApps.reversed.toList();
} }
var existingUpdateIdsAllOrSelected = appsProvider var existingUpdates = appsProvider.getExistingUpdates(installedOnly: true);
.getExistingUpdates(installedOnly: true)
var existingUpdateIdsAllOrSelected = existingUpdates
.where((element) => selectedIds.isEmpty .where((element) => selectedIds.isEmpty
? sortedApps.where((a) => a.app.id == element).isNotEmpty ? sortedApps.where((a) => a.app.id == element).isNotEmpty
: selectedIds.contains(element)) : selectedIds.contains(element))
@@ -132,15 +134,34 @@ class AppsPageState extends State<AppsPage> {
: selectedIds.contains(element)) : selectedIds.contains(element))
.toList(); .toList();
if (settingsProvider.pinUpdates) {
var temp = [];
sortedApps = sortedApps.where((sa) {
if (existingUpdates.contains(sa.app.id)) {
temp.add(sa);
return false;
}
return true;
}).toList();
sortedApps = [...temp, ...sortedApps];
}
return Scaffold( return Scaffold(
backgroundColor: Theme.of(context).colorScheme.surface, backgroundColor: Theme.of(context).colorScheme.surface,
body: RefreshIndicator( body: RefreshIndicator(
onRefresh: () { onRefresh: () {
HapticFeedback.lightImpact(); HapticFeedback.lightImpact();
setState(() {
refreshingSince = DateTime.now();
});
return appsProvider.checkUpdates().catchError((e) { return appsProvider.checkUpdates().catchError((e) {
ScaffoldMessenger.of(context).showSnackBar( ScaffoldMessenger.of(context).showSnackBar(
SnackBar(content: Text(e.toString())), SnackBar(content: Text(e.toString())),
); );
}).whenComplete(() {
setState(() {
refreshingSince = null;
});
}); });
}, },
child: CustomScrollView(slivers: <Widget>[ child: CustomScrollView(slivers: <Widget>[
@@ -157,6 +178,17 @@ class AppsPageState extends State<AppsPage> {
style: Theme.of(context).textTheme.headlineMedium, style: Theme.of(context).textTheme.headlineMedium,
textAlign: TextAlign.center, textAlign: TextAlign.center,
))), ))),
if (refreshingSince != null)
SliverToBoxAdapter(
child: LinearProgressIndicator(
value: appsProvider.apps.values
.where((element) => !(element.app.lastUpdateCheck
?.isBefore(refreshingSince!) ??
true))
.length /
appsProvider.apps.length,
),
),
SliverList( SliverList(
delegate: SliverChildBuilderDelegate( delegate: SliverChildBuilderDelegate(
(BuildContext context, int index) { (BuildContext context, int index) {
@@ -168,7 +200,10 @@ class AppsPageState extends State<AppsPage> {
toggleAppSelected(sortedApps[index].app.id); toggleAppSelected(sortedApps[index].app.id);
}, },
leading: sortedApps[index].installedInfo != null leading: sortedApps[index].installedInfo != null
? Image.memory(sortedApps[index].installedInfo!.icon!) ? Image.memory(
sortedApps[index].installedInfo!.icon!,
gaplessPlayback: true,
)
: null, : null,
title: Text(sortedApps[index].installedInfo?.name ?? title: Text(sortedApps[index].installedInfo?.name ??
sortedApps[index].app.name), sortedApps[index].app.name),
@@ -327,10 +362,8 @@ class AppsPageState extends State<AppsPage> {
); );
}).then((values) { }).then((values) {
if (values != null) { if (values != null) {
bool shouldInstallUpdates = bool shouldInstallUpdates = values[0] == 'true';
values.isEmpty || values[0] == 'true'; bool shouldInstallNew = values[1] == 'true';
bool shouldInstallNew = values.isEmpty ||
(values.length >= 2 && values[1] == 'true');
settingsProvider settingsProvider
.getInstallPermission() .getInstallPermission()
.then((_) { .then((_) {

View File

@@ -155,6 +155,20 @@ class _SettingsPageState extends State<SettingsPage> {
}) })
], ],
), ),
const SizedBox(
height: 16,
),
Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [
const Text('Pin Updates to Top of Apps View'),
Switch(
value: settingsProvider.pinUpdates,
onChanged: (value) {
settingsProvider.pinUpdates = value;
})
],
),
const Divider( const Divider(
height: 16, height: 16,
), ),
@@ -199,7 +213,7 @@ class _SettingsPageState extends State<SettingsPage> {
height: 8, height: 8,
), ),
Text( Text(
'Longer intervals recommended for large App collections', 'Longer intervals may result in less reliable behaviour',
style: Theme.of(context) style: Theme.of(context)
.textTheme .textTheme
.labelMedium! .labelMedium!

View File

@@ -70,8 +70,9 @@ class AppsProvider with ChangeNotifier {
} }
downloadApk(String apkUrl, String fileName, Function? onProgress, downloadApk(String apkUrl, String fileName, Function? onProgress,
Function? urlModifier, Function? urlModifier) async {
{bool useExistingIfExists = true}) async { bool useExistingIfExists =
false; // This should be an function argument, but isn't because of the partially downloaded APK issue
var destDir = (await getExternalStorageDirectory())!.path; var destDir = (await getExternalStorageDirectory())!.path;
if (urlModifier != null) { if (urlModifier != null) {
apkUrl = await urlModifier(apkUrl); apkUrl = await urlModifier(apkUrl);

View File

@@ -55,7 +55,7 @@ class SettingsProvider with ChangeNotifier {
} }
int get updateInterval { int get updateInterval {
var min = prefs?.getInt('updateInterval') ?? 180; var min = prefs?.getInt('updateInterval') ?? 60;
if (!updateIntervals.contains(min)) { if (!updateIntervals.contains(min)) {
var temp = updateIntervals[0]; var temp = updateIntervals[0];
for (var i in updateIntervals) { for (var i in updateIntervals) {
@@ -123,6 +123,15 @@ class SettingsProvider with ChangeNotifier {
notifyListeners(); notifyListeners();
} }
bool get pinUpdates {
return prefs?.getBool('pinUpdates') ?? true;
}
set pinUpdates(bool show) {
prefs?.setBool('pinUpdates', show);
notifyListeners();
}
String? getSettingString(String settingId) { String? getSettingString(String settingId) {
return prefs?.getString(settingId); return prefs?.getString(settingId);
} }

View File

@@ -17,7 +17,7 @@ publish_to: 'none' # Remove this line if you wish to publish to pub.dev
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html # https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
# In Windows, build-name is used as the major, minor, and patch parts # In Windows, build-name is used as the major, minor, and patch parts
# of the product and file versions while build-number is used as the build suffix. # of the product and file versions while build-number is used as the build suffix.
version: 0.6.4+48 # When changing this, update the tag in main() accordingly version: 0.6.6+50 # When changing this, update the tag in main() accordingly
environment: environment:
sdk: '>=2.18.2 <3.0.0' sdk: '>=2.18.2 <3.0.0'