Skip to content

Commit

Permalink
Merge branch 'main' into fdroid
Browse files Browse the repository at this point in the history
  • Loading branch information
laiiihz committed Nov 24, 2023
2 parents 0451e80 + ff2e089 commit 79e1b02
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 13 deletions.
1 change: 0 additions & 1 deletion lib/l10n/l10n.dart
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import 'package:flutter/material.dart';

import 'generated/app.translation.g.dart';


class S {
static AppLocalizations of(BuildContext context) {
return AppLocalizations.of(context) ??
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ final _controllers =
class NumberBaseUtil {
static update(
NumberBaseController base, List<NumberBaseController> controllers) {
for (var item in controllers) {
for (var item in controllers) {
if (item.runtimeType != base.runtimeType) {
item.controller.text = base.radixString(item.radix) ?? '';
}
Expand Down
3 changes: 2 additions & 1 deletion lib/tools/text_tools/regex_tester/regex_tester.dart
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ import 'package:language_textfield/lang_special_builder.dart';
import 'package:language_textfield/language_textfield.dart';

final useMultiline = booleanConfigProvider(const Key('multiline'));
final useCaseSensitive = booleanConfigProvider(const Key('caseSensitive'));
final useCaseSensitive =
booleanConfigProvider(const Key('caseSensitive'), defaultValue: true);
final useUnicode = booleanConfigProvider(const Key('unicode'));
final useDotAll = booleanConfigProvider(const Key('dotAll'));
final useRegex = stringConfigProvider(const Key('regex'));
Expand Down
2 changes: 1 addition & 1 deletion lib/ui/alga_view/all_apps/alga_app_item.dart
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ class AlgaAppItem extends StatelessWidget {
Widget build(BuildContext context) {
final colorScheme = Theme.of(context).colorScheme;

Color iconColor = colorScheme.onSecondaryContainer;
Color iconColor = colorScheme.tertiary;

return ValueListenableBuilder(
valueListenable: FavoriteBox.listener(item.path),
Expand Down
12 changes: 6 additions & 6 deletions pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -237,10 +237,10 @@ packages:
dependency: "direct main"
description:
name: connectivity_plus
sha256: b502a681ba415272ecc41400bd04fe543ed1a62632137dc84d25a91e7746f55f
sha256: "224a77051d52a11fbad53dd57827594d3bd24f945af28bd70bab376d68d437f0"
url: "https://pub.flutter-io.cn"
source: hosted
version: "5.0.1"
version: "5.0.2"
connectivity_plus_platform_interface:
dependency: transitive
description:
Expand Down Expand Up @@ -325,10 +325,10 @@ packages:
dependency: "direct main"
description:
name: dart_style
sha256: abd7625e16f51f554ea244d090292945ec4d4be7bfbaf2ec8cccea568919d334
sha256: "40ae61a5d43feea6d24bd22c0537a6629db858963b99b4bc1c3db80676f32368"
url: "https://pub.flutter-io.cn"
source: hosted
version: "2.3.3"
version: "2.3.4"
dbus:
dependency: transitive
description:
Expand Down Expand Up @@ -357,10 +357,10 @@ packages:
dependency: "direct main"
description:
name: dio
sha256: "417e2a6f9d83ab396ec38ff4ea5da6c254da71e4db765ad737a42af6930140b7"
sha256: "01870acd87986f768e0c09cc4d7a19a59d814af7b34cbeb0b437d2c33bdfea4c"
url: "https://pub.flutter-io.cn"
source: hosted
version: "5.3.3"
version: "5.3.4"
dynamic_color:
dependency: "direct main"
description:
Expand Down
6 changes: 3 additions & 3 deletions pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ dependencies:

cupertino_icons: ^1.0.6
archive: ^3.4.9
dart_style: ^2.3.2
dart_style: ^2.3.4
uuid: ^4.2.1
flutter_svg: ^2.0.9
window_manager: ^0.3.7
Expand Down Expand Up @@ -71,12 +71,12 @@ dependencies:
file: ^7.0.0
path_provider: ^2.1.1
quick_actions: ^1.0.6
connectivity_plus: ^5.0.1
connectivity_plus: ^5.0.2
flutter_js: ^0.8.0
google_fonts: ^6.1.0
two_dimensional_scrollables: ^0.0.4
gal: ^2.1.3
dio: ^5.3.3
dio: ^5.3.4
flex_color_picker: ^3.3.0
toml: ^0.14.0
xml: ^6.3.0
Expand Down

0 comments on commit 79e1b02

Please sign in to comment.