diff --git a/lib/home/home_screen.dart b/lib/home/home_screen.dart index 6b1b8f0..2fa2eeb 100644 --- a/lib/home/home_screen.dart +++ b/lib/home/home_screen.dart @@ -44,15 +44,15 @@ class HomeScreenState extends State { final theme = Theme.of(context).copyWith( elevatedButtonTheme: ElevatedButtonThemeData( style: ButtonStyle( - shape: MaterialStateProperty.resolveWith( - (Set states) { + shape: WidgetStateProperty.resolveWith( + (Set states) { return RoundedRectangleBorder( borderRadius: BorderRadius.circular(15), ); }, ), - minimumSize: MaterialStateProperty.resolveWith( - (Set states) { + minimumSize: WidgetStateProperty.resolveWith( + (Set states) { return homeBtnSize; }, ), diff --git a/lib/settings/update_screen.dart b/lib/settings/update_screen.dart index f0703a3..96f7046 100644 --- a/lib/settings/update_screen.dart +++ b/lib/settings/update_screen.dart @@ -622,7 +622,7 @@ sudo systemctl restart orion.service child: Container( width: MediaQuery.of(context).size.width, height: MediaQuery.of(context).size.height, - color: Theme.of(context).colorScheme.background, + color: Theme.of(context).colorScheme.surface, child: Column( mainAxisSize: MainAxisSize.min, mainAxisAlignment: MainAxisAlignment.center, diff --git a/lib/status/error_print_failure.dart b/lib/status/error_print_failure.dart index f45e2b0..c712b91 100644 --- a/lib/status/error_print_failure.dart +++ b/lib/status/error_print_failure.dart @@ -182,13 +182,13 @@ class PrintErrorScreenState extends State { Navigator.pop(context); }, style: ButtonStyle( - backgroundColor: MaterialStateProperty.all( + backgroundColor: WidgetStateProperty.all( const Color.fromARGB(255, 207, 124, 0)), - overlayColor: MaterialStateProperty.all( + overlayColor: WidgetStateProperty.all( Theme.of(context).primaryColor.withOpacity(0.2)), - minimumSize: MaterialStateProperty.all( + minimumSize: WidgetStateProperty.all( const Size(double.infinity, kToolbarHeight * 1.2)), - shape: MaterialStateProperty.all(const RoundedRectangleBorder( + shape: WidgetStateProperty.all(const RoundedRectangleBorder( borderRadius: BorderRadius.zero)), ), child: Text('Resume Print', @@ -205,13 +205,13 @@ class PrintErrorScreenState extends State { Navigator.pop(context); }, style: ButtonStyle( - backgroundColor: MaterialStateProperty.all( + backgroundColor: WidgetStateProperty.all( const Color.fromARGB(255, 207, 124, 0)), - overlayColor: MaterialStateProperty.all( + overlayColor: WidgetStateProperty.all( Theme.of(context).primaryColor.withOpacity(0.2)), - minimumSize: MaterialStateProperty.all( + minimumSize: WidgetStateProperty.all( const Size(double.infinity, kToolbarHeight * 1.2)), - shape: MaterialStateProperty.all(const RoundedRectangleBorder( + shape: WidgetStateProperty.all(const RoundedRectangleBorder( borderRadius: BorderRadius.zero)), ), child: Text('Cancel Print', diff --git a/lib/status/normal_error_screen.dart b/lib/status/normal_error_screen.dart index b91c2c8..286b930 100644 --- a/lib/status/normal_error_screen.dart +++ b/lib/status/normal_error_screen.dart @@ -182,13 +182,13 @@ class ErrorScreenState extends State { Navigator.pop(context); }, style: ButtonStyle( - backgroundColor: MaterialStateProperty.all( + backgroundColor: WidgetStateProperty.all( const Color.fromARGB(255, 207, 124, 0)), - overlayColor: MaterialStateProperty.all( + overlayColor: WidgetStateProperty.all( Theme.of(context).primaryColor.withOpacity(0.2)), - minimumSize: MaterialStateProperty.all( + minimumSize: WidgetStateProperty.all( const Size(double.infinity, kToolbarHeight * 1.2)), - shape: MaterialStateProperty.all(const RoundedRectangleBorder( + shape: WidgetStateProperty.all(const RoundedRectangleBorder( borderRadius: BorderRadius.zero)), ), child: Text('Restart Printer', @@ -205,13 +205,13 @@ class ErrorScreenState extends State { Navigator.pop(context); }, style: ButtonStyle( - backgroundColor: MaterialStateProperty.all( + backgroundColor: WidgetStateProperty.all( const Color.fromARGB(255, 207, 124, 0)), - overlayColor: MaterialStateProperty.all( + overlayColor: WidgetStateProperty.all( Theme.of(context).primaryColor.withOpacity(0.2)), - minimumSize: MaterialStateProperty.all( + minimumSize: WidgetStateProperty.all( const Size(double.infinity, kToolbarHeight * 1.2)), - shape: MaterialStateProperty.all(const RoundedRectangleBorder( + shape: WidgetStateProperty.all(const RoundedRectangleBorder( borderRadius: BorderRadius.zero)), ), child: Text('Advanced Information', diff --git a/lib/themes/themes.dart b/lib/themes/themes.dart index 25622b4..5fa3789 100644 --- a/lib/themes/themes.dart +++ b/lib/themes/themes.dart @@ -50,7 +50,7 @@ final ThemeData themeLight = ThemeData( ), elevatedButtonTheme: ElevatedButtonThemeData( style: ButtonStyle( - minimumSize: MaterialStateProperty.all( + minimumSize: WidgetStateProperty.all( const Size(88, 50)), // Set the width and height ), ), @@ -88,7 +88,7 @@ final ThemeData themeDark = ThemeData( ), elevatedButtonTheme: ElevatedButtonThemeData( style: ButtonStyle( - minimumSize: MaterialStateProperty.all( + minimumSize: WidgetStateProperty.all( const Size(88, 50)), // Set the width and height ), ), diff --git a/lib/tools/exposure_screen.dart b/lib/tools/exposure_screen.dart index bcc3595..01ab270 100644 --- a/lib/tools/exposure_screen.dart +++ b/lib/tools/exposure_screen.dart @@ -210,15 +210,15 @@ class ExposureScreenState extends State { final theme = Theme.of(context).copyWith( elevatedButtonTheme: ElevatedButtonThemeData( style: ButtonStyle( - shape: MaterialStateProperty.resolveWith( - (Set states) { + shape: WidgetStateProperty.resolveWith( + (Set states) { return RoundedRectangleBorder( borderRadius: BorderRadius.circular(15), side: const BorderSide(color: Colors.transparent)); }, ), - minimumSize: MaterialStateProperty.resolveWith( - (Set states) { + minimumSize: WidgetStateProperty.resolveWith( + (Set states) { return const Size(double.infinity, double.infinity); }, ), @@ -263,9 +263,9 @@ class ExposureScreenState extends State { : () => exposeScreen('Grid'), style: theme.elevatedButtonTheme.style ?.copyWith( - shape: MaterialStateProperty.resolveWith< + shape: WidgetStateProperty.resolveWith< OutlinedBorder?>( - (Set states) { + (Set states) { return const RoundedRectangleBorder( borderRadius: BorderRadius.only( bottomLeft: Radius.circular(15), @@ -289,9 +289,9 @@ class ExposureScreenState extends State { : () => exposeScreen('Dimensions'), style: theme.elevatedButtonTheme.style ?.copyWith( - shape: MaterialStateProperty.resolveWith< + shape: WidgetStateProperty.resolveWith< OutlinedBorder?>( - (Set states) { + (Set states) { return RoundedRectangleBorder( borderRadius: BorderRadius.circular(0)); @@ -313,9 +313,9 @@ class ExposureScreenState extends State { : () => exposeScreen('Blank'), style: theme.elevatedButtonTheme.style ?.copyWith( - shape: MaterialStateProperty.resolveWith< + shape: WidgetStateProperty.resolveWith< OutlinedBorder?>( - (Set states) { + (Set states) { return const RoundedRectangleBorder( borderRadius: BorderRadius.only( bottomRight: Radius.circular(15), diff --git a/lib/tools/move_z_screen.dart b/lib/tools/move_z_screen.dart index 8c24e12..e6b8019 100644 --- a/lib/tools/move_z_screen.dart +++ b/lib/tools/move_z_screen.dart @@ -80,15 +80,15 @@ class MoveZScreenState extends State { final theme = Theme.of(context).copyWith( elevatedButtonTheme: ElevatedButtonThemeData( style: ButtonStyle( - shape: MaterialStateProperty.resolveWith( - (Set states) { + shape: WidgetStateProperty.resolveWith( + (Set states) { return RoundedRectangleBorder( borderRadius: BorderRadius.circular(15), ); }, ), - minimumSize: MaterialStateProperty.resolveWith( - (Set states) { + minimumSize: WidgetStateProperty.resolveWith( + (Set states) { return const Size(double.infinity, double.infinity); }, ), diff --git a/lib/util/orion_config.dart b/lib/util/orion_config.dart index dc725fa..1ca159e 100644 --- a/lib/util/orion_config.dart +++ b/lib/util/orion_config.dart @@ -91,7 +91,7 @@ class OrionConfig { shape: const RoundedRectangleBorder( borderRadius: BorderRadius.zero), insetPadding: EdgeInsets.zero, - backgroundColor: Theme.of(context).colorScheme.background, + backgroundColor: Theme.of(context).colorScheme.surface, child: const Center( child: SizedBox( height: 75, diff --git a/macos/Flutter/GeneratedPluginRegistrant.swift b/macos/Flutter/GeneratedPluginRegistrant.swift index 9f7d30b..fda153a 100644 --- a/macos/Flutter/GeneratedPluginRegistrant.swift +++ b/macos/Flutter/GeneratedPluginRegistrant.swift @@ -5,13 +5,11 @@ import FlutterMacOS import Foundation -import package_info import path_provider_foundation import url_launcher_macos import window_size func RegisterGeneratedPlugins(registry: FlutterPluginRegistry) { - FLTPackageInfoPlugin.register(with: registry.registrar(forPlugin: "FLTPackageInfoPlugin")) PathProviderPlugin.register(with: registry.registrar(forPlugin: "PathProviderPlugin")) UrlLauncherPlugin.register(with: registry.registrar(forPlugin: "UrlLauncherPlugin")) WindowSizePlugin.register(with: registry.registrar(forPlugin: "WindowSizePlugin")) diff --git a/macos/Podfile.lock b/macos/Podfile.lock index a6c46ed..595435d 100644 --- a/macos/Podfile.lock +++ b/macos/Podfile.lock @@ -1,7 +1,5 @@ PODS: - FlutterMacOS (1.0.0) - - package_info (0.0.1): - - FlutterMacOS - path_provider_foundation (0.0.1): - Flutter - FlutterMacOS @@ -12,7 +10,6 @@ PODS: DEPENDENCIES: - FlutterMacOS (from `Flutter/ephemeral`) - - package_info (from `Flutter/ephemeral/.symlinks/plugins/package_info/macos`) - path_provider_foundation (from `Flutter/ephemeral/.symlinks/plugins/path_provider_foundation/darwin`) - url_launcher_macos (from `Flutter/ephemeral/.symlinks/plugins/url_launcher_macos/macos`) - window_size (from `Flutter/ephemeral/.symlinks/plugins/window_size/macos`) @@ -20,8 +17,6 @@ DEPENDENCIES: EXTERNAL SOURCES: FlutterMacOS: :path: Flutter/ephemeral - package_info: - :path: Flutter/ephemeral/.symlinks/plugins/package_info/macos path_provider_foundation: :path: Flutter/ephemeral/.symlinks/plugins/path_provider_foundation/darwin url_launcher_macos: @@ -31,7 +26,6 @@ EXTERNAL SOURCES: SPEC CHECKSUMS: FlutterMacOS: 8f6f14fa908a6fb3fba0cd85dbd81ec4b251fb24 - package_info: 6eba2fd8d3371dda2d85c8db6fe97488f24b74b2 path_provider_foundation: 2b6b4c569c0fb62ec74538f866245ac84301af46 url_launcher_macos: 5f437abeda8c85500ceb03f5c1938a8c5a705399 window_size: 339dafa0b27a95a62a843042038fa6c3c48de195 diff --git a/macos/Runner/AppDelegate.swift b/macos/Runner/AppDelegate.swift index 576234c..a6ac806 100644 --- a/macos/Runner/AppDelegate.swift +++ b/macos/Runner/AppDelegate.swift @@ -2,7 +2,7 @@ import Cocoa import FlutterMacOS import CoreWLAN -@NSApplicationMain +@main class AppDelegate: FlutterAppDelegate { override func applicationShouldTerminateAfterLastWindowClosed(_ sender: NSApplication) -> Bool { return true diff --git a/pubspec.lock b/pubspec.lock index 879ced3..b9e8509 100644 --- a/pubspec.lock +++ b/pubspec.lock @@ -5,10 +5,15 @@ packages: dependency: transitive description: name: _fe_analyzer_shared - sha256: "0b2f2bd91ba804e53a61d757b986f89f1f9eaed5b11e4b2f5a2468d86d6c9fc7" + sha256: f256b0c0ba6c7577c15e2e4e114755640a875e885099367bf6e012b19314c834 url: "https://pub.dev" source: hosted - version: "67.0.0" + version: "72.0.0" + _macros: + dependency: transitive + description: dart + source: sdk + version: "0.3.2" about: dependency: "direct main" description: @@ -21,18 +26,18 @@ packages: dependency: transitive description: name: analyzer - sha256: "37577842a27e4338429a1cbc32679d508836510b056f1eedf0c8d20e39c1383d" + sha256: b652861553cd3990d8ed361f7979dc6d7053a9ac8843fa73820ab68ce5410139 url: "https://pub.dev" source: hosted - version: "6.4.1" + version: "6.7.0" archive: dependency: "direct main" description: name: archive - sha256: ecf4273855368121b1caed0d10d4513c7241dfc813f7d3c8933b36622ae9b265 + sha256: cb6a278ef2dbb298455e1a713bda08524a175630ec643a242c399c932a0a1f7d url: "https://pub.dev" source: hosted - version: "3.5.1" + version: "3.6.1" args: dependency: transitive description: @@ -117,10 +122,10 @@ packages: dependency: "direct main" description: name: crypto - sha256: ff625774173754681d66daaf4a448684fb04b78f902da9cb3d308c19cc5e8bab + sha256: ec30d999af904f33454ba22ed9a86162b35e52b44ac4807d1d93c288041d7d27 url: "https://pub.dev" source: hosted - version: "3.0.3" + version: "3.0.5" csslib: dependency: transitive description: @@ -173,10 +178,10 @@ packages: dependency: transitive description: name: ffi - sha256: "493f37e7df1804778ff3a53bd691d8692ddf69702cf4c1c1096a2e41b4779e21" + sha256: "16ed7b077ef01ad6170a3d0c57caa4a112a38d7a2ed5602e0aca9ca6f3d98da6" url: "https://pub.dev" source: hosted - version: "2.1.2" + version: "2.1.3" file: dependency: transitive description: @@ -244,10 +249,10 @@ packages: dependency: "direct main" description: name: go_router - sha256: aa073287b8f43553678e6fa9e8bb9c83212ff76e09542129a8099bbc8db4df65 + sha256: "2ddb88e9ad56ae15ee144ed10e33886777eb5ca2509a914850a5faa7b52ff459" url: "https://pub.dev" source: hosted - version: "14.1.2" + version: "14.2.7" html: dependency: transitive description: @@ -260,10 +265,10 @@ packages: dependency: "direct main" description: name: http - sha256: "761a297c042deedc1ffbb156d6e2af13886bb305c2a343a4d972504cd67dd938" + sha256: b9c29a161230ee03d3ccf545097fccd9b87a5264228c5d348202e0f0c28f9010 url: "https://pub.dev" source: hosted - version: "1.2.1" + version: "1.2.2" http_parser: dependency: transitive description: @@ -292,34 +297,34 @@ packages: dependency: "direct main" description: name: intl - sha256: "3bc132a9dbce73a7e4a21a17d06e1878839ffbf975568bc875c60537824b0c4d" + sha256: d6f56758b7d3014a48af9701c085700aac781a92a87a62b1333b46d8879661cf url: "https://pub.dev" source: hosted - version: "0.18.1" + version: "0.19.0" leak_tracker: dependency: transitive description: name: leak_tracker - sha256: "78eb209deea09858f5269f5a5b02be4049535f568c07b275096836f01ea323fa" + sha256: "3f87a60e8c63aecc975dda1ceedbc8f24de75f09e4856ea27daf8958f2f0ce05" url: "https://pub.dev" source: hosted - version: "10.0.0" + version: "10.0.5" leak_tracker_flutter_testing: dependency: transitive description: name: leak_tracker_flutter_testing - sha256: b46c5e37c19120a8a01918cfaf293547f47269f7cb4b0058f21531c2465d6ef0 + sha256: "932549fb305594d82d7183ecd9fa93463e9914e1b67cacc34bc40906594a1806" url: "https://pub.dev" source: hosted - version: "2.0.1" + version: "3.0.5" leak_tracker_testing: dependency: transitive description: name: leak_tracker_testing - sha256: a597f72a664dbd293f3bfc51f9ba69816f84dcd403cdac7066cb3f6003f3ab47 + sha256: "6ba465d5d76e67ddf503e1161d1f4a6bc42306f9d66ca1e8f079a47290fb06d3" url: "https://pub.dev" source: hosted - version: "2.0.1" + version: "3.0.1" lints: dependency: transitive description: @@ -336,6 +341,14 @@ packages: url: "https://pub.dev" source: hosted version: "1.2.0" + macros: + dependency: transitive + description: + name: macros + sha256: "0acaed5d6b7eab89f63350bccd82119e6c602df0f391260d0e32b5e23db79536" + url: "https://pub.dev" + source: hosted + version: "0.1.2-main.4" markdown: dependency: transitive description: @@ -356,18 +369,18 @@ packages: dependency: transitive description: name: material_color_utilities - sha256: "0e0a020085b65b6083975e499759762399b4475f766c21668c4ecca34ea74e5a" + sha256: f7142bb1154231d7ea5f96bc7bde4bda2a0945d2806bb11670e30b850d56bdec url: "https://pub.dev" source: hosted - version: "0.8.0" + version: "0.11.1" meta: dependency: transitive description: name: meta - sha256: d584fa6707a52763a52446f02cc621b077888fb63b93bbcb1143a7be5a0c0c04 + sha256: bdb68674043280c3428e9ec998512fb681678676b3c54e773629ffe74419f8c7 url: "https://pub.dev" source: hosted - version: "1.11.0" + version: "1.15.0" nested: dependency: transitive description: @@ -384,14 +397,6 @@ packages: url: "https://pub.dev" source: hosted version: "2.1.0" - package_info: - dependency: "direct main" - description: - name: package_info - sha256: "6c07d9d82c69e16afeeeeb6866fe43985a20b3b50df243091bfc4a4ad2b03b75" - url: "https://pub.dev" - source: hosted - version: "2.0.2" path: dependency: "direct main" description: @@ -412,18 +417,18 @@ packages: dependency: "direct main" description: name: path_provider - sha256: c9e7d3a4cd1410877472158bee69963a4579f78b68c65a2b7d40d1a7a88bb161 + sha256: fec0d61223fba3154d87759e3cc27fe2c8dc498f6386c6d6fc80d1afdd1bf378 url: "https://pub.dev" source: hosted - version: "2.1.3" + version: "2.1.4" path_provider_android: dependency: transitive description: name: path_provider_android - sha256: a248d8146ee5983446bf03ed5ea8f6533129a12b11f12057ad1b4a67a2b3b41d + sha256: "6f01f8e37ec30b07bc424b4deabac37cacb1bc7e2e515ad74486039918a37eb7" url: "https://pub.dev" source: hosted - version: "2.2.4" + version: "2.2.10" path_provider_foundation: dependency: transitive description: @@ -452,10 +457,10 @@ packages: dependency: transitive description: name: path_provider_windows - sha256: "8bc9f22eee8690981c22aa7fc602f5c85b497a6fb2ceb35ee5a5e5ed85ad8170" + sha256: bd6f00dbd873bfb70d0761682da2b3a2c2fccc2b9e84c495821639601d81afe7 url: "https://pub.dev" source: hosted - version: "2.2.1" + version: "2.3.0" pausable_timer: dependency: transitive description: @@ -476,34 +481,34 @@ packages: dependency: transitive description: name: permission_handler_android - sha256: "8bb852cd759488893805c3161d0b2b5db55db52f773dbb014420b304055ba2c5" + sha256: "76e4ab092c1b240d31177bb64d2b0bea43f43d0e23541ec866151b9f7b2490fa" url: "https://pub.dev" source: hosted - version: "12.0.6" + version: "12.0.12" permission_handler_apple: dependency: transitive description: name: permission_handler_apple - sha256: e9ad66020b89ff1b63908f247c2c6f931c6e62699b756ef8b3c4569350cd8662 + sha256: e6f6d73b12438ef13e648c4ae56bd106ec60d17e90a59c4545db6781229082a0 url: "https://pub.dev" source: hosted - version: "9.4.4" + version: "9.4.5" permission_handler_html: dependency: transitive description: name: permission_handler_html - sha256: "54bf176b90f6eddd4ece307e2c06cf977fb3973719c35a93b85cc7093eb6070d" + sha256: af26edbbb1f2674af65a8f4b56e1a6f526156bc273d0e65dd8075fab51c78851 url: "https://pub.dev" source: hosted - version: "0.1.1" + version: "0.1.3+2" permission_handler_platform_interface: dependency: transitive description: name: permission_handler_platform_interface - sha256: "48d4fcf201a1dad93ee869ab0d4101d084f49136ec82a8a06ed9cfeacab9fd20" + sha256: fe0ffe274d665be8e34f9c59705441a7d248edebbe5d9e3ec2665f88b79358ea url: "https://pub.dev" source: hosted - version: "4.2.1" + version: "4.2.2" permission_handler_windows: dependency: transitive description: @@ -532,10 +537,10 @@ packages: dependency: transitive description: name: platform - sha256: "12220bb4b65720483f8fa9450b4332347737cf8213dd2840d8b2c823e47243ec" + sha256: "9b71283fc13df574056616011fb138fd3b793ea47cc509c189a6c3fa5f8a1a65" url: "https://pub.dev" source: hosted - version: "3.1.4" + version: "3.1.5" plugin_platform_interface: dependency: transitive description: @@ -572,10 +577,10 @@ packages: dependency: transitive description: name: qr - sha256: "64957a3930367bf97cc211a5af99551d630f2f4625e38af10edd6b19131b64b3" + sha256: "5a1d2586170e172b8a8c8470bbbffd5eb0cd38a66c0d77155ea138d3af3a4445" url: "https://pub.dev" source: hosted - version: "3.0.1" + version: "3.0.2" qr_flutter: dependency: "direct main" description: @@ -584,14 +589,6 @@ packages: url: "https://pub.dev" source: hosted version: "4.1.0" - side_navigation: - dependency: "direct main" - description: - name: side_navigation - sha256: "32da9920e604ff38bbaef8a083845a62561bf882c98c6eedd5b5860899091bb2" - url: "https://pub.dev" - source: hosted - version: "1.0.4" simple_mustache: dependency: transitive description: @@ -657,18 +654,18 @@ packages: dependency: transitive description: name: test_api - sha256: "5c2f730018264d276c20e4f1503fd1308dfbbae39ec8ee63c5236311ac06954b" + sha256: "5b8a98dafc4d5c4c9c72d8b31ab2b23fc13422348d2997120294d3bac86b4ddb" url: "https://pub.dev" source: hosted - version: "0.6.1" + version: "0.7.2" toastification: dependency: "direct main" description: name: toastification - sha256: "5e751acc2fb5b8d008138dac255d62290fde4e5a24824f29809ac098c3dfe395" + sha256: "441adf261f03b82db7067cba349756f70e9e2c0b7276bcba856210742f85f394" url: "https://pub.dev" source: hosted - version: "2.0.0" + version: "2.2.0" typed_data: dependency: transitive description: @@ -697,34 +694,34 @@ packages: dependency: transitive description: name: url_launcher - sha256: "6ce1e04375be4eed30548f10a315826fd933c1e493206eab82eed01f438c8d2e" + sha256: "21b704ce5fa560ea9f3b525b43601c678728ba46725bab9b01187b4831377ed3" url: "https://pub.dev" source: hosted - version: "6.2.6" + version: "6.3.0" url_launcher_android: dependency: transitive description: name: url_launcher_android - sha256: "360a6ed2027f18b73c8d98e159dda67a61b7f2e0f6ec26e86c3ada33b0621775" + sha256: e35a698ac302dd68e41f73250bd9517fe3ab5fa4f18fe4647a0872db61bacbab url: "https://pub.dev" source: hosted - version: "6.3.1" + version: "6.3.10" url_launcher_ios: dependency: transitive description: name: url_launcher_ios - sha256: "7068716403343f6ba4969b4173cbf3b84fc768042124bc2c011e5d782b24fe89" + sha256: e43b677296fadce447e987a2f519dcf5f6d1e527dc35d01ffab4fff5b8a7063e url: "https://pub.dev" source: hosted - version: "6.3.0" + version: "6.3.1" url_launcher_linux: dependency: transitive description: name: url_launcher_linux - sha256: ab360eb661f8879369acac07b6bb3ff09d9471155357da8443fd5d3cf7363811 + sha256: e2b9622b4007f97f504cd64c0128309dfb978ae66adbe944125ed9e1750f06af url: "https://pub.dev" source: hosted - version: "3.1.1" + version: "3.2.0" url_launcher_macos: dependency: transitive description: @@ -745,26 +742,26 @@ packages: dependency: transitive description: name: url_launcher_web - sha256: "8d9e750d8c9338601e709cd0885f95825086bd8b642547f26bda435aade95d8a" + sha256: "772638d3b34c779ede05ba3d38af34657a05ac55b06279ea6edd409e323dca8e" url: "https://pub.dev" source: hosted - version: "2.3.1" + version: "2.3.3" url_launcher_windows: dependency: transitive description: name: url_launcher_windows - sha256: ecf9725510600aa2bb6d7ddabe16357691b6d2805f66216a97d1b881e21beff7 + sha256: "49c10f879746271804767cb45551ec5592cdab00ee105c06dddde1a98f73b185" url: "https://pub.dev" source: hosted - version: "3.1.1" + version: "3.1.2" uuid: dependency: transitive description: name: uuid - sha256: "814e9e88f21a176ae1359149021870e87f7cddaf633ab678a5d2b0bff7fd1ba8" + sha256: f33d6bb662f0e4f79dcd7ada2e6170f3b3a2530c28fc41f49a411ddedd576a77 url: "https://pub.dev" source: hosted - version: "4.4.0" + version: "4.5.0" vector_graphics: dependency: transitive description: @@ -797,22 +794,14 @@ packages: url: "https://pub.dev" source: hosted version: "2.1.4" - vk: - dependency: "direct main" - description: - name: vk - sha256: "3cc0824100729ecf254d228e2ea57a2563c7658038d15adf65b008aafe5d767e" - url: "https://pub.dev" - source: hosted - version: "0.2.1" vm_service: dependency: transitive description: name: vm_service - sha256: b3d56ff4341b8f182b96aceb2fa20e3dcb336b9f867bc0eafc0de10f1048e957 + sha256: "5c5f338a667b4c644744b661f309fb8080bb94b18a7e91ef1dbd343bed00ed6d" url: "https://pub.dev" source: hosted - version: "13.0.0" + version: "14.2.5" watcher: dependency: transitive description: @@ -825,34 +814,10 @@ packages: dependency: transitive description: name: web - sha256: "97da13628db363c635202ad97068d47c5b8aa555808e7a9411963c533b449b27" + sha256: d43c1d6b787bf0afad444700ae7f4db8827f701bc61c255ac8d328c6f4d52062 url: "https://pub.dev" source: hosted - version: "0.5.1" - wifi_info_flutter: - dependency: "direct main" - description: - name: wifi_info_flutter - sha256: "9662240e4edb8a91b572efa0b4e4c72ee644e25611525633580afc3257386a48" - url: "https://pub.dev" - source: hosted - version: "2.0.2" - wifi_info_flutter_platform_interface: - dependency: transitive - description: - name: wifi_info_flutter_platform_interface - sha256: "844a9a5f23d1a639cf5fd8b4f007ee4d60526ad63beb35e1cbe2512f1a9921e4" - url: "https://pub.dev" - source: hosted - version: "2.0.1" - win32: - dependency: transitive - description: - name: win32 - sha256: "0eaf06e3446824099858367950a813472af675116bf63f008a4c2a75ae13e9cb" - url: "https://pub.dev" - source: hosted - version: "5.5.0" + version: "1.0.0" window_size: dependency: "direct main" description: @@ -887,5 +852,5 @@ packages: source: hosted version: "3.1.2" sdks: - dart: ">=3.3.0 <4.0.0" - flutter: ">=3.19.0" + dart: ">=3.5.0 <3.25.0" + flutter: ">=3.24.0" diff --git a/pubspec.yaml b/pubspec.yaml index ed92b2a..52f7123 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -20,7 +20,7 @@ publish_to: "none" # Remove this line if you wish to publish to pub.dev version: 0.4.0+SELFCOMPILED environment: - sdk: ">=2.18.5 <3.0.0" + sdk: ">=2.18.5 <3.25.0" # Dependencies specify other packages that your package needs in order to work. # To automatically upgrade your package dependencies to the latest versions @@ -41,15 +41,12 @@ dependencies: go_router: ^14.1.2 http: ^1.2.1 ini: ^2.1.0 - intl: ^0.18.1 + intl: ^0.19.0 path: any path_provider: ^2.1.0 permission_handler: ^11.0.1 provider: ^6.1.2 qr_flutter: ^4.0.0 - side_navigation: ^1.0.4 - vk: ^0.2.1 - wifi_info_flutter: ^2.0.2 window_size: git: url: https://github.com/google/flutter-desktop-embedding.git @@ -57,7 +54,6 @@ dependencies: archive: ^3.4.2 auto_size_text: ^3.0.0 crypto: ^3.0.2 - package_info: ^2.0.2 phosphor_flutter: ^2.0.1 about: ^2.1.3 pubspec_extract: ^2.0.5