diff --git a/CHANGELOG.md b/CHANGELOG.md index 8f11c3c7..858d23fb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,14 @@ All notable changes to this project will be documented in this file. -The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project +adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## 2.1.4 - 2026-04-07 + +### Miscellaneous + +- Reduce the APK size ## 2.1.3 - 2025-11-07 @@ -202,7 +209,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), ### Added -- Python script to convert Samsung Notes exports to a format compatible with Material Notes (see the GitHub repository) +- Python script to convert Samsung Notes exports to a format compatible with Material Notes (see the + GitHub repository) - Ability to copy the logs to the clipboard and to export them to a text file ### Changed @@ -212,7 +220,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), ### Fixed - Using the system back button or back gesture after opening a dialog, sheet or menu closes the app -- Auto export directory picker fails when choosing a directory that is not at the root of the storage +- Auto export directory picker fails when choosing a directory that is not at the root of the + storage - JSON export file using the .txt extension instead of .json - Buttons in the editor app bar not disabled in reading mode - Button to toggle between editing and reading mode not hidden for deleted notes @@ -291,7 +300,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), ### Fixed -- Exiting the editor with the device back button or the back gesture (not the app back button) causes the content of the note to be displayed in any other note opened afterwards +- Exiting the editor with the device back button or the back gesture (not the app back button) + causes the content of the note to be displayed in any other note opened afterwards - Special characters incorrectly decoded when importing a JSON file ## 1.5.0 - 2024-08-06 @@ -340,7 +350,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), ### Fixed - Going back from the licences list doesn't close the page -- Going back from the editor page while the menu is open goes back to the notes list instead of closing the menu +- Going back from the editor page while the menu is open goes back to the notes list instead of + closing the menu - Empty note still shown until the notes list is refreshed - Devices using a system RTL language not having the app use the RTL layout - Slightly wrong icon size on the splash screen for Android 12+ devices @@ -365,7 +376,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), - Improve the search precision - Improve markdown export (support advanced text formatting and export each note to a separate file) -- Going back from the settings closes the application instead of going back to the previous page (if any) +- Going back from the settings closes the application instead of going back to the previous page (if + any) ### Fixed @@ -394,7 +406,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), ### Fixed -- App crashing when using the quick action to add a note if the app was closed, or opened but not on the notes list +- App crashing when using the quick action to add a note if the app was closed, or opened but not on + the notes list - Focus being reset in the note content text field - Drawer openable on the editor page - Selection mode note exited when adding a note @@ -410,11 +423,13 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), ### Changed -- Automatically sort in descending order when sorting by date, and in ascending order when sorting by title (the order can still be manually changed afterwards) +- Automatically sort in descending order when sorting by date, and in ascending order when sorting + by title (the order can still be manually changed afterwards) ### Removed -- Remove the app lock feature (most recent Android devices have a more stable, built-in identical functionality) +- Remove the app lock feature (most recent Android devices have a more stable, built-in identical + functionality) ### Fixed @@ -436,7 +451,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), ### Fixed - Welcome note not localized -- Going back from the editor after adding a note from the quick action when the editor was already opened on an other does not go back to the notes list +- Going back from the editor after adding a note from the quick action when the editor was already + opened on an other does not go back to the notes list ## 1.0.1 - 2024-02-10 diff --git a/android/app/build.gradle b/android/app/build.gradle index 6b66b725..73324b2f 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -41,12 +41,12 @@ android { ndkVersion = "27.0.12077973" compileOptions { - sourceCompatibility = JavaVersion.VERSION_11 - targetCompatibility = JavaVersion.VERSION_11 + sourceCompatibility = JavaVersion.VERSION_17 + targetCompatibility = JavaVersion.VERSION_17 } kotlinOptions { - jvmTarget = JavaVersion.VERSION_11 + jvmTarget = JavaVersion.VERSION_17 } dependenciesInfo { @@ -76,6 +76,12 @@ android { signingConfig signingConfigs.release } } + + packagingOptions { + jniLibs { + useLegacyPackaging true + } + } } flutter { diff --git a/assets/fonts/Barlow/Barlow-Black.ttf b/assets/fonts/Barlow/Barlow-Black.ttf deleted file mode 100644 index 9675b8ae..00000000 Binary files a/assets/fonts/Barlow/Barlow-Black.ttf and /dev/null differ diff --git a/assets/fonts/Barlow/Barlow-BlackItalic.ttf b/assets/fonts/Barlow/Barlow-BlackItalic.ttf deleted file mode 100644 index 23145953..00000000 Binary files a/assets/fonts/Barlow/Barlow-BlackItalic.ttf and /dev/null differ diff --git a/assets/fonts/Barlow/Barlow-ExtraBold.ttf b/assets/fonts/Barlow/Barlow-ExtraBold.ttf deleted file mode 100644 index 22901110..00000000 Binary files a/assets/fonts/Barlow/Barlow-ExtraBold.ttf and /dev/null differ diff --git a/assets/fonts/Barlow/Barlow-ExtraBoldItalic.ttf b/assets/fonts/Barlow/Barlow-ExtraBoldItalic.ttf deleted file mode 100644 index 9e30cef6..00000000 Binary files a/assets/fonts/Barlow/Barlow-ExtraBoldItalic.ttf and /dev/null differ diff --git a/assets/fonts/Barlow/Barlow-ExtraLight.ttf b/assets/fonts/Barlow/Barlow-ExtraLight.ttf deleted file mode 100644 index 34f02514..00000000 Binary files a/assets/fonts/Barlow/Barlow-ExtraLight.ttf and /dev/null differ diff --git a/assets/fonts/Barlow/Barlow-ExtraLightItalic.ttf b/assets/fonts/Barlow/Barlow-ExtraLightItalic.ttf deleted file mode 100644 index 14f2370f..00000000 Binary files a/assets/fonts/Barlow/Barlow-ExtraLightItalic.ttf and /dev/null differ diff --git a/assets/fonts/Barlow/Barlow-Light.ttf b/assets/fonts/Barlow/Barlow-Light.ttf deleted file mode 100644 index f3c5b701..00000000 Binary files a/assets/fonts/Barlow/Barlow-Light.ttf and /dev/null differ diff --git a/assets/fonts/Barlow/Barlow-LightItalic.ttf b/assets/fonts/Barlow/Barlow-LightItalic.ttf deleted file mode 100644 index bf782868..00000000 Binary files a/assets/fonts/Barlow/Barlow-LightItalic.ttf and /dev/null differ diff --git a/assets/fonts/Barlow/Barlow-Medium.ttf b/assets/fonts/Barlow/Barlow-Medium.ttf deleted file mode 100644 index 11d4ab20..00000000 Binary files a/assets/fonts/Barlow/Barlow-Medium.ttf and /dev/null differ diff --git a/assets/fonts/Barlow/Barlow-MediumItalic.ttf b/assets/fonts/Barlow/Barlow-MediumItalic.ttf deleted file mode 100644 index 62a4fb21..00000000 Binary files a/assets/fonts/Barlow/Barlow-MediumItalic.ttf and /dev/null differ diff --git a/assets/fonts/Barlow/Barlow-SemiBold.ttf b/assets/fonts/Barlow/Barlow-SemiBold.ttf deleted file mode 100644 index 58a64305..00000000 Binary files a/assets/fonts/Barlow/Barlow-SemiBold.ttf and /dev/null differ diff --git a/assets/fonts/Barlow/Barlow-SemiBoldItalic.ttf b/assets/fonts/Barlow/Barlow-SemiBoldItalic.ttf deleted file mode 100644 index 8cbb7bff..00000000 Binary files a/assets/fonts/Barlow/Barlow-SemiBoldItalic.ttf and /dev/null differ diff --git a/assets/fonts/Barlow/Barlow-Thin.ttf b/assets/fonts/Barlow/Barlow-Thin.ttf deleted file mode 100644 index a9d7cb96..00000000 Binary files a/assets/fonts/Barlow/Barlow-Thin.ttf and /dev/null differ diff --git a/assets/fonts/Barlow/Barlow-ThinItalic.ttf b/assets/fonts/Barlow/Barlow-ThinItalic.ttf deleted file mode 100644 index 8678b997..00000000 Binary files a/assets/fonts/Barlow/Barlow-ThinItalic.ttf and /dev/null differ diff --git a/assets/fonts/Merriweather/Merriweather-Black.ttf b/assets/fonts/Merriweather/Merriweather-Black.ttf deleted file mode 100644 index 50c3b33d..00000000 Binary files a/assets/fonts/Merriweather/Merriweather-Black.ttf and /dev/null differ diff --git a/assets/fonts/Merriweather/Merriweather-BlackItalic.ttf b/assets/fonts/Merriweather/Merriweather-BlackItalic.ttf deleted file mode 100644 index 4879abac..00000000 Binary files a/assets/fonts/Merriweather/Merriweather-BlackItalic.ttf and /dev/null differ diff --git a/assets/fonts/Merriweather/Merriweather-Light.ttf b/assets/fonts/Merriweather/Merriweather-Light.ttf deleted file mode 100644 index 034ef03d..00000000 Binary files a/assets/fonts/Merriweather/Merriweather-Light.ttf and /dev/null differ diff --git a/assets/fonts/Merriweather/Merriweather-LightItalic.ttf b/assets/fonts/Merriweather/Merriweather-LightItalic.ttf deleted file mode 100644 index 4d19550d..00000000 Binary files a/assets/fonts/Merriweather/Merriweather-LightItalic.ttf and /dev/null differ diff --git a/assets/fonts/Ubuntu/Ubuntu-Light.ttf b/assets/fonts/Ubuntu/Ubuntu-Light.ttf deleted file mode 100644 index b310d150..00000000 Binary files a/assets/fonts/Ubuntu/Ubuntu-Light.ttf and /dev/null differ diff --git a/assets/fonts/Ubuntu/Ubuntu-LightItalic.ttf b/assets/fonts/Ubuntu/Ubuntu-LightItalic.ttf deleted file mode 100644 index ad0741b4..00000000 Binary files a/assets/fonts/Ubuntu/Ubuntu-LightItalic.ttf and /dev/null differ diff --git a/assets/fonts/Ubuntu/Ubuntu-Medium.ttf b/assets/fonts/Ubuntu/Ubuntu-Medium.ttf deleted file mode 100644 index 7340a40a..00000000 Binary files a/assets/fonts/Ubuntu/Ubuntu-Medium.ttf and /dev/null differ diff --git a/assets/fonts/Ubuntu/Ubuntu-MediumItalic.ttf b/assets/fonts/Ubuntu/Ubuntu-MediumItalic.ttf deleted file mode 100644 index 36ac1aed..00000000 Binary files a/assets/fonts/Ubuntu/Ubuntu-MediumItalic.ttf and /dev/null differ diff --git a/devtools_options.yaml b/devtools_options.yaml new file mode 100644 index 00000000..fa0b357c --- /dev/null +++ b/devtools_options.yaml @@ -0,0 +1,3 @@ +description: This file stores settings for Dart & Flutter DevTools. +documentation: https://docs.flutter.dev/tools/devtools/extensions#configure-extension-enablement-states +extensions: diff --git a/fastlane/metadata/android/en-US/changelogs/340.txt b/fastlane/metadata/android/en-US/changelogs/340.txt new file mode 100644 index 00000000..f20eaa0a --- /dev/null +++ b/fastlane/metadata/android/en-US/changelogs/340.txt @@ -0,0 +1,2 @@ +MISCELLANEOUS +- Reduce the APK size \ No newline at end of file diff --git a/fastlane/metadata/android/fr-FR/changelogs/340.txt b/fastlane/metadata/android/fr-FR/changelogs/340.txt new file mode 100644 index 00000000..201cda75 --- /dev/null +++ b/fastlane/metadata/android/fr-FR/changelogs/340.txt @@ -0,0 +1,2 @@ +MISCELLANEOUS +- Réduction de la taille de l'APK \ No newline at end of file diff --git a/lib/common/navigation/side_navigation.dart b/lib/common/navigation/side_navigation.dart index b849b616..1353e0c1 100644 --- a/lib/common/navigation/side_navigation.dart +++ b/lib/common/navigation/side_navigation.dart @@ -1,4 +1,4 @@ -import 'package:dart_helper_utils/dart_helper_utils.dart'; +import 'package:collection/collection.dart'; import 'package:flutter/material.dart'; import 'package:flutter_riverpod/flutter_riverpod.dart'; import 'package:go_router/go_router.dart'; @@ -56,9 +56,9 @@ class _SideNavigationState extends ConsumerState { } else if (route == NavigationRoute.settings.name) { index = labels.length + 4; } else if (labels.isNotEmpty) { - labels.forEachIndexed((label, labelIndex) { + labels.forEachIndexed((index, label) { if (route == NavigationRoute.getLabelRouteName(label)) { - index = labelIndex + 1; + index = index + 1; } }); } else { @@ -103,7 +103,7 @@ class _SideNavigationState extends ConsumerState { } else if (newIndex == labels.length + 4) { context.goNamed(NavigationRoute.settings.name); } else if (labels.isNotEmpty) { - labels.forEachIndexed((label, index) { + labels.forEachIndexed((index, label) { if (newIndex == index + 1) { context.goNamed(NavigationRoute.getLabelRouteName(label)); } diff --git a/lib/services/database_service.dart b/lib/services/database_service.dart index 3421b65c..d06cd943 100644 --- a/lib/services/database_service.dart +++ b/lib/services/database_service.dart @@ -1,5 +1,6 @@ import 'package:flutter_mimir/flutter_mimir.dart'; import 'package:isar_community/isar.dart'; +import 'package:mimir/mimir.dart'; import 'package:path_provider/path_provider.dart'; import '../models/deprecated/note.dart'; diff --git a/lib/services/notes/notes_index_service.dart b/lib/services/notes/notes_index_service.dart index e9cedd5b..a6e3165a 100644 --- a/lib/services/notes/notes_index_service.dart +++ b/lib/services/notes/notes_index_service.dart @@ -1,5 +1,5 @@ import 'package:collection/collection.dart'; -import 'package:flutter_mimir/flutter_mimir.dart'; +import 'package:mimir/mimir.dart'; import '../../common/constants/constants.dart'; import '../../models/note/index/note_index.dart'; diff --git a/lib/services/notes/notes_service.dart b/lib/services/notes/notes_service.dart index 7b4e781e..17cfe75f 100644 --- a/lib/services/notes/notes_service.dart +++ b/lib/services/notes/notes_service.dart @@ -1,6 +1,6 @@ -import 'package:flutter_mimir/flutter_mimir.dart'; import 'package:is_first_run/is_first_run.dart'; import 'package:isar_community/isar.dart'; +import 'package:mimir/mimir.dart'; import '../../common/constants/constants.dart'; import '../../common/constants/environment.dart'; diff --git a/pubspec.lock b/pubspec.lock index b0bd361a..7dbb8f74 100644 --- a/pubspec.lock +++ b/pubspec.lock @@ -5,10 +5,10 @@ packages: dependency: transitive description: name: _fe_analyzer_shared - sha256: da0d9209ca76bde579f2da330aeb9df62b6319c834fa7baae052021b0462401f + sha256: "5b7468c326d2f8a4f630056404ca0d291ade42918f4a3c6233618e724f39da8e" url: "https://pub.dev" source: hosted - version: "85.0.0" + version: "92.0.0" after_layout: dependency: "direct main" description: @@ -17,30 +17,38 @@ packages: url: "https://pub.dev" source: hosted version: "1.2.0" + analysis_server_plugin: + dependency: transitive + description: + name: analysis_server_plugin + sha256: "44adba4d74a2541173bad4c11531d2a4d22810c29c5ddb458a38e9f4d0e5eac7" + url: "https://pub.dev" + source: hosted + version: "0.3.4" analyzer: dependency: transitive description: name: analyzer - sha256: f4ad0fea5f102201015c9aae9d93bc02f75dd9491529a8c21f88d17a8523d44c + sha256: "70e4b1ef8003c64793a9e268a551a82869a8a96f39deb73dea28084b0e8bf75e" url: "https://pub.dev" source: hosted - version: "7.6.0" + version: "9.0.0" analyzer_buffer: dependency: transitive description: name: analyzer_buffer - sha256: f7833bee67c03c37241c67f8741b17cc501b69d9758df7a5a4a13ed6c947be43 + sha256: ff4bd291778c7417fe53fe24ee0d0a1f1ffe281a2d4ea887e7094f16e36eace7 url: "https://pub.dev" source: hosted - version: "0.1.10" + version: "0.3.0" analyzer_plugin: dependency: transitive description: name: analyzer_plugin - sha256: a5ab7590c27b779f3d4de67f31c4109dbe13dd7339f86461a6f2a8ab2594d8ce + sha256: "6645a029da947ffd823d98118f385d4bd26b54eb069c006b22e0b94e451814b5" url: "https://pub.dev" source: hosted - version: "0.13.4" + version: "0.13.11" animated_reorderable_list: dependency: transitive description: @@ -61,10 +69,10 @@ packages: dependency: "direct main" description: name: archive - sha256: "2fde1607386ab523f7a36bb3e7edb43bd58e6edaf2ffb29d8a6d578b297fdbbd" + sha256: a96e8b390886ee8abb49b7bd3ac8df6f451c621619f52a26e815fdcf568959ff url: "https://pub.dev" source: hosted - version: "4.0.7" + version: "4.0.9" args: dependency: transitive description: @@ -101,26 +109,18 @@ packages: dependency: "direct overridden" description: name: build - sha256: "825fed4d63050252a0b6e74f2d75844c4a85b664814be6993bd3493fb5239779" - url: "https://pub.dev" - source: hosted - version: "4.0.1" - build_cli_annotations: - dependency: transitive - description: - name: build_cli_annotations - sha256: e563c2e01de8974566a1998410d3f6f03521788160a02503b0b1f1a46c7b3d95 + sha256: aadd943f4f8cc946882c954c187e6115a84c98c81ad1d9c6cbf0895a8c85da9c url: "https://pub.dev" source: hosted - version: "2.1.1" + version: "4.0.5" build_config: dependency: transitive description: name: build_config - sha256: "4f64382b97504dc2fcdf487d5aae33418e08b4703fc21249e4db6d804a4d0187" + sha256: "4070d2a59f8eec34c97c86ceb44403834899075f66e8a9d59706f8e7834f6f71" url: "https://pub.dev" source: hosted - version: "1.2.0" + version: "1.3.0" build_daemon: dependency: transitive description: @@ -133,10 +133,10 @@ packages: dependency: "direct dev" description: name: build_runner - sha256: "4e54dbeefdc70691ba80b3bce3976af63b5425c8c07dface348dfee664a0edc1" + sha256: "521daf8d189deb79ba474e43a696b41c49fb3987818dbacf3308f1e03673a75e" url: "https://pub.dev" source: hosted - version: "2.9.0" + version: "2.13.1" build_verify: dependency: "direct dev" description: @@ -161,22 +161,14 @@ packages: url: "https://pub.dev" source: hosted version: "8.12.0" - chalkdart: - dependency: transitive - description: - name: chalkdart - sha256: "7ffc6bd39c81453fb9ba8dbce042a9c960219b75ea1c07196a7fa41c2fab9e86" - url: "https://pub.dev" - source: hosted - version: "3.0.5" characters: dependency: transitive description: name: characters - sha256: f71061c654a3380576a52b451dd5532377954cf9dbd272a78fc8479606670803 + sha256: faf38497bda5ead2a8c7615f4f7939df04333478bf32e4173fcb06d428b5716b url: "https://pub.dev" source: hosted - version: "1.4.0" + version: "1.4.1" checked_yaml: dependency: transitive description: @@ -185,14 +177,6 @@ packages: url: "https://pub.dev" source: hosted version: "2.0.4" - ci: - dependency: transitive - description: - name: ci - sha256: "145d095ce05cddac4d797a158bc4cf3b6016d1fe63d8c3d2fbd7212590adca13" - url: "https://pub.dev" - source: hosted - version: "0.1.0" cli_config: dependency: transitive description: @@ -217,6 +201,14 @@ packages: url: "https://pub.dev" source: hosted version: "1.1.2" + code_assets: + dependency: transitive + description: + name: code_assets + sha256: "83ccdaa064c980b5596c35dd64a8d3ecc68620174ab9b90b6343b753aa721687" + url: "https://pub.dev" + source: hosted + version: "1.0.0" code_builder: dependency: transitive description: @@ -249,6 +241,14 @@ packages: url: "https://pub.dev" source: hosted version: "3.1.2" + convert_object: + dependency: transitive + description: + name: convert_object + sha256: a88cf2501cbe150c4c1e3f58787ba8fdf912c04cc470ba6d2aceeb9836dd36dd + url: "https://pub.dev" + source: hosted + version: "1.0.4" coverage: dependency: transitive description: @@ -281,54 +281,22 @@ packages: url: "https://pub.dev" source: hosted version: "1.0.2" - custom_lint: - dependency: "direct dev" - description: - name: custom_lint - sha256: "78085fbe842de7c5bef92de811ca81536968dbcbbcdac5c316711add2d15e796" - url: "https://pub.dev" - source: hosted - version: "0.8.0" - custom_lint_builder: - dependency: transitive - description: - name: custom_lint_builder - sha256: cc5532d5733d4eccfccaaec6070a1926e9f21e613d93ad0927fad020b95c9e52 - url: "https://pub.dev" - source: hosted - version: "0.8.0" - custom_lint_core: - dependency: transitive - description: - name: custom_lint_core - sha256: cc4684d22ca05bf0a4a51127e19a8aea576b42079ed2bc9e956f11aaebe35dd1 - url: "https://pub.dev" - source: hosted - version: "0.8.0" - custom_lint_visitor: - dependency: transitive - description: - name: custom_lint_visitor - sha256: "4a86a0d8415a91fbb8298d6ef03e9034dc8e323a599ddc4120a0e36c433983a2" - url: "https://pub.dev" - source: hosted - version: "1.0.0+7.7.0" dart_helper_utils: dependency: "direct main" description: name: dart_helper_utils - sha256: "0b0efe83a9c22d823b38d05d6b40e38b2c880a58232dee30c36c653036ce4a82" + sha256: "7943ab137b85692a9483a3ac952061505b6ca798fb1338600cc9291f86f269ec" url: "https://pub.dev" source: hosted - version: "5.4.0" + version: "6.0.0" dart_style: dependency: transitive description: name: dart_style - sha256: "8a0e5fba27e8ee025d2ffb4ee820b4e6e2cf5e4246a6b1a477eb66866947e0bb" + sha256: a9c30492da18ff84efe2422ba2d319a89942d93e58eb0b73d32abe822ef54b7b url: "https://pub.dev" source: hosted - version: "3.1.1" + version: "3.1.3" dartx: dependency: transitive description: @@ -341,10 +309,10 @@ packages: dependency: "direct main" description: name: device_info_plus - sha256: dd0e8e02186b2196c7848c9d394a5fd6e5b57a43a546082c5820b1ec72317e33 + sha256: b4fed1b2835da9d670d7bed7db79ae2a94b0f5ad6312268158a9b5479abbacdd url: "https://pub.dev" source: hosted - version: "12.2.0" + version: "12.4.0" device_info_plus_platform_interface: dependency: transitive description: @@ -381,10 +349,10 @@ packages: dependency: "direct main" description: name: equatable - sha256: "567c64b3cb4cf82397aac55f4f0cbd3ca20d77c6c03bedbc4ceaddc08904aef7" + sha256: "3e0141505477fd8ad55d6eb4e7776d3fe8430be8e497ccb1521370c3f21a3e2b" url: "https://pub.dev" source: hosted - version: "2.0.7" + version: "2.0.8" fake_async: dependency: transitive description: @@ -397,10 +365,10 @@ packages: dependency: transitive description: name: ffi - sha256: "289279317b4b16eb2bb7e271abccd4bf84ec9bdcbe999e278a94b804f5630418" + sha256: "6d7fd89431262d8f3125e81b50d3847a091d846eafcd4fdb88dd06f36d705a45" url: "https://pub.dev" source: hosted - version: "2.1.4" + version: "2.2.0" file: dependency: transitive description: @@ -437,18 +405,18 @@ packages: dependency: "direct main" description: name: flex_color_picker - sha256: "8f753a1a026a13ea5cc5eddbae3ceb886f2537569ab2e5208efb1e3bb5af72ff" + sha256: a0979dd61f21b634717b98eb4ceaed2bfe009fe020ce8597aaf164b9eeb57aaa url: "https://pub.dev" source: hosted - version: "3.7.1" + version: "3.8.0" flex_seed_scheme: dependency: transitive description: name: flex_seed_scheme - sha256: b06d8b367b84cbf7ca5c5603c858fa5edae88486c4e4da79ac1044d73b6c62ec + sha256: a3183753bbcfc3af106224bff3ab3e1844b73f58062136b7499919f49f3667e7 url: "https://pub.dev" source: hosted - version: "3.5.1" + version: "4.0.1" flutter: dependency: "direct main" description: flutter @@ -482,10 +450,10 @@ packages: dependency: "direct main" description: name: flutter_fgbg - sha256: eb6da9b2047372566a6e17b505975fe5bace94af01f6fc825c4b6f81baa6c447 + sha256: "8e6707b853f8c3b8d8688f28836f2d34754b9084252eb2a9903491289eb97ba9" url: "https://pub.dev" source: hosted - version: "0.7.1" + version: "0.8.0" flutter_launcher_icons: dependency: "direct dev" description: @@ -511,26 +479,26 @@ packages: dependency: "direct main" description: name: flutter_markdown_plus - sha256: "7f349c075157816da399216a4127096108fd08e1ac931e34e72899281db4113c" + sha256: "039177906850278e8fb1cd364115ee0a46281135932fa8ecea8455522166d2de" url: "https://pub.dev" source: hosted - version: "1.0.5" + version: "1.0.7" flutter_mimir: dependency: "direct main" description: name: flutter_mimir - sha256: dc002bfcb682a640aca77562b7a7b12a710d0408f0dc09cc8cd2d62612b93392 + sha256: e33eb20d666a15a3db74cd70496fc19877136345744f520714da3718b282673a url: "https://pub.dev" source: hosted - version: "0.1.6" + version: "0.2.0+5" flutter_native_splash: dependency: "direct main" description: name: flutter_native_splash - sha256: "8321a6d11a8d13977fa780c89de8d257cce3d841eecfb7a4cadffcc4f12d82dc" + sha256: "4fb9f4113350d3a80841ce05ebf1976a36de622af7d19aca0ca9a9911c7ff002" url: "https://pub.dev" source: hosted - version: "2.4.6" + version: "2.4.7" flutter_plugin_android_lifecycle: dependency: transitive description: @@ -543,18 +511,10 @@ packages: dependency: "direct main" description: name: flutter_riverpod - sha256: "9e2d6907f12cc7d23a846847615941bddee8709bf2bfd274acdf5e80bcf22fde" - url: "https://pub.dev" - source: hosted - version: "3.0.3" - flutter_rust_bridge: - dependency: transitive - description: - name: flutter_rust_bridge - sha256: "35c257fc7f98e34c1314d6c145e5ed54e7c94e8a9f469947e31c9298177d546f" + sha256: "4e166be88e1dbbaa34a280bdb744aeae73b7ef25fdf8db7a3bb776760a3648e2" url: "https://pub.dev" source: hosted - version: "2.7.0" + version: "3.3.1" flutter_secure_storage: dependency: "direct main" description: @@ -657,10 +617,10 @@ packages: dependency: "direct main" description: name: go_router - sha256: d8f590a69729f719177ea68eb1e598295e8dbc41bbc247fed78b2c8a25660d7c + sha256: "48fb2f42ad057476fa4b733cb95e9f9ea7b0b010bb349ea491dca7dbdb18ffc4" url: "https://pub.dev" source: hosted - version: "16.3.0" + version: "17.2.0" graphs: dependency: transitive description: @@ -669,14 +629,14 @@ packages: url: "https://pub.dev" source: hosted version: "2.3.2" - hotreloader: + hooks: dependency: transitive description: - name: hotreloader - sha256: bc167a1163807b03bada490bfe2df25b0d744df359227880220a5cbd04e5734b + name: hooks + sha256: e79ed1e8e1929bc6ecb6ec85f0cb519c887aa5b423705ded0d0f2d9226def388 url: "https://pub.dev" source: hosted - version: "4.3.0" + version: "1.0.2" html: dependency: transitive description: @@ -745,26 +705,26 @@ packages: dependency: "direct main" description: name: isar_community - sha256: "28f59e54636c45ba0bb1b3b7f2656f1c50325f740cea6efcd101900be3fba546" + sha256: "683fd093956eac3a660776afb70d65d50a3391b3587b40b89e3d12586b8cc47f" url: "https://pub.dev" source: hosted - version: "3.3.0-dev.3" + version: "3.3.2" isar_community_flutter_libs: dependency: "direct main" description: name: isar_community_flutter_libs - sha256: c2934fe755bb3181cb67602fd5df0d080b3d3eb52799f98623aa4fc5acbea010 + sha256: c44340fa38c81ef16d924202d443bbe799cde4826be9a31a9dc92ee612e1966f url: "https://pub.dev" source: hosted - version: "3.3.0-dev.3" + version: "3.3.2" isar_community_generator: dependency: "direct dev" description: name: isar_community_generator - sha256: "1d760de09ffbc837ad65476f14b6ad17381f0fb485e01bf77d76d825ef734bec" + sha256: fd5a2a5df2aac2fccba82425005bf47fd2a48f34190536d0c9fd732dc7303fb3 url: "https://pub.dev" source: hosted - version: "3.3.0-dev.3" + version: "3.3.2" js: dependency: transitive description: @@ -777,18 +737,18 @@ packages: dependency: "direct main" description: name: json_annotation - sha256: "1ce844379ca14835a50d2f019a3099f419082cfdd231cd86a142af94dd5c6bb1" + sha256: cb09e7dac6210041fad964ed7fbee004f14258b4eca4040f72d1234062ace4c8 url: "https://pub.dev" source: hosted - version: "4.9.0" + version: "4.11.0" json_serializable: dependency: "direct dev" description: name: json_serializable - sha256: "33a040668b31b320aafa4822b7b1e177e163fc3c1e835c6750319d4ab23aa6fe" + sha256: "44729f5c45748e6748f6b9a57ab8f7e4336edc8ae41fc295070e3814e616a6c0" url: "https://pub.dev" source: hosted - version: "6.11.1" + version: "6.13.0" leak_tracker: dependency: transitive description: @@ -833,10 +793,10 @@ packages: dependency: "direct main" description: name: local_auth - sha256: a4f1bf57f0236a4aeb5e8f0ec180e197f4b112a3456baa6c1e73b546630b0422 + sha256: ae6f382f638108c6becd134318d7c3f0a93875383a54010f61d7c97ac05d5137 url: "https://pub.dev" source: hosted - version: "3.0.0" + version: "3.0.1" local_auth_android: dependency: transitive description: @@ -881,10 +841,10 @@ packages: dependency: "direct main" description: name: logger - sha256: a7967e31b703831a893bbc3c3dd11db08126fe5f369b5c648a36f821979f5be3 + sha256: "25aee487596a6257655a1e091ec2ae66bc30e7af663592cc3a27e6591e05035c" url: "https://pub.dev" source: hosted - version: "2.6.2" + version: "2.7.0" logging: dependency: transitive description: @@ -897,42 +857,42 @@ packages: dependency: "direct main" description: name: markdown - sha256: "935e23e1ff3bc02d390bad4d4be001208ee92cc217cb5b5a6c19bc14aaa318c1" + sha256: ee85086ad7698b42522c6ad42fe195f1b9898e4d974a1af4576c1a3a176cada9 url: "https://pub.dev" source: hosted - version: "7.3.0" + version: "7.3.1" matcher: dependency: transitive description: name: matcher - sha256: dc58c723c3c24bf8d3e2d3ad3f2f9d7bd9cf43ec6feaa64181775e60190153f2 + sha256: dc0b7dc7651697ea4ff3e69ef44b0407ea32c487a39fff6a4004fa585e901861 url: "https://pub.dev" source: hosted - version: "0.12.17" + version: "0.12.19" material_color_utilities: dependency: transitive description: name: material_color_utilities - sha256: f7142bb1154231d7ea5f96bc7bde4bda2a0945d2806bb11670e30b850d56bdec + sha256: "9c337007e82b1889149c82ed242ed1cb24a66044e30979c44912381e9be4c48b" url: "https://pub.dev" source: hosted - version: "0.11.1" + version: "0.13.0" material_symbols_icons: dependency: "direct main" description: name: material_symbols_icons - sha256: "9a7de58ffc299c8e362b4e860e36e1d198fa0981a894376fe1b6bfe52773e15b" + sha256: "10a74aaa9e566c92f8aa14809d2dd78156fb93743348ebffec0345c38eb35706" url: "https://pub.dev" source: hosted - version: "4.2874.0" + version: "4.2928.1" meta: dependency: transitive description: name: meta - sha256: e3641ec5d63ebf0d9b41bd43201a66e3fc79a65db5f61fc181f04cd27aab950c + sha256: "23f08335362185a5ea2ad3a4e597f1375e78bce8a040df5c600c8d3552ef2394" url: "https://pub.dev" source: hosted - version: "1.16.0" + version: "1.17.0" mime: dependency: transitive description: @@ -942,21 +902,29 @@ packages: source: hosted version: "2.0.0" mimir: - dependency: transitive + dependency: "direct main" description: name: mimir - sha256: "81766c7db42c973e414cd2a374a9e8dae6936a3d7394e6926e8123a7407bf36a" + sha256: "1568c5cac672212d0ebb839331306b46b2d8f366af898b123fde1a6c9aef2877" url: "https://pub.dev" source: hosted - version: "0.1.6" + version: "0.2.1+2" mockito: dependency: transitive description: name: mockito - sha256: "2314cbe9165bcd16106513df9cf3c3224713087f09723b128928dc11a4379f99" + sha256: eff30d002f0c8bf073b6f929df4483b543133fcafce056870163587b03f1d422 + url: "https://pub.dev" + source: hosted + version: "5.6.4" + native_toolchain_rust: + dependency: transitive + description: + name: native_toolchain_rust + sha256: e53ef1025e2c190333ec61f638513c890c1becf11222e27b115b03bac369c6be url: "https://pub.dev" source: hosted - version: "5.5.0" + version: "1.0.3" node_preamble: dependency: transitive description: @@ -977,10 +945,10 @@ packages: dependency: "direct main" description: name: package_info_plus - sha256: f69da0d3189a4b4ceaeb1a3defb0f329b3b352517f52bed4290f83d4f06bc08d + sha256: "468c26b4254ab01979fa5e4a98cb343ea3631b9acee6f21028997419a80e1a20" url: "https://pub.dev" source: hosted - version: "9.0.0" + version: "9.0.1" package_info_plus_platform_interface: dependency: transitive description: @@ -1065,10 +1033,10 @@ packages: dependency: transitive description: name: petitparser - sha256: "07c8f0b1913bcde1ff0d26e57ace2f3012ccbf2b204e070290dad3bb22797646" + sha256: "91bd59303e9f769f108f8df05e371341b15d59e995e6806aefab827b58336675" url: "https://pub.dev" source: hosted - version: "6.1.0" + version: "7.0.2" platform: dependency: transitive description: @@ -1109,6 +1077,14 @@ packages: url: "https://pub.dev" source: hosted version: "6.0.3" + protobuf: + dependency: transitive + description: + name: protobuf + sha256: "75ec242d22e950bdcc79ee38dd520ce4ee0bc491d7fadc4ea47694604d22bf06" + url: "https://pub.dev" + source: hosted + version: "6.0.0" pub_semver: dependency: transitive description: @@ -1177,74 +1153,66 @@ packages: dependency: "direct main" description: name: restart_app - sha256: "00d5ec3e9de871cedbe552fc41e615b042b5ec654385e090e0983f6d02f655ed" + sha256: "5bbeb34f7af32d1b87fbb8bc56a6501ca779596cfbb84af6ba4e3ebf57af4a23" url: "https://pub.dev" source: hosted - version: "1.3.2" + version: "1.7.3" riverpod: dependency: transitive description: name: riverpod - sha256: c406de02bff19d920b832bddfb8283548bfa05ce41c59afba57ce643e116aa59 + sha256: "8c22216be8ad3ef2b44af3a329693558c98eca7b8bd4ef495c92db0bba279f83" url: "https://pub.dev" source: hosted - version: "3.0.3" + version: "3.2.1" riverpod_analyzer_utils: dependency: transitive description: name: riverpod_analyzer_utils - sha256: a0f68adb078b790faa3c655110a017f9a7b7b079a57bbd40f540e80dce5fcd29 + sha256: e55bc08c084a424e1bbdc303fe8ea75daafe4269b68fd0e0f6f1678413715b66 url: "https://pub.dev" source: hosted - version: "1.0.0-dev.7" + version: "1.0.0-dev.9" riverpod_annotation: dependency: "direct main" description: name: riverpod_annotation - sha256: "7230014155777fc31ba3351bc2cb5a3b5717b11bfafe52b1553cb47d385f8897" + sha256: "16471a1260b94e939394d78f1c63a9350936ac4a68c9fbdab40be47268c0b04f" url: "https://pub.dev" source: hosted - version: "3.0.3" + version: "4.0.2" riverpod_generator: dependency: "direct dev" description: name: riverpod_generator - sha256: "49894543a42cf7a9954fc4e7366b6d3cb2e6ec0fa07775f660afcdd92d097702" + sha256: "6f9220534d7a353b53c875ea191a84d28cb4e52ac420a66a1bd7318329d977b0" url: "https://pub.dev" source: hosted - version: "3.0.3" + version: "4.0.3" riverpod_lint: dependency: "direct dev" description: name: riverpod_lint - sha256: "7ef9c43469e9b5ac4e4c3b24d7c30642e47ce1b12cd7dcdd643534db0a72ed13" - url: "https://pub.dev" - source: hosted - version: "3.0.3" - rxdart: - dependency: transitive - description: - name: rxdart - sha256: "5c3004a4a8dbb94bd4bf5412a4def4acdaa12e12f269737a5751369e12d1a962" + sha256: "64e8debf5b719a37d48b9785dd595d34133fdcd84b8fd07157a621c54ab2156f" url: "https://pub.dev" source: hosted - version: "0.28.0" + version: "3.1.3" saf_stream: dependency: "direct main" description: name: saf_stream - sha256: c05449997698c481a03e428162a999f93b1ee1bcc0349d651899a59f7b10230a + sha256: "6fa5179bf5c8f5f99b183286df6236b23de33c1e874d69ce1fe565a63f95f62b" url: "https://pub.dev" source: hosted - version: "0.12.3" + version: "2.0.0" saf_util: dependency: "direct main" description: name: saf_util - sha256: "219f983e5f17b28998335158cdc97add9d52af9884e38b5a43f10dcc070510ec" + sha256: "0cf5fc462fc7e466e1d5608dd5a331d88d6dd6c7b01f62a305aaf469bf3309ea" url: "https://pub.dev" source: hosted - version: "0.11.0" + version: "2.0.0" sanitize_filename: dependency: "direct main" description: @@ -1265,10 +1233,10 @@ packages: dependency: "direct main" description: name: share_plus - sha256: "14c8860d4de93d3a7e53af51bff479598c4e999605290756bbbe45cf65b37840" + sha256: "223873d106614442ea6f20db5a038685cc5b32a2fba81cdecaefbbae0523f7fa" url: "https://pub.dev" source: hosted - version: "12.0.1" + version: "12.0.2" share_plus_platform_interface: dependency: transitive description: @@ -1281,10 +1249,10 @@ packages: dependency: "direct main" description: name: shared_preferences - sha256: "6e8bf70b7fef813df4e9a36f658ac46d107db4b4cfe1048b477d4e453a8159f5" + sha256: c3025c5534b01739267eb7d76959bbc25a6d10f6988e1c2a3036940133dd10bf url: "https://pub.dev" source: hosted - version: "2.5.3" + version: "2.5.5" shared_preferences_android: dependency: transitive description: @@ -1382,18 +1350,18 @@ packages: dependency: transitive description: name: source_gen - sha256: "7b19d6ba131c6eb98bfcbf8d56c1a7002eba438af2e7ae6f8398b2b0f4f381e3" + sha256: "732792cfd197d2161a65bb029606a46e0a18ff30ef9e141a7a82172b05ea8ecd" url: "https://pub.dev" source: hosted - version: "3.1.0" + version: "4.2.2" source_helper: dependency: transitive description: name: source_helper - sha256: "6a3c6cc82073a8797f8c4dc4572146114a39652851c157db37e964d9c7038723" + sha256: "1d3b229b2934034fb2e691fbb3d53e0f75a4af7b1407f88425ed8f209bcb1b8f" url: "https://pub.dev" source: hosted - version: "1.3.8" + version: "1.3.11" source_map_stack_trace: dependency: transitive description: @@ -1418,14 +1386,6 @@ packages: url: "https://pub.dev" source: hosted version: "1.10.1" - sprintf: - dependency: transitive - description: - name: sprintf - sha256: "1fc9ffe69d4df602376b52949af107d8f5703b77cda567c4d7d86a0693120f23" - url: "https://pub.dev" - source: hosted - version: "7.0.0" stack_trace: dependency: transitive description: @@ -1494,26 +1454,26 @@ packages: dependency: transitive description: name: test - sha256: "65e29d831719be0591f7b3b1a32a3cda258ec98c58c7b25f7b84241bc31215bb" + sha256: "280d6d890011ca966ad08df7e8a4ddfab0fb3aa49f96ed6de56e3521347a9ae7" url: "https://pub.dev" source: hosted - version: "1.26.2" + version: "1.30.0" test_api: dependency: transitive description: name: test_api - sha256: "522f00f556e73044315fa4585ec3270f1808a4b186c936e612cab0b565ff1e00" + sha256: "8161c84903fd860b26bfdefb7963b3f0b68fee7adea0f59ef805ecca346f0c7a" url: "https://pub.dev" source: hosted - version: "0.7.6" + version: "0.7.10" test_core: dependency: transitive description: name: test_core - sha256: "80bf5a02b60af04b09e14f6fe68b921aad119493e26e490deaca5993fef1b05a" + sha256: "0381bd1585d1a924763c308100f2138205252fb90c9d4eeaf28489ee65ccde51" url: "https://pub.dev" source: hosted - version: "0.6.11" + version: "0.6.16" time: dependency: transitive description: @@ -1522,6 +1482,14 @@ packages: url: "https://pub.dev" source: hosted version: "2.1.5" + toml: + dependency: transitive + description: + name: toml + sha256: "35a35f782228656a2af31e8c73d1353cc4ef3d683fd68af1111b44631879c05e" + url: "https://pub.dev" + source: hosted + version: "0.18.0" typed_data: dependency: transitive description: @@ -1606,10 +1574,10 @@ packages: dependency: "direct main" description: name: uuid - sha256: a5be9ef6618a7ac1e964353ef476418026db906c4facdedaa299b7a2e71690ff + sha256: "1fef9e8e11e2991bb773070d4656b7bd5d850967a2456cfc83cf47925ba79489" url: "https://pub.dev" source: hosted - version: "4.5.1" + version: "4.5.3" vector_math: dependency: transitive description: @@ -1694,10 +1662,10 @@ packages: dependency: transitive description: name: xml - sha256: b015a8ad1c488f66851d762d3090a21c600e479dc75e68328c52774040cf9226 + sha256: "971043b3a0d3da28727e40ed3e0b5d18b742fa5a68665cca88e74b7876d5e025" url: "https://pub.dev" source: hosted - version: "6.5.0" + version: "6.6.1" xxh3: dependency: transitive description: @@ -1714,6 +1682,14 @@ packages: url: "https://pub.dev" source: hosted version: "3.1.3" + yaml_edit: + dependency: transitive + description: + name: yaml_edit + sha256: "07c9e63ba42519745182b88ca12264a7ba2484d8239958778dfe4d44fe760488" + url: "https://pub.dev" + source: hosted + version: "2.2.4" sdks: - dart: ">=3.9.2 <4.0.0" - flutter: "3.35.7" + dart: ">=3.11.4 <4.0.0" + flutter: "3.41.6" diff --git a/pubspec.yaml b/pubspec.yaml index e3bb13ef..35845951 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -4,88 +4,88 @@ repository: https://github.com/maelchiotti/LocalMaterialNotes publish_to: none -version: 2.1.3+33 +version: 2.1.4+34 environment: - sdk: ^3.9.2 - flutter: 3.35.7 + sdk: ^3.11.4 + flutter: 3.41.6 dependencies: after_layout: ^1.2.0 - archive: ^4.0.7 + archive: ^4.0.9 collection: ^1.19.1 const_date_time: ^1.2.1 - dart_helper_utils: ^5.2.0 - device_info_plus: ^12.2.0 - dynamic_color: ^1.7.0 + dart_helper_utils: ^6.0.0 + device_info_plus: ^12.4.0 + dynamic_color: ^1.8.1 encrypt: ^5.0.3 - equatable: ^2.0.7 + equatable: ^2.0.8 flag_secure: ^2.0.2 fleather: ^1.26.0 - flex_color_picker: ^3.7.1 + flex_color_picker: ^3.8.0 flutter: sdk: flutter flutter_checklist: ^1.5.5 flutter_displaymode: ^0.7.0 flutter_expandable_fab: ^2.5.2 - flutter_fgbg: ^0.7.1 + flutter_fgbg: ^0.8.0 flutter_localizations: sdk: flutter - flutter_markdown_plus: ^1.0.3 - flutter_mimir: ^0.1.6 - flutter_native_splash: ^2.4.6 - flutter_riverpod: ^3.0.3 + flutter_markdown_plus: ^1.0.7 + flutter_mimir: ^0.2.0+5 + flutter_native_splash: ^2.4.7 + flutter_riverpod: ^3.3.1 flutter_secure_storage: ^9.2.4 flutter_staggered_grid_view: ^0.7.0 gap: ^3.0.1 - go_router: ^16.2.5 + go_router: ^17.2.0 intl: ^0.20.2 is_first_run: ^1.0.0 - isar_community: ^3.3.0-dev.3 - isar_community_flutter_libs: ^3.3.0-dev.3 - json_annotation: ^4.9.0 + isar_community: ^3.3.2 + isar_community_flutter_libs: ^3.3.2 + json_annotation: ^4.11.0 listen_sharing_intent: ^1.9.2 - local_auth: ^3.0.0 + local_auth: ^3.0.1 locale_names: ^1.1.1 - logger: ^2.6.2 - markdown: ^7.3.0 - material_symbols_icons: ^4.2874.0 - package_info_plus: ^9.0.0 + logger: ^2.7.0 + markdown: ^7.3.1 + material_symbols_icons: ^4.2928.1 + mimir: ^0.2.1+2 + package_info_plus: ^9.0.1 parchment: any parchment_delta: any path: ^1.9.1 path_provider: ^2.1.5 quick_actions: ^1.1.0 remove_markdown: ^0.0.2 - restart_app: ^1.3.2 - riverpod_annotation: ^3.0.3 - saf_stream: ^0.12.3 - saf_util: ^0.11.0 + restart_app: ^1.7.3 + riverpod_annotation: ^4.0.2 + saf_stream: ^2.0.0 + saf_util: ^2.0.0 sanitize_filename: ^1.0.5 settings_tiles: ^6.0.1 - share_plus: ^12.0.1 - shared_preferences: ^2.5.3 + share_plus: ^12.0.2 + shared_preferences: ^2.5.5 simple_icons: ^14.6.1 string_validator: ^1.2.0 substring_highlight: ^1.0.33 url_launcher: ^6.3.2 - uuid: ^4.5.1 + uuid: ^4.5.3 dev_dependencies: - build_runner: ^2.9.0 + build_runner: ^2.13.1 build_verify: ^3.1.1 - custom_lint: ^0.8.0 flutter_launcher_icons: ^0.14.4 flutter_lints: ^6.0.0 - isar_community_generator: ^3.3.0-dev.3 - json_serializable: ^6.11.1 - riverpod_generator: ^3.0.3 - riverpod_lint: ^3.0.3 + isar_community_generator: ^3.3.2 + json_serializable: ^6.13.0 + riverpod_generator: ^4.0.3 + riverpod_lint: ^3.1.3 -# TODO(maelchiotti): remove when mimir can be updated to the latest version dependency_overrides: - freezed_annotation: ^3.0.0 - build: ^4.0.0 + # TODO(maelchiotti): remove when mimir can be updated to the latest version + freezed_annotation: ^3.1.0 + build: ^4.0.5 flutter: uses-material-design: true @@ -95,24 +95,10 @@ flutter: fonts: - family: Barlow fonts: - - asset: assets/fonts/Barlow/Barlow-Black.ttf - - asset: assets/fonts/Barlow/Barlow-BlackItalic.ttf - asset: assets/fonts/Barlow/Barlow-Bold.ttf - asset: assets/fonts/Barlow/Barlow-BoldItalic.ttf - - asset: assets/fonts/Barlow/Barlow-ExtraBold.ttf - - asset: assets/fonts/Barlow/Barlow-ExtraBoldItalic.ttf - - asset: assets/fonts/Barlow/Barlow-ExtraLight.ttf - - asset: assets/fonts/Barlow/Barlow-ExtraLightItalic.ttf - asset: assets/fonts/Barlow/Barlow-Italic.ttf - - asset: assets/fonts/Barlow/Barlow-Light.ttf - - asset: assets/fonts/Barlow/Barlow-LightItalic.ttf - - asset: assets/fonts/Barlow/Barlow-Medium.ttf - - asset: assets/fonts/Barlow/Barlow-MediumItalic.ttf - asset: assets/fonts/Barlow/Barlow-Regular.ttf - - asset: assets/fonts/Barlow/Barlow-SemiBold.ttf - - asset: assets/fonts/Barlow/Barlow-SemiBoldItalic.ttf - - asset: assets/fonts/Barlow/Barlow-Thin.ttf - - asset: assets/fonts/Barlow/Barlow-ThinItalic.ttf - family: Comic Sans MS fonts: - asset: assets/fonts/Comic_Sans_MS/ComicSansMS.ttf @@ -125,13 +111,9 @@ flutter: - asset: assets/fonts/JetBrains_Mono/JetBrainsMono-VariableFont_wght.ttf - family: Merriweather fonts: - - asset: assets/fonts/Merriweather/Merriweather-Black.ttf - - asset: assets/fonts/Merriweather/Merriweather-BlackItalic.ttf - asset: assets/fonts/Merriweather/Merriweather-Bold.ttf - asset: assets/fonts/Merriweather/Merriweather-BoldItalic.ttf - asset: assets/fonts/Merriweather/Merriweather-Italic.ttf - - asset: assets/fonts/Merriweather/Merriweather-Light.ttf - - asset: assets/fonts/Merriweather/Merriweather-LightItalic.ttf - asset: assets/fonts/Merriweather/Merriweather-Regular.ttf - family: Montserrat fonts: @@ -162,8 +144,4 @@ flutter: - asset: assets/fonts/Ubuntu/Ubuntu-Bold.ttf - asset: assets/fonts/Ubuntu/Ubuntu-BoldItalic.ttf - asset: assets/fonts/Ubuntu/Ubuntu-Italic.ttf - - asset: assets/fonts/Ubuntu/Ubuntu-Light.ttf - - asset: assets/fonts/Ubuntu/Ubuntu-LightItalic.ttf - - asset: assets/fonts/Ubuntu/Ubuntu-Medium.ttf - - asset: assets/fonts/Ubuntu/Ubuntu-MediumItalic.ttf - asset: assets/fonts/Ubuntu/Ubuntu-Regular.ttf