From 298e8f536403fbf40968d6457beb21fc278431b7 Mon Sep 17 00:00:00 2001 From: Damiano Ferrari Date: Sat, 25 May 2024 15:50:45 +0200 Subject: [PATCH] Version 4.2.2 --- .../metadata/android/en-US/changelogs/43.txt | 7 +++++++ .../metadata/android/it-IT/changelogs/43.txt | 7 +++++++ lib/pages/conversion_page.dart | 2 +- lib/utils/app_scaffold.dart | 4 ++-- ...ithub.ferraridamiano.ConverterNOW.appdata.xml | 12 ++++++++++++ melos.yaml | 4 ---- .../calculator_widget/lib/calculator_widget.dart | 2 +- pubspec.lock | 16 ++++++++-------- pubspec.yaml | 6 +++--- snap/snapcraft.yaml | 2 +- 10 files changed, 42 insertions(+), 20 deletions(-) create mode 100644 fastlane/metadata/android/en-US/changelogs/43.txt create mode 100644 fastlane/metadata/android/it-IT/changelogs/43.txt diff --git a/fastlane/metadata/android/en-US/changelogs/43.txt b/fastlane/metadata/android/en-US/changelogs/43.txt new file mode 100644 index 00000000..719e4b4b --- /dev/null +++ b/fastlane/metadata/android/en-US/changelogs/43.txt @@ -0,0 +1,7 @@ +🎨 Custom Themes! Give your app a unique touch by choosing your favorite theme. +⚙️ Optimized Settings Page! Now even simpler and more intuitive to use. +✨ Graphic Enhancements! Small improvements that make the app even more beautiful and enjoyable to use. +🌍 Improved Translations! Thanks to @rehork and @pereorga, the Polish and Catalan versions are more accurate than ever. +🐞 Bug Fixes and General Improvements! We've worked hard to provide you with an even better experience. + +Do you like Converter NOW? Leave a review and let us know what you think! ✔️ \ No newline at end of file diff --git a/fastlane/metadata/android/it-IT/changelogs/43.txt b/fastlane/metadata/android/it-IT/changelogs/43.txt new file mode 100644 index 00000000..1f6ee0bb --- /dev/null +++ b/fastlane/metadata/android/it-IT/changelogs/43.txt @@ -0,0 +1,7 @@ +🎨 Temi personalizzati! Dai un tocco unico all'app scegliendo il tema che più ti piace. +⚙️ Pagina delle impostazioni ottimizzata! Ora è ancora più semplice e intuitiva da usare. +✨ Ritocchi grafici! Piccoli miglioramenti che rendono l'app ancora più bella e piacevole da utilizzare. +🌍 Traduzioni migliorate! Grazie a @rehork e @pereorga, le versioni in Polacco e Catalano sono più accurate che mai. +🐞 Correzioni di bug e miglioramenti generali! Abbiamo lavorato sodo per offrirti un'esperienza sempre migliore. + +Ti piace Converter NOW? Lascia una recensione e facci sapere cosa ne pensi! ✔️ \ No newline at end of file diff --git a/lib/pages/conversion_page.dart b/lib/pages/conversion_page.dart index b0e8e2e0..a5bf419c 100644 --- a/lib/pages/conversion_page.dart +++ b/lib/pages/conversion_page.dart @@ -119,7 +119,7 @@ class ConversionPage extends ConsumerWidget { SliverPadding( padding: EdgeInsets.only( top: 10, - bottom: isDrawerFixed(MediaQuery.of(context).size.width) + bottom: isDrawerFixed(MediaQuery.sizeOf(context).width) ? 55 // So FAB doesn't overlap the card : 0, ), diff --git a/lib/utils/app_scaffold.dart b/lib/utils/app_scaffold.dart index 6dbdf22b..574b4ffc 100644 --- a/lib/utils/app_scaffold.dart +++ b/lib/utils/app_scaffold.dart @@ -98,7 +98,7 @@ class AppScaffold extends ConsumerWidget { ), ), floatingActionButton: (selectedSection == AppPage.conversions && - MediaQuery.of(context).viewInsets.bottom == 0) + MediaQuery.viewInsetsOf(context).bottom == 0) ? FloatingActionButton( key: const ValueKey('clearAll'), onPressed: () => clearAll(_isDrawerFixed), @@ -150,7 +150,7 @@ class AppScaffold extends ConsumerWidget { ) : null, floatingActionButton: (selectedSection == AppPage.conversions && - MediaQuery.of(context).viewInsets.bottom == 0) + MediaQuery.viewInsetsOf(context).bottom == 0) ? FloatingActionButton( key: const ValueKey('clearAll'), onPressed: () => clearAll(_isDrawerFixed), diff --git a/linux/io.github.ferraridamiano.ConverterNOW.appdata.xml b/linux/io.github.ferraridamiano.ConverterNOW.appdata.xml index a07f0883..00f55f03 100644 --- a/linux/io.github.ferraridamiano.ConverterNOW.appdata.xml +++ b/linux/io.github.ferraridamiano.ConverterNOW.appdata.xml @@ -84,6 +84,18 @@ + + +
    +
  • 🎨 Custom Themes! Give your app a unique touch by choosing your favorite theme.
  • +
  • ⚙️ Optimized Settings Page! Now even simpler and more intuitive to use.
  • +
  • ✨ Graphic Enhancements! Small improvements that make the app even more beautiful and enjoyable to use.
  • +
  • 🌍 Improved Translations! Thanks to @rehork and @pereorga, the Polish and Catalan versions are more accurate than ever.
  • +
  • 🐞 Bug Fixes and General Improvements! We've worked hard to provide you with an even better experience.
  • +
+

Do you like Converter NOW? Leave a review and let us know what you think! ✔️

+
+
    diff --git a/melos.yaml b/melos.yaml index 46dd3b53..cab66b2f 100644 --- a/melos.yaml +++ b/melos.yaml @@ -6,10 +6,6 @@ packages: command: bootstrap: - # It seems so that running "pub get" in parallel has some issues (like - # https://github.com/dart-lang/pub/issues/3404). Disabling this feature - # makes the CI much more stable. - runPubGetInParallel: false hooks: post: melos run compile_icons && melos run generate_translations diff --git a/packages/calculator_widget/lib/calculator_widget.dart b/packages/calculator_widget/lib/calculator_widget.dart index 119c64cc..9998af5d 100644 --- a/packages/calculator_widget/lib/calculator_widget.dart +++ b/packages/calculator_widget/lib/calculator_widget.dart @@ -158,7 +158,7 @@ class CalculatorNumpad extends ConsumerWidget { @override Widget build(BuildContext context, WidgetRef ref) { - final calcWidth = MediaQuery.of(context).size.width; + final calcWidth = MediaQuery.sizeOf(context).width; return Padding( padding: const EdgeInsets.all(_buttonsSpacing), diff --git a/pubspec.lock b/pubspec.lock index 131bea35..f9b93d64 100644 --- a/pubspec.lock +++ b/pubspec.lock @@ -37,10 +37,10 @@ packages: dependency: transitive description: name: archive - sha256: ecf4273855368121b1caed0d10d4513c7241dfc813f7d3c8933b36622ae9b265 + sha256: "6bd38d335f0954f5fad9c79e614604fbf03a0e5b975923dd001b6ea965ef5b4b" url: "https://pub.dev" source: hosted - version: "3.5.1" + version: "3.6.0" args: dependency: transitive description: @@ -298,10 +298,10 @@ packages: dependency: "direct main" description: name: go_router - sha256: "7685acd06244ba4be60f455c5cafe5790c63dc91fc03f7385b1e922a6b85b17c" + sha256: "6ad5662b014c06c20fa46ab78715c96b2222a7fe4f87bf77e0289592c2539e86" url: "https://pub.dev" source: hosted - version: "14.1.1" + version: "14.1.3" google_fonts: dependency: "direct main" description: @@ -354,10 +354,10 @@ packages: dependency: transitive description: name: image - sha256: "4c68bfd5ae83e700b5204c1e74451e7bf3cf750e6843c6e158289cf56bda018e" + sha256: "2237616a36c0d69aef7549ab439b833fb7f9fb9fc861af2cc9ac3eedddd69ca8" url: "https://pub.dev" source: hosted - version: "4.1.7" + version: "4.2.0" integration_test: dependency: "direct dev" description: flutter @@ -939,10 +939,10 @@ packages: dependency: transitive description: name: url_launcher_android - sha256: "360a6ed2027f18b73c8d98e159dda67a61b7f2e0f6ec26e86c3ada33b0621775" + sha256: "17cd5e205ea615e2c6ea7a77323a11712dffa0720a8a90540db57a01347f9ad9" url: "https://pub.dev" source: hosted - version: "6.3.1" + version: "6.3.2" url_launcher_ios: dependency: transitive description: diff --git a/pubspec.yaml b/pubspec.yaml index e51dd1df..fe81e242 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -2,7 +2,7 @@ name: converterpro description: Unit and currencies converter publish_to: none -version: 4.2.1+42 +version: 4.2.2+43 environment: sdk: ">=3.0.0 <4.0.0" @@ -23,7 +23,7 @@ dependencies: # App logo in drawer google_fonts: ^6.2.1 # Navigation - go_router: ^14.1.1 + go_router: ^14.1.2 # Downloading the exchange rates http: ^1.2.1 # Translations @@ -37,7 +37,7 @@ dependencies: # Just for getting the browser current language universal_io: ^2.2.2 # Open external pages such as GitHub repo, Play Store, etc - url_launcher: ^6.2.5 + url_launcher: ^6.2.6 # Load optimized svg icons vector_graphics: ^1.1.11+1 # Resize window during testing diff --git a/snap/snapcraft.yaml b/snap/snapcraft.yaml index f16ccc48..415ef434 100644 --- a/snap/snapcraft.yaml +++ b/snap/snapcraft.yaml @@ -1,5 +1,5 @@ name: converternow -version: 4.2.1 +version: 4.2.2 summary: Unit and currencies converter description: A Unit and Currencies Converter. Converter NOW is immediate, fast and easy to use!