From 3990a87c9af753bae19093e2086f8713c846d4ba Mon Sep 17 00:00:00 2001 From: TechAurelian Date: Wed, 17 Apr 2024 12:09:14 +0300 Subject: [PATCH] Update copyright, author information & urls --- LICENSE | 2 +- README.md | 6 +- lib/common/app_settings.dart | 6 +- lib/common/app_strings.dart | 10 +- lib/main.dart | 6 +- lib/models/counter.dart | 7 +- lib/screens/home.dart | 6 +- lib/screens/settings_screen.dart | 6 +- lib/utils/utils.dart | 6 +- lib/widgets/accept_cancel_dialog.dart | 6 +- lib/widgets/color_list_tile.dart | 6 +- lib/widgets/counter_display.dart | 6 +- lib/widgets/counters_drawer.dart | 6 +- pubspec.lock | 327 ++++++++++++++++---------- pubspec.yaml | 10 +- 15 files changed, 252 insertions(+), 164 deletions(-) diff --git a/LICENSE b/LICENSE index 886c027..f45c38d 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2021-2022 TechAurelian +Copyright (c) 2020-2024 Appliberated Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/README.md b/README.md index ae871fa..cf8599f 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ **Easy counting. Multiple color counters. An open source, Hello World Flutter app.** -[Hello World Counters](https://techaurelian.com/helloworldcounters/) is an easy to use tally counter app for Android. It gives you a different counter for each of the unambiguous color terms in English: Black, White, Red, Green, Yellow, Blue, Brown, Purple, Pink, Orange, and Grey. This means you can count people, sheep, kisses, or smiles, and nobody will know what you are counting! +[Hello World Counters](https://appliberated.com/helloworldcounters/) is an easy to use tally counter app for Android. It gives you a different counter for each of the unambiguous color terms in English: Black, White, Red, Green, Yellow, Blue, Brown, Purple, Pink, Orange, and Grey. This means you can count people, sheep, kisses, or smiles, and nobody will know what you are counting! You can increment or decrement the counter, reset its value back to zero, or share it by email, messengers, or in social networks. @@ -19,8 +19,8 @@ What else could you count with this app? | Platform | Options | | ------------- | ------------- | -| Android | [Install from Google Play](https://play.google.com/store/apps/details?id=com.anaurelian.helloworldcounters)
[Download APK from GitHub Releases](https://github.com/TechAurelian/hello_world_counters/releases)| -| Any | [Run the web app in your browser](https://helloworldcounters.techaurelian.com) | +| Android | [Install from Google Play](https://play.google.com/store/apps/details?id=com.anaurelian.helloworldcounters)
[Download APK from GitHub Releases](https://github.com/Appliberated/hello_world_counters/releases)| +| Any | [Run the web app in your browser](https://helloworldcounters.appliberated.com) | ## Hello World diff --git a/lib/common/app_settings.dart b/lib/common/app_settings.dart index d4e762c..0675be3 100644 --- a/lib/common/app_settings.dart +++ b/lib/common/app_settings.dart @@ -1,6 +1,6 @@ -// Copyright 2020-2022 TechAurelian. All rights reserved. -// Use of this source code is governed by an MIT-style license that can be -// found in the LICENSE file. +// Copyright 2020-2024 Appliberated (https://appliberated.com). All rights reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. +// @author TechAurelian (https://techaurelian.com) import 'package:shared_preferences/shared_preferences.dart'; diff --git a/lib/common/app_strings.dart b/lib/common/app_strings.dart index 9f0b817..9e20190 100644 --- a/lib/common/app_strings.dart +++ b/lib/common/app_strings.dart @@ -1,6 +1,6 @@ -// Copyright 2020-2022 TechAurelian. All rights reserved. -// Use of this source code is governed by an MIT-style license that can be -// found in the LICENSE file. +// Copyright 2020-2024 Appliberated (https://appliberated.com). All rights reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. +// @author TechAurelian (https://techaurelian.com) import '../screens/home.dart'; @@ -32,9 +32,9 @@ class AppStrings { static const String rateAppURL = 'https://play.google.com/store/apps/details?id=com.anaurelian.helloworldcounters'; - static const String helpURL = 'https://techaurelian.com/helloworldcounters/'; + static const String helpURL = 'https://appliberated.com/helloworldcounters/'; - static const String viewSourceURL = 'https://techaurelian.com/helloworldcounters/view-source/'; + static const String viewSourceURL = 'https://github.com/Appliberated/hello_world_counters'; // ----------------------------------------------------------------------------------------------- // Home Screen - Main diff --git a/lib/main.dart b/lib/main.dart index 1342a5d..fd34112 100644 --- a/lib/main.dart +++ b/lib/main.dart @@ -1,6 +1,6 @@ -// Copyright 2020-2022 TechAurelian. All rights reserved. -// Use of this source code is governed by an MIT-style license that can be -// found in the LICENSE file. +// Copyright 2020-2024 Appliberated (https://appliberated.com). All rights reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. +// @author TechAurelian (https://techaurelian.com) import 'package:flutter/material.dart'; diff --git a/lib/models/counter.dart b/lib/models/counter.dart index 0a98c8c..65881c7 100644 --- a/lib/models/counter.dart +++ b/lib/models/counter.dart @@ -1,6 +1,6 @@ -// Copyright 2020-2022 TechAurelian. All rights reserved. -// Use of this source code is governed by an MIT-style license that can be -// found in the LICENSE file. +// Copyright 2020-2024 Appliberated (https://appliberated.com). All rights reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. +// @author TechAurelian (https://techaurelian.com) // cSpell:ignore endregion @@ -102,7 +102,6 @@ class Counter { }; //#endregion - } /// Provides a map of counters for each counter type, and keeps a reference to the current counter. diff --git a/lib/screens/home.dart b/lib/screens/home.dart index 03a41e1..8f000ae 100644 --- a/lib/screens/home.dart +++ b/lib/screens/home.dart @@ -1,6 +1,6 @@ -// Copyright 2020-2022 TechAurelian. All rights reserved. -// Use of this source code is governed by an MIT-style license that can be -// found in the LICENSE file. +// Copyright 2020-2024 Appliberated (https://appliberated.com). All rights reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. +// @author TechAurelian (https://techaurelian.com) import 'package:flutter/material.dart'; diff --git a/lib/screens/settings_screen.dart b/lib/screens/settings_screen.dart index 406d738..a2238fc 100644 --- a/lib/screens/settings_screen.dart +++ b/lib/screens/settings_screen.dart @@ -1,6 +1,6 @@ -// Copyright 2020-2022 TechAurelian. All rights reserved. -// Use of this source code is governed by an MIT-style license that can be -// found in the LICENSE file. +// Copyright 2020-2024 Appliberated (https://appliberated.com). All rights reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. +// @author TechAurelian (https://techaurelian.com) import 'package:flutter/material.dart'; diff --git a/lib/utils/utils.dart b/lib/utils/utils.dart index 922d82f..4546bd1 100644 --- a/lib/utils/utils.dart +++ b/lib/utils/utils.dart @@ -1,6 +1,6 @@ -// Copyright 2020-2022 TechAurelian. All rights reserved. -// Use of this source code is governed by an MIT-style license that can be -// found in the LICENSE file. +// Copyright 2020-2024 Appliberated (https://appliberated.com). All rights reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. +// @author TechAurelian (https://techaurelian.com) import 'package:flutter/material.dart'; diff --git a/lib/widgets/accept_cancel_dialog.dart b/lib/widgets/accept_cancel_dialog.dart index 1447685..cfbe767 100644 --- a/lib/widgets/accept_cancel_dialog.dart +++ b/lib/widgets/accept_cancel_dialog.dart @@ -1,6 +1,6 @@ -// Copyright 2020-2022 TechAurelian. All rights reserved. -// Use of this source code is governed by an MIT-style license that can be -// found in the LICENSE file. +// Copyright 2020-2024 Appliberated (https://appliberated.com). All rights reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. +// @author TechAurelian (https://techaurelian.com) import 'package:flutter/material.dart'; diff --git a/lib/widgets/color_list_tile.dart b/lib/widgets/color_list_tile.dart index e5c810c..449350b 100644 --- a/lib/widgets/color_list_tile.dart +++ b/lib/widgets/color_list_tile.dart @@ -1,6 +1,6 @@ -// Copyright 2020-2022 TechAurelian. All rights reserved. -// Use of this source code is governed by an MIT-style license that can be -// found in the LICENSE file. +// Copyright 2020-2024 Appliberated (https://appliberated.com). All rights reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. +// @author TechAurelian (https://techaurelian.com) import 'package:flutter/material.dart'; diff --git a/lib/widgets/counter_display.dart b/lib/widgets/counter_display.dart index 3e6ac5c..d4612a7 100644 --- a/lib/widgets/counter_display.dart +++ b/lib/widgets/counter_display.dart @@ -1,6 +1,6 @@ -// Copyright 2020-2022 TechAurelian. All rights reserved. -// Use of this source code is governed by an MIT-style license that can be -// found in the LICENSE file. +// Copyright 2020-2024 Appliberated (https://appliberated.com). All rights reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. +// @author TechAurelian (https://techaurelian.com) import 'package:flutter/material.dart'; diff --git a/lib/widgets/counters_drawer.dart b/lib/widgets/counters_drawer.dart index 29da3f7..b074b92 100644 --- a/lib/widgets/counters_drawer.dart +++ b/lib/widgets/counters_drawer.dart @@ -1,6 +1,6 @@ -// Copyright 2020-2022 TechAurelian. All rights reserved. -// Use of this source code is governed by an MIT-style license that can be -// found in the LICENSE file. +// Copyright 2020-2024 Appliberated (https://appliberated.com). All rights reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. +// @author TechAurelian (https://techaurelian.com) import 'package:flutter/material.dart'; diff --git a/pubspec.lock b/pubspec.lock index 0e6ffab..828ed65 100644 --- a/pubspec.lock +++ b/pubspec.lock @@ -5,72 +5,90 @@ packages: dependency: transitive description: name: async - url: "https://pub.dartlang.org" + sha256: "947bfcf187f74dbc5e146c9eb9c0f10c9f8b30743e341481c1e2ed3ecc18c20c" + url: "https://pub.dev" source: hosted - version: "2.9.0" + version: "2.11.0" boolean_selector: dependency: transitive description: name: boolean_selector - url: "https://pub.dartlang.org" + sha256: "6cfb5af12253eaf2b368f07bacc5a80d1301a071c73360d746b7f2e32d762c66" + url: "https://pub.dev" source: hosted - version: "2.1.0" + version: "2.1.1" characters: dependency: transitive description: name: characters - url: "https://pub.dartlang.org" + sha256: "04a925763edad70e8443c99234dc3328f442e811f1d8fd1a72f1c8ad0f69a605" + url: "https://pub.dev" source: hosted - version: "1.2.1" + version: "1.3.0" clock: dependency: transitive description: name: clock - url: "https://pub.dartlang.org" + sha256: cb6d7f03e1de671e34607e909a7213e31d7752be4fb66a86d29fe1eb14bfb5cf + url: "https://pub.dev" source: hosted version: "1.1.1" collection: dependency: transitive description: name: collection - url: "https://pub.dartlang.org" + sha256: ee67cb0715911d28db6bf4af1026078bd6f0128b07a5f66fb2ed94ec6783c09a + url: "https://pub.dev" source: hosted - version: "1.16.0" + version: "1.18.0" cross_file: dependency: transitive description: name: cross_file - url: "https://pub.dartlang.org" + sha256: "55d7b444feb71301ef6b8838dbc1ae02e63dd48c8773f3810ff53bb1e2945b32" + url: "https://pub.dev" source: hosted - version: "0.3.3+2" + version: "0.3.4+1" crypto: dependency: transitive description: name: crypto - url: "https://pub.dartlang.org" + sha256: aa274aa7774f8964e4f4f38cc994db7b6158dd36e9187aaceaddc994b35c6c67 + url: "https://pub.dev" source: hosted version: "3.0.2" fake_async: dependency: transitive description: name: fake_async - url: "https://pub.dartlang.org" + sha256: "511392330127add0b769b75a987850d136345d9227c6b94c96a04cf4a391bf78" + url: "https://pub.dev" source: hosted version: "1.3.1" ffi: dependency: transitive description: name: ffi - url: "https://pub.dartlang.org" + sha256: a38574032c5f1dd06c4aee541789906c12ccaab8ba01446e800d9c5b79c4a978 + url: "https://pub.dev" source: hosted version: "2.0.1" file: dependency: transitive description: name: file - url: "https://pub.dartlang.org" + sha256: "1b92bec4fc2a72f59a8e15af5f52cd441e4a7860b49499d69dfa817af20e925d" + url: "https://pub.dev" source: hosted version: "6.1.4" + fixnum: + dependency: transitive + description: + name: fixnum + sha256: "25517a4deb0c03aa0f32fd12db525856438902d9c16536311e76cdc57b31d7d1" + url: "https://pub.dev" + source: hosted + version: "1.1.0" flutter: dependency: "direct main" description: flutter @@ -80,9 +98,10 @@ packages: dependency: "direct dev" description: name: flutter_lints - url: "https://pub.dartlang.org" + sha256: "9e8c3858111da373efc5aa341de011d9bd23e2c5c5e0c62bccf32438e192d7b1" + url: "https://pub.dev" source: hosted - version: "2.0.1" + version: "3.0.2" flutter_test: dependency: "direct dev" description: flutter @@ -93,195 +112,222 @@ packages: description: flutter source: sdk version: "0.0.0" - js: + leak_tracker: dependency: transitive description: - name: js - url: "https://pub.dartlang.org" + name: leak_tracker + sha256: "78eb209deea09858f5269f5a5b02be4049535f568c07b275096836f01ea323fa" + url: "https://pub.dev" source: hosted - version: "0.6.4" + version: "10.0.0" + leak_tracker_flutter_testing: + dependency: transitive + description: + name: leak_tracker_flutter_testing + sha256: b46c5e37c19120a8a01918cfaf293547f47269f7cb4b0058f21531c2465d6ef0 + url: "https://pub.dev" + source: hosted + version: "2.0.1" + leak_tracker_testing: + dependency: transitive + description: + name: leak_tracker_testing + sha256: a597f72a664dbd293f3bfc51f9ba69816f84dcd403cdac7066cb3f6003f3ab47 + url: "https://pub.dev" + source: hosted + version: "2.0.1" lints: dependency: transitive description: name: lints - url: "https://pub.dartlang.org" + sha256: cbf8d4b858bb0134ef3ef87841abdf8d63bfc255c266b7bf6b39daa1085c4290 + url: "https://pub.dev" source: hosted - version: "2.0.1" + version: "3.0.0" matcher: dependency: transitive description: name: matcher - url: "https://pub.dartlang.org" + sha256: d2323aa2060500f906aa31a895b4030b6da3ebdcc5619d14ce1aada65cd161cb + url: "https://pub.dev" source: hosted - version: "0.12.12" + version: "0.12.16+1" material_color_utilities: dependency: transitive description: name: material_color_utilities - url: "https://pub.dartlang.org" + sha256: "0e0a020085b65b6083975e499759762399b4475f766c21668c4ecca34ea74e5a" + url: "https://pub.dev" source: hosted - version: "0.1.5" + version: "0.8.0" meta: dependency: transitive description: name: meta - url: "https://pub.dartlang.org" + sha256: d584fa6707a52763a52446f02cc621b077888fb63b93bbcb1143a7be5a0c0c04 + url: "https://pub.dev" source: hosted - version: "1.8.0" + version: "1.11.0" mime: dependency: transitive description: name: mime - url: "https://pub.dartlang.org" + sha256: "2e123074287cc9fd6c09de8336dae606d1ddb88d9ac47358826db698c176a1f2" + url: "https://pub.dev" source: hosted - version: "1.0.2" + version: "1.0.5" path: dependency: transitive description: name: path - url: "https://pub.dartlang.org" + sha256: "087ce49c3f0dc39180befefc60fdb4acd8f8620e5682fe2476afd0b3688bb4af" + url: "https://pub.dev" source: hosted - version: "1.8.2" + version: "1.9.0" path_provider: dependency: transitive description: name: path_provider - url: "https://pub.dartlang.org" + sha256: "3087813781ab814e4157b172f1a11c46be20179fcc9bea043e0fba36bc0acaa2" + url: "https://pub.dev" source: hosted - version: "2.0.11" + version: "2.0.15" path_provider_android: dependency: transitive description: name: path_provider_android - url: "https://pub.dartlang.org" + sha256: "1dab723dd8feeb80afb39c7be894f09df1457243d930010f6f328fb8c660c5e1" + url: "https://pub.dev" source: hosted version: "2.0.21" - path_provider_ios: + path_provider_foundation: dependency: transitive description: - name: path_provider_ios - url: "https://pub.dartlang.org" + name: path_provider_foundation + sha256: "916731ccbdce44d545414dd9961f26ba5fbaa74bcbb55237d8e65a623a8c7297" + url: "https://pub.dev" source: hosted - version: "2.0.11" + version: "2.2.4" path_provider_linux: dependency: transitive description: name: path_provider_linux - url: "https://pub.dartlang.org" + sha256: ab0987bf95bc591da42dffb38c77398fc43309f0b9b894dcc5d6f40c4b26c379 + url: "https://pub.dev" source: hosted version: "2.1.7" - path_provider_macos: - dependency: transitive - description: - name: path_provider_macos - url: "https://pub.dartlang.org" - source: hosted - version: "2.0.6" path_provider_platform_interface: dependency: transitive description: name: path_provider_platform_interface - url: "https://pub.dartlang.org" + sha256: f0abc8ebd7253741f05488b4813d936b4d07c6bae3e86148a09e342ee4b08e76 + url: "https://pub.dev" source: hosted version: "2.0.5" path_provider_windows: dependency: transitive description: name: path_provider_windows - url: "https://pub.dartlang.org" + sha256: "1cb68ba4cd3a795033de62ba1b7b4564dace301f952de6bfb3cd91b202b6ee96" + url: "https://pub.dev" source: hosted - version: "2.1.3" + version: "2.1.7" platform: dependency: transitive description: name: platform - url: "https://pub.dartlang.org" + sha256: "4a451831508d7d6ca779f7ac6e212b4023dd5a7d08a27a63da33756410e32b76" + url: "https://pub.dev" source: hosted version: "3.1.0" plugin_platform_interface: dependency: transitive description: name: plugin_platform_interface - url: "https://pub.dartlang.org" + sha256: "4820fbfdb9478b1ebae27888254d445073732dae3d6ea81f0b7e06d5dedc3f02" + url: "https://pub.dev" source: hosted - version: "2.1.3" + version: "2.1.8" process: dependency: transitive description: name: process - url: "https://pub.dartlang.org" + sha256: "53fd8db9cec1d37b0574e12f07520d582019cb6c44abf5479a01505099a34a09" + url: "https://pub.dev" source: hosted version: "4.2.4" share_plus: dependency: "direct main" description: name: share_plus - url: "https://pub.dartlang.org" + sha256: fb5319f3aab4c5dda5ebb92dca978179ba21f8c783ee4380910ef4c1c6824f51 + url: "https://pub.dev" source: hosted - version: "6.2.0" + version: "8.0.3" share_plus_platform_interface: dependency: transitive description: name: share_plus_platform_interface - url: "https://pub.dartlang.org" + sha256: "251eb156a8b5fa9ce033747d73535bf53911071f8d3b6f4f0b578505ce0d4496" + url: "https://pub.dev" source: hosted - version: "3.2.0" + version: "3.4.0" shared_preferences: dependency: "direct main" description: name: shared_preferences - url: "https://pub.dartlang.org" + sha256: d3bbe5553a986e83980916ded2f0b435ef2e1893dfaa29d5a7a790d0eca12180 + url: "https://pub.dev" source: hosted - version: "2.0.15" + version: "2.2.3" shared_preferences_android: dependency: transitive description: name: shared_preferences_android - url: "https://pub.dartlang.org" + sha256: "1ee8bf911094a1b592de7ab29add6f826a7331fb854273d55918693d5364a1f2" + url: "https://pub.dev" source: hosted - version: "2.0.14" - shared_preferences_ios: + version: "2.2.2" + shared_preferences_foundation: dependency: transitive description: - name: shared_preferences_ios - url: "https://pub.dartlang.org" + name: shared_preferences_foundation + sha256: "7708d83064f38060c7b39db12aefe449cb8cdc031d6062280087bc4cdb988f5c" + url: "https://pub.dev" source: hosted - version: "2.1.1" + version: "2.3.5" shared_preferences_linux: dependency: transitive description: name: shared_preferences_linux - url: "https://pub.dartlang.org" + sha256: "9f2cbcf46d4270ea8be39fa156d86379077c8a5228d9dfdb1164ae0bb93f1faa" + url: "https://pub.dev" source: hosted - version: "2.1.1" - shared_preferences_macos: - dependency: transitive - description: - name: shared_preferences_macos - url: "https://pub.dartlang.org" - source: hosted - version: "2.0.4" + version: "2.3.2" shared_preferences_platform_interface: dependency: transitive description: name: shared_preferences_platform_interface - url: "https://pub.dartlang.org" + sha256: d4ec5fc9ebb2f2e056c617112aa75dcf92fc2e4faaf2ae999caa297473f75d8a + url: "https://pub.dev" source: hosted - version: "2.1.0" + version: "2.3.1" shared_preferences_web: dependency: transitive description: name: shared_preferences_web - url: "https://pub.dartlang.org" + sha256: "9aee1089b36bd2aafe06582b7d7817fd317ef05fc30e6ba14bff247d0933042a" + url: "https://pub.dev" source: hosted - version: "2.0.4" + version: "2.3.0" shared_preferences_windows: dependency: transitive description: name: shared_preferences_windows - url: "https://pub.dartlang.org" + sha256: "841ad54f3c8381c480d0c9b508b89a34036f512482c407e6df7a9c4aa2ef8f59" + url: "https://pub.dev" source: hosted - version: "2.1.1" + version: "2.3.2" sky_engine: dependency: transitive description: flutter @@ -291,135 +337,178 @@ packages: dependency: transitive description: name: source_span - url: "https://pub.dartlang.org" + sha256: "53e943d4206a5e30df338fd4c6e7a077e02254531b138a15aec3bd143c1a8b3c" + url: "https://pub.dev" source: hosted - version: "1.9.0" + version: "1.10.0" + sprintf: + dependency: transitive + description: + name: sprintf + sha256: "1fc9ffe69d4df602376b52949af107d8f5703b77cda567c4d7d86a0693120f23" + url: "https://pub.dev" + source: hosted + version: "7.0.0" stack_trace: dependency: transitive description: name: stack_trace - url: "https://pub.dartlang.org" + sha256: "73713990125a6d93122541237550ee3352a2d84baad52d375a4cad2eb9b7ce0b" + url: "https://pub.dev" source: hosted - version: "1.10.0" + version: "1.11.1" stream_channel: dependency: transitive description: name: stream_channel - url: "https://pub.dartlang.org" + sha256: ba2aa5d8cc609d96bbb2899c28934f9e1af5cddbd60a827822ea467161eb54e7 + url: "https://pub.dev" source: hosted - version: "2.1.0" + version: "2.1.2" string_scanner: dependency: transitive description: name: string_scanner - url: "https://pub.dartlang.org" + sha256: "556692adab6cfa87322a115640c11f13cb77b3f076ddcc5d6ae3c20242bedcde" + url: "https://pub.dev" source: hosted - version: "1.1.1" + version: "1.2.0" term_glyph: dependency: transitive description: name: term_glyph - url: "https://pub.dartlang.org" + sha256: a29248a84fbb7c79282b40b8c72a1209db169a2e0542bce341da992fe1bc7e84 + url: "https://pub.dev" source: hosted version: "1.2.1" test_api: dependency: transitive description: name: test_api - url: "https://pub.dartlang.org" + sha256: "5c2f730018264d276c20e4f1503fd1308dfbbae39ec8ee63c5236311ac06954b" + url: "https://pub.dev" source: hosted - version: "0.4.12" + version: "0.6.1" typed_data: dependency: transitive description: name: typed_data - url: "https://pub.dartlang.org" + sha256: "26f87ade979c47a150c9eaab93ccd2bebe70a27dc0b4b29517f2904f04eb11a5" + url: "https://pub.dev" source: hosted version: "1.3.1" url_launcher: dependency: "direct main" description: name: url_launcher - url: "https://pub.dartlang.org" + sha256: "6ce1e04375be4eed30548f10a315826fd933c1e493206eab82eed01f438c8d2e" + url: "https://pub.dev" source: hosted - version: "6.1.6" + version: "6.2.6" url_launcher_android: dependency: transitive description: name: url_launcher_android - url: "https://pub.dartlang.org" + sha256: "360a6ed2027f18b73c8d98e159dda67a61b7f2e0f6ec26e86c3ada33b0621775" + url: "https://pub.dev" source: hosted - version: "6.0.21" + version: "6.3.1" url_launcher_ios: dependency: transitive description: name: url_launcher_ios - url: "https://pub.dartlang.org" + sha256: "9149d493b075ed740901f3ee844a38a00b33116c7c5c10d7fb27df8987fb51d5" + url: "https://pub.dev" source: hosted - version: "6.0.17" + version: "6.2.5" url_launcher_linux: dependency: transitive description: name: url_launcher_linux - url: "https://pub.dartlang.org" + sha256: ab360eb661f8879369acac07b6bb3ff09d9471155357da8443fd5d3cf7363811 + url: "https://pub.dev" source: hosted - version: "3.0.1" + version: "3.1.1" url_launcher_macos: dependency: transitive description: name: url_launcher_macos - url: "https://pub.dartlang.org" + sha256: b7244901ea3cf489c5335bdacda07264a6e960b1c1b1a9f91e4bc371d9e68234 + url: "https://pub.dev" source: hosted - version: "3.0.1" + version: "3.1.0" url_launcher_platform_interface: dependency: transitive description: name: url_launcher_platform_interface - url: "https://pub.dartlang.org" + sha256: "552f8a1e663569be95a8190206a38187b531910283c3e982193e4f2733f01029" + url: "https://pub.dev" source: hosted - version: "2.1.1" + version: "2.3.2" url_launcher_web: dependency: transitive description: name: url_launcher_web - url: "https://pub.dartlang.org" + sha256: "8d9e750d8c9338601e709cd0885f95825086bd8b642547f26bda435aade95d8a" + url: "https://pub.dev" source: hosted - version: "2.0.13" + version: "2.3.1" url_launcher_windows: dependency: transitive description: name: url_launcher_windows - url: "https://pub.dartlang.org" + sha256: ecf9725510600aa2bb6d7ddabe16357691b6d2805f66216a97d1b881e21beff7 + url: "https://pub.dev" source: hosted - version: "3.0.1" + version: "3.1.1" uuid: dependency: transitive description: name: uuid - url: "https://pub.dartlang.org" + sha256: "814e9e88f21a176ae1359149021870e87f7cddaf633ab678a5d2b0bff7fd1ba8" + url: "https://pub.dev" source: hosted - version: "3.0.6" + version: "4.4.0" vector_math: dependency: transitive description: name: vector_math - url: "https://pub.dartlang.org" + sha256: "80b3257d1492ce4d091729e3a67a60407d227c27241d6927be0130c98e741803" + url: "https://pub.dev" source: hosted - version: "2.1.2" + version: "2.1.4" + vm_service: + dependency: transitive + description: + name: vm_service + sha256: b3d56ff4341b8f182b96aceb2fa20e3dcb336b9f867bc0eafc0de10f1048e957 + url: "https://pub.dev" + source: hosted + version: "13.0.0" + web: + dependency: transitive + description: + name: web + sha256: "97da13628db363c635202ad97068d47c5b8aa555808e7a9411963c533b449b27" + url: "https://pub.dev" + source: hosted + version: "0.5.1" win32: dependency: transitive description: name: win32 - url: "https://pub.dartlang.org" + sha256: "7dacfda1edcca378031db9905ad7d7bd56b29fd1a90b0908b71a52a12c41e36b" + url: "https://pub.dev" source: hosted - version: "3.1.1" + version: "5.0.3" xdg_directories: dependency: transitive description: name: xdg_directories - url: "https://pub.dartlang.org" + sha256: "11541eedefbcaec9de35aa82650b695297ce668662bbd6e3911a7fabdbde589f" + url: "https://pub.dev" source: hosted version: "0.2.0+2" sdks: - dart: ">=2.18.4 <3.0.0" - flutter: ">=3.0.0" + dart: ">=3.3.3 <4.0.0" + flutter: ">=3.19.0" diff --git a/pubspec.yaml b/pubspec.yaml index 178f24e..aa02815 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: 1.1.0+3 environment: - sdk: '>=2.18.4 <3.0.0' + sdk: '>=3.3.3 <4.0.0' # Dependencies specify other packages that your package needs in order to work. # To automatically upgrade your package dependencies to the latest versions @@ -32,9 +32,9 @@ dependencies: flutter: sdk: flutter - shared_preferences: ^2.0.15 - share_plus: ^6.2.0 - url_launcher: ^6.1.6 + shared_preferences: ^2.2.3 + share_plus: ^8.0.3 + url_launcher: ^6.2.6 dev_dependencies: flutter_test: @@ -45,7 +45,7 @@ dev_dependencies: # activated in the `analysis_options.yaml` file located at the root of your # package. See that file for information about deactivating specific lint # rules and activating additional ones. - flutter_lints: ^2.0.0 + flutter_lints: ^3.0.2 # For information on the generic Dart part of this file, see the # following page: https://dart.dev/tools/pub/pubspec