mirror of
https://github.com/ImranR98/Obtainium.git
synced 2025-08-01 21:30:16 +02:00
Bugfixes
Don't replace / in versions (#1023) Fix HTML version extraction (#1021) Update check only for installed apps (#1012)
This commit is contained in:
@@ -310,6 +310,23 @@ class _SettingsPageState extends State<SettingsPage> {
|
||||
})
|
||||
],
|
||||
),
|
||||
height16,
|
||||
Row(
|
||||
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
||||
children: [
|
||||
Flexible(
|
||||
child: Text(tr(
|
||||
'onlyCheckInstalledOrTrackOnlyApps'))),
|
||||
Switch(
|
||||
value: settingsProvider
|
||||
.onlyCheckInstalledOrTrackOnlyApps,
|
||||
onChanged: (value) {
|
||||
settingsProvider
|
||||
.onlyCheckInstalledOrTrackOnlyApps =
|
||||
value;
|
||||
})
|
||||
],
|
||||
),
|
||||
height32,
|
||||
Text(
|
||||
tr('sourceSpecific'),
|
||||
@@ -535,7 +552,8 @@ class _SettingsPageState extends State<SettingsPage> {
|
||||
onPressed: () {
|
||||
context.read<LogsProvider>().get().then((logs) {
|
||||
if (logs.isEmpty) {
|
||||
showMessage(ObtainiumError(tr('noLogs')), context);
|
||||
showMessage(
|
||||
ObtainiumError(tr('noLogs')), context);
|
||||
} else {
|
||||
showDialog(
|
||||
context: context,
|
||||
|
Reference in New Issue
Block a user