Compare commits

...

6 Commits

Author SHA1 Message Date
Imran Remtulla
c8d82f24a8 Merge pull request #1103 from ImranR98/dev
Increment versionCode (#1098) + ran 'dart fix'
2023-11-19 15:02:42 -06:00
Imran Remtulla
367e740a9c Increment versionCode (#1098) + ran 'dart fix' 2023-11-19 16:02:16 -05:00
Imran Remtulla
5b5a51bdad Merge pull request #1098 from gidano/main
Update hu.json
2023-11-19 14:58:46 -06:00
Imran Remtulla
7fc030a53e Merge pull request #1099 from DwainZwerg/patch-8
Update de.json
2023-11-19 14:58:38 -06:00
DwainZwerg
65087fb5f8 Update de.json
Small improvements
2023-11-19 14:11:05 +00:00
gidano
d5e789af3c Update hu.json 2023-11-19 10:32:57 +01:00
9 changed files with 39 additions and 57 deletions

View File

@@ -24,7 +24,7 @@
"colour": "Farbe",
"githubStarredRepos": "GitHub Starred Repos",
"uname": "Benutzername",
"wrongArgNum": "Falsche Anzahl von Argumenten übermittelt",
"wrongArgNum": "Falsche Anzahl von Argumenten (Parametern) übermittelt",
"xIsTrackOnly": "{} ist nur zur Nachverfolgung",
"source": "Quelle",
"app": "App",
@@ -76,7 +76,7 @@
"shareSelectedAppURLs": "Ausgewählte App-URLs teilen",
"resetInstallStatus": "Installationsstatus zurücksetzen",
"more": "Mehr",
"removeOutdatedFilter": "App-Filter 'Nicht aktuell' entfernen",
"removeOutdatedFilter": "App-Filter Nicht aktuell entfernen",
"showOutdatedOnly": "Nur nicht aktuelle Apps anzeigen",
"filter": "Filter",
"filterActive": "Filter *",
@@ -274,7 +274,7 @@
"downloadingXNotifChannel": "Lade {} herunter",
"completeAppInstallationNotifChannel": "App Installation abschließen",
"checkingForUpdatesNotifChannel": "Nach Aktualisierungen suchen",
"onlyCheckInstalledOrTrackOnlyApps": "Überprüfe nur installierte und mit „nur Nachverfolgen“ markierte Apps nach Aktualisierungen",
"onlyCheckInstalledOrTrackOnlyApps": "Überprüfe nur installierte und mit „nur Nachverfolgen“ markierte Apps auf Aktualisierungen",
"removeAppQuestion": {
"one": "App entfernen?",
"other": "Apps entfernen?"

View File

@@ -113,7 +113,7 @@
"followSystem": "Rendszer szerint",
"obtainium": "Obtainium",
"materialYou": "Material You",
"useBlackTheme": "Használjon tiszta fekete sötét témát",
"useBlackTheme": "Használjon teljesen fekete sötét témát",
"appSortBy": "App rendezés...",
"authorName": "Szerző/Név",
"nameAuthor": "Név/Szerző",
@@ -194,7 +194,7 @@
"categories": "Kategóriák",
"category": "Kategória",
"noCategory": "Nincs kategória",
"noCategories": "No Categories",
"noCategories": "Nincsenek kategóriák",
"deleteCategoryQuestion": "Törli a kategóriát?",
"categoryDeleteWarning": "A(z) {} összes app kategorizálatlan állapotba kerül.",
"addCategory": "Új kategória",

View File

@@ -174,7 +174,7 @@ class GitLab extends AppSource {
...getLinksFromParsedHTML(entryContent,
RegExp('/[^/]+\\.apk\$', caseSensitive: false), '')
.where((element) => Uri.parse(element).host != '')
.toList()
];
var entryId = entry.querySelector('id')?.innerHtml;
var version =

View File

@@ -27,21 +27,16 @@ class GeneratedFormTextField extends GeneratedFormItem {
late bool password;
late TextInputType? textInputType;
GeneratedFormTextField(String key,
{String label = 'Input',
List<Widget> belowWidgets = const [],
String defaultValue = '',
List<String? Function(String? value)> additionalValidators = const [],
GeneratedFormTextField(super.key,
{super.label,
super.belowWidgets,
String super.defaultValue = '',
List<String? Function(String? value)> super.additionalValidators = const [],
this.required = true,
this.max = 1,
this.hint,
this.password = false,
this.textInputType})
: super(key,
label: label,
belowWidgets: belowWidgets,
defaultValue: defaultValue,
additionalValidators: additionalValidators);
this.textInputType});
@override
String ensureType(val) {
@@ -54,18 +49,14 @@ class GeneratedFormDropdown extends GeneratedFormItem {
List<String>? disabledOptKeys;
GeneratedFormDropdown(
String key,
super.key,
this.opts, {
String label = 'Input',
List<Widget> belowWidgets = const [],
String defaultValue = '',
super.label,
super.belowWidgets,
String super.defaultValue = '',
this.disabledOptKeys,
List<String? Function(String? value)> additionalValidators = const [],
}) : super(key,
label: label,
belowWidgets: belowWidgets,
defaultValue: defaultValue,
additionalValidators: additionalValidators);
List<String? Function(String? value)> super.additionalValidators = const [],
});
@override
String ensureType(val) {
@@ -75,16 +66,12 @@ class GeneratedFormDropdown extends GeneratedFormItem {
class GeneratedFormSwitch extends GeneratedFormItem {
GeneratedFormSwitch(
String key, {
String label = 'Input',
List<Widget> belowWidgets = const [],
bool defaultValue = false,
List<String? Function(bool value)> additionalValidators = const [],
}) : super(key,
label: label,
belowWidgets: belowWidgets,
defaultValue: defaultValue,
additionalValidators: additionalValidators);
super.key, {
super.label,
super.belowWidgets,
bool super.defaultValue = false,
List<String? Function(bool value)> super.additionalValidators = const [],
});
@override
bool ensureType(val) {
@@ -98,22 +85,17 @@ class GeneratedFormTagInput extends GeneratedFormItem {
late WrapAlignment alignment;
late String emptyMessage;
late bool showLabelWhenNotEmpty;
GeneratedFormTagInput(String key,
{String label = 'Input',
List<Widget> belowWidgets = const [],
Map<String, MapEntry<int, bool>> defaultValue = const {},
GeneratedFormTagInput(super.key,
{super.label,
super.belowWidgets,
Map<String, MapEntry<int, bool>> super.defaultValue = const {},
List<String? Function(Map<String, MapEntry<int, bool>> value)>
additionalValidators = const [],
super.additionalValidators = const [],
this.deleteConfirmationMessage,
this.singleSelect = false,
this.alignment = WrapAlignment.start,
this.emptyMessage = 'Input',
this.showLabelWhenNotEmpty = true})
: super(key,
label: label,
belowWidgets: belowWidgets,
defaultValue: defaultValue,
additionalValidators: additionalValidators);
this.showLabelWhenNotEmpty = true});
@override
Map<String, MapEntry<int, bool>> ensureType(val) {

View File

@@ -19,7 +19,7 @@ import 'package:easy_localization/src/easy_localization_controller.dart';
// ignore: implementation_imports
import 'package:easy_localization/src/localization.dart';
const String currentVersion = '0.14.33';
const String currentVersion = '0.14.34';
const String currentReleaseTag =
'v$currentVersion-beta'; // KEEP THIS IN SYNC WITH GITHUB RELEASES

View File

@@ -486,7 +486,7 @@ class _AddAppPageState extends State<AddAppPage> {
: TextDecoration.none,
fontStyle: FontStyle.italic),
)))
.toList()
]);
return Scaffold(

View File

@@ -503,7 +503,7 @@ class AppsPageState extends State<AppsPage> {
.entries
.map((e) =>
((e.key / (listedApps[index].app.categories.length - 1))))
.toList(),
,
1
];
if (stops.length == 2) {
@@ -522,7 +522,7 @@ class AppsPageState extends State<AppsPage> {
.map((e) =>
Color(settingsProvider.categories[e] ?? transparent)
.withAlpha(255))
.toList(),
,
Color(transparent)
])),
child: ListTile(
@@ -984,7 +984,7 @@ class AppsPageState extends State<AppsPage> {
...sourceProvider.sources
.map((e) =>
MapEntry(e.runtimeType.toString(), e.name))
.toList()
])
]
],

View File

@@ -440,7 +440,7 @@ class _ImportExportPageState extends State<ImportExportPage> {
child: Text(
tr('searchX', args: [source.name])))
]))
.toList(),
,
...sourceProvider.massUrlSources
.map((source) => Column(
crossAxisAlignment:
@@ -456,7 +456,7 @@ class _ImportExportPageState extends State<ImportExportPage> {
child: Text(
tr('importX', args: [source.name])))
]))
.toList(),
,
const Spacer(),
const Divider(
height: 32,
@@ -518,7 +518,7 @@ class _ImportErrorDialogState extends State<ImportErrorDialog> {
style: const TextStyle(fontStyle: FontStyle.italic),
)
]);
}).toList()
})
]),
actions: [
TextButton(

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
# 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.
version: 0.14.33+226 # When changing this, update the tag in main() accordingly
version: 0.14.34+228 # When changing this, update the tag in main() accordingly
environment:
sdk: '>=3.0.0 <4.0.0'