From 20b3f9896983385337830879d0c1b2409b5b0c9b Mon Sep 17 00:00:00 2001 From: Paul Fauchon Date: Wed, 20 Dec 2023 15:55:16 +0800 Subject: [PATCH] update dependencies --- lib/app/states/app.freezed.dart | 2 +- lib/channels/states/channel.freezed.dart | 2 +- lib/channels/states/tv_channel.freezed.dart | 2 +- lib/comments/states/comments.freezed.dart | 2 +- .../states/comments_container.freezed.dart | 2 +- .../states/single_comment.freezed.dart | 2 +- .../states/download_manager.freezed.dart | 2 +- .../states/downloaded_video.freezed.dart | 2 +- lib/player/states/audio_player.freezed.dart | 2 +- lib/player/states/player.freezed.dart | 2 +- .../states/player_controls.freezed.dart | 2 +- .../states/tv_player_controls.freezed.dart | 2 +- .../states/tv_player_settings.freezed.dart | 2 +- lib/player/states/video_player.freezed.dart | 2 +- lib/playlists/states/playlist.freezed.dart | 2 +- .../states/playlist_list.freezed.dart | 2 +- lib/search/states/search.freezed.dart | 2 +- lib/search/states/tv_search.freezed.dart | 2 +- lib/settings/states/app_logs.freezed.dart | 2 +- .../states/server_list_settings.freezed.dart | 2 +- lib/settings/states/settings.freezed.dart | 2 +- lib/settings/states/video_filter.freezed.dart | 2 +- .../states/video_filter_channel.freezed.dart | 2 +- .../states/video_filter_edit.freezed.dart | 2 +- .../states/manage_subscriptions.freezed.dart | 2 +- .../states/subscribe_button.freezed.dart | 2 +- lib/utils/states/item_list.freezed.dart | 2 +- .../states/paginated_list_view.freezed.dart | 2 +- lib/utils/states/select_list.freezed.dart | 2 +- ...able_dynamic_select_from_list.freezed.dart | 2 +- .../states/add_to_playlist.freezed.dart | 2 +- lib/videos/states/compact_video.freezed.dart | 2 +- .../states/download_modal_sheet.freezed.dart | 2 +- lib/videos/states/history.freezed.dart | 2 +- lib/videos/states/tv_video.freezed.dart | 2 +- lib/videos/states/video.freezed.dart | 2 +- lib/videos/states/video_in_list.freezed.dart | 2 +- pubspec.lock | 62 +++++++++++-------- pubspec.yaml | 28 ++++----- submodules/flutter | 2 +- 40 files changed, 87 insertions(+), 79 deletions(-) diff --git a/lib/app/states/app.freezed.dart b/lib/app/states/app.freezed.dart index 3f06ec0f..da7dbef3 100644 --- a/lib/app/states/app.freezed.dart +++ b/lib/app/states/app.freezed.dart @@ -128,7 +128,7 @@ class _$AppStateImpl implements _AppState { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && other is _$AppStateImpl && diff --git a/lib/channels/states/channel.freezed.dart b/lib/channels/states/channel.freezed.dart index 09f41b75..122adcac 100644 --- a/lib/channels/states/channel.freezed.dart +++ b/lib/channels/states/channel.freezed.dart @@ -222,7 +222,7 @@ class _$ChannelControllerImpl implements _ChannelController { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && other is _$ChannelControllerImpl && diff --git a/lib/channels/states/tv_channel.freezed.dart b/lib/channels/states/tv_channel.freezed.dart index 8a5924df..d5af0e52 100644 --- a/lib/channels/states/tv_channel.freezed.dart +++ b/lib/channels/states/tv_channel.freezed.dart @@ -175,7 +175,7 @@ class _$TvChannelControllerImpl implements _TvChannelController { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && other is _$TvChannelControllerImpl && diff --git a/lib/comments/states/comments.freezed.dart b/lib/comments/states/comments.freezed.dart index 4a22762e..261ce52c 100644 --- a/lib/comments/states/comments.freezed.dart +++ b/lib/comments/states/comments.freezed.dart @@ -221,7 +221,7 @@ class _$CommentsStateImpl implements _CommentsState { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && other is _$CommentsStateImpl && diff --git a/lib/comments/states/comments_container.freezed.dart b/lib/comments/states/comments_container.freezed.dart index 7c14532f..05970a4e 100644 --- a/lib/comments/states/comments_container.freezed.dart +++ b/lib/comments/states/comments_container.freezed.dart @@ -123,7 +123,7 @@ class _$CommentsContainerStateImpl implements _CommentsContainerState { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && other is _$CommentsContainerStateImpl && diff --git a/lib/comments/states/single_comment.freezed.dart b/lib/comments/states/single_comment.freezed.dart index e06377ac..4ea15f36 100644 --- a/lib/comments/states/single_comment.freezed.dart +++ b/lib/comments/states/single_comment.freezed.dart @@ -131,7 +131,7 @@ class _$SingleCommentStateImpl implements _SingleCommentState { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && other is _$SingleCommentStateImpl && diff --git a/lib/downloads/states/download_manager.freezed.dart b/lib/downloads/states/download_manager.freezed.dart index b235fb29..6c1ff23b 100644 --- a/lib/downloads/states/download_manager.freezed.dart +++ b/lib/downloads/states/download_manager.freezed.dart @@ -141,7 +141,7 @@ class _$DownloadManagerStateImpl extends _DownloadManagerState { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && other is _$DownloadManagerStateImpl && diff --git a/lib/downloads/states/downloaded_video.freezed.dart b/lib/downloads/states/downloaded_video.freezed.dart index 55286b8d..32c5bdf7 100644 --- a/lib/downloads/states/downloaded_video.freezed.dart +++ b/lib/downloads/states/downloaded_video.freezed.dart @@ -132,7 +132,7 @@ class _$DownloadedVideoStateImpl implements _DownloadedVideoState { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && other is _$DownloadedVideoStateImpl && diff --git a/lib/player/states/audio_player.freezed.dart b/lib/player/states/audio_player.freezed.dart index 065915fa..f759abf1 100644 --- a/lib/player/states/audio_player.freezed.dart +++ b/lib/player/states/audio_player.freezed.dart @@ -239,7 +239,7 @@ class _$AudioPlayerStateImpl extends _AudioPlayerState { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && other is _$AudioPlayerStateImpl && diff --git a/lib/player/states/player.freezed.dart b/lib/player/states/player.freezed.dart index 054ec954..3f512671 100644 --- a/lib/player/states/player.freezed.dart +++ b/lib/player/states/player.freezed.dart @@ -721,7 +721,7 @@ class _$PlayerStateImpl extends _PlayerState { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && other is _$PlayerStateImpl && diff --git a/lib/player/states/player_controls.freezed.dart b/lib/player/states/player_controls.freezed.dart index fcda59f7..52e7d403 100644 --- a/lib/player/states/player_controls.freezed.dart +++ b/lib/player/states/player_controls.freezed.dart @@ -312,7 +312,7 @@ class _$PlayercontrolsStateImpl implements _PlayercontrolsState { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && other is _$PlayercontrolsStateImpl && diff --git a/lib/player/states/tv_player_controls.freezed.dart b/lib/player/states/tv_player_controls.freezed.dart index 5b2f7b0b..c52c3d49 100644 --- a/lib/player/states/tv_player_controls.freezed.dart +++ b/lib/player/states/tv_player_controls.freezed.dart @@ -179,7 +179,7 @@ class _$TvPlayerControlsStateImpl extends _TvPlayerControlsState { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && other is _$TvPlayerControlsStateImpl && diff --git a/lib/player/states/tv_player_settings.freezed.dart b/lib/player/states/tv_player_settings.freezed.dart index ff5100f7..4a2eeb7c 100644 --- a/lib/player/states/tv_player_settings.freezed.dart +++ b/lib/player/states/tv_player_settings.freezed.dart @@ -107,7 +107,7 @@ class _$TvPlayerSettingsStateImpl implements _TvPlayerSettingsState { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && other is _$TvPlayerSettingsStateImpl && diff --git a/lib/player/states/video_player.freezed.dart b/lib/player/states/video_player.freezed.dart index ddb9e35e..4cad8774 100644 --- a/lib/player/states/video_player.freezed.dart +++ b/lib/player/states/video_player.freezed.dart @@ -254,7 +254,7 @@ class _$VideoPlayerStateImpl extends _VideoPlayerState { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && other is _$VideoPlayerStateImpl && diff --git a/lib/playlists/states/playlist.freezed.dart b/lib/playlists/states/playlist.freezed.dart index 2be98406..773096c7 100644 --- a/lib/playlists/states/playlist.freezed.dart +++ b/lib/playlists/states/playlist.freezed.dart @@ -173,7 +173,7 @@ class _$PlaylistStateImpl implements _PlaylistState { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && other is _$PlaylistStateImpl && diff --git a/lib/playlists/states/playlist_list.freezed.dart b/lib/playlists/states/playlist_list.freezed.dart index d471b957..1a687cfe 100644 --- a/lib/playlists/states/playlist_list.freezed.dart +++ b/lib/playlists/states/playlist_list.freezed.dart @@ -165,7 +165,7 @@ class _$PlaylistListStateImpl implements _PlaylistListState { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && other is _$PlaylistListStateImpl && diff --git a/lib/search/states/search.freezed.dart b/lib/search/states/search.freezed.dart index aefbe74b..d73dbb9d 100644 --- a/lib/search/states/search.freezed.dart +++ b/lib/search/states/search.freezed.dart @@ -250,7 +250,7 @@ class _$SearchStateImpl implements _SearchState { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && other is _$SearchStateImpl && diff --git a/lib/search/states/tv_search.freezed.dart b/lib/search/states/tv_search.freezed.dart index 167ef0a4..19d4a129 100644 --- a/lib/search/states/tv_search.freezed.dart +++ b/lib/search/states/tv_search.freezed.dart @@ -135,7 +135,7 @@ class _$TvSearchStateImpl implements _TvSearchState { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && other is _$TvSearchStateImpl && diff --git a/lib/settings/states/app_logs.freezed.dart b/lib/settings/states/app_logs.freezed.dart index ff2005ea..458b2a2f 100644 --- a/lib/settings/states/app_logs.freezed.dart +++ b/lib/settings/states/app_logs.freezed.dart @@ -132,7 +132,7 @@ class _$AppLogsStateImpl implements _AppLogsState { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && other is _$AppLogsStateImpl && diff --git a/lib/settings/states/server_list_settings.freezed.dart b/lib/settings/states/server_list_settings.freezed.dart index e5aad23a..ae3b6ef1 100644 --- a/lib/settings/states/server_list_settings.freezed.dart +++ b/lib/settings/states/server_list_settings.freezed.dart @@ -192,7 +192,7 @@ class _$ServerListSettingsStateImpl implements _ServerListSettingsState { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && other is _$ServerListSettingsStateImpl && diff --git a/lib/settings/states/settings.freezed.dart b/lib/settings/states/settings.freezed.dart index d880a119..0a0a6a64 100644 --- a/lib/settings/states/settings.freezed.dart +++ b/lib/settings/states/settings.freezed.dart @@ -126,7 +126,7 @@ class _$SettingsStateImpl extends _SettingsState { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && other is _$SettingsStateImpl && diff --git a/lib/settings/states/video_filter.freezed.dart b/lib/settings/states/video_filter.freezed.dart index b3da8631..c61b35e7 100644 --- a/lib/settings/states/video_filter.freezed.dart +++ b/lib/settings/states/video_filter.freezed.dart @@ -127,7 +127,7 @@ class _$VideoFilterStateImpl implements _VideoFilterState { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && other is _$VideoFilterStateImpl && diff --git a/lib/settings/states/video_filter_channel.freezed.dart b/lib/settings/states/video_filter_channel.freezed.dart index ff90d3e4..4bb8abb5 100644 --- a/lib/settings/states/video_filter_channel.freezed.dart +++ b/lib/settings/states/video_filter_channel.freezed.dart @@ -144,7 +144,7 @@ class _$VideoFilterChannelStateImpl implements _VideoFilterChannelState { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && other is _$VideoFilterChannelStateImpl && diff --git a/lib/settings/states/video_filter_edit.freezed.dart b/lib/settings/states/video_filter_edit.freezed.dart index 5e5c4f75..6bee3aad 100644 --- a/lib/settings/states/video_filter_edit.freezed.dart +++ b/lib/settings/states/video_filter_edit.freezed.dart @@ -180,7 +180,7 @@ class _$VideoFilterEditStateImpl implements _VideoFilterEditState { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && other is _$VideoFilterEditStateImpl && diff --git a/lib/subscription_management/states/manage_subscriptions.freezed.dart b/lib/subscription_management/states/manage_subscriptions.freezed.dart index 57ba0293..5196d33b 100644 --- a/lib/subscription_management/states/manage_subscriptions.freezed.dart +++ b/lib/subscription_management/states/manage_subscriptions.freezed.dart @@ -130,7 +130,7 @@ class _$ManageSubscriptionsStateImpl implements _ManageSubscriptionsState { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && other is _$ManageSubscriptionsStateImpl && diff --git a/lib/subscription_management/states/subscribe_button.freezed.dart b/lib/subscription_management/states/subscribe_button.freezed.dart index 4d8a915e..f99c1903 100644 --- a/lib/subscription_management/states/subscribe_button.freezed.dart +++ b/lib/subscription_management/states/subscribe_button.freezed.dart @@ -151,7 +151,7 @@ class _$SubscribeButtonStateImpl implements _SubscribeButtonState { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && other is _$SubscribeButtonStateImpl && diff --git a/lib/utils/states/item_list.freezed.dart b/lib/utils/states/item_list.freezed.dart index 6304a842..61116314 100644 --- a/lib/utils/states/item_list.freezed.dart +++ b/lib/utils/states/item_list.freezed.dart @@ -164,7 +164,7 @@ class _$ItemListStateImpl implements _ItemListState { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && other is _$ItemListStateImpl && diff --git a/lib/utils/states/paginated_list_view.freezed.dart b/lib/utils/states/paginated_list_view.freezed.dart index ca769e4e..03a93fd5 100644 --- a/lib/utils/states/paginated_list_view.freezed.dart +++ b/lib/utils/states/paginated_list_view.freezed.dart @@ -148,7 +148,7 @@ class _$PaginatedListViewControllerImpl } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && other is _$PaginatedListViewControllerImpl && diff --git a/lib/utils/states/select_list.freezed.dart b/lib/utils/states/select_list.freezed.dart index a6820610..c2f65976 100644 --- a/lib/utils/states/select_list.freezed.dart +++ b/lib/utils/states/select_list.freezed.dart @@ -126,7 +126,7 @@ class _$SelectListStateImpl implements _SelectListState { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && other is _$SelectListStateImpl && diff --git a/lib/utils/states/tv/searchable_dynamic_select_from_list.freezed.dart b/lib/utils/states/tv/searchable_dynamic_select_from_list.freezed.dart index c42a4e40..ee43533a 100644 --- a/lib/utils/states/tv/searchable_dynamic_select_from_list.freezed.dart +++ b/lib/utils/states/tv/searchable_dynamic_select_from_list.freezed.dart @@ -145,7 +145,7 @@ class _$SearchableSelectFromListStateImpl } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && other is _$SearchableSelectFromListStateImpl && diff --git a/lib/videos/states/add_to_playlist.freezed.dart b/lib/videos/states/add_to_playlist.freezed.dart index 68dbe65f..44cc1b61 100644 --- a/lib/videos/states/add_to_playlist.freezed.dart +++ b/lib/videos/states/add_to_playlist.freezed.dart @@ -200,7 +200,7 @@ class _$AddToPlaylistControllerImpl implements _AddToPlaylistController { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && other is _$AddToPlaylistControllerImpl && diff --git a/lib/videos/states/compact_video.freezed.dart b/lib/videos/states/compact_video.freezed.dart index cdd04ec3..06864010 100644 --- a/lib/videos/states/compact_video.freezed.dart +++ b/lib/videos/states/compact_video.freezed.dart @@ -117,7 +117,7 @@ class _$CompactVideoStateImpl implements _CompactVideoState { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && other is _$CompactVideoStateImpl && diff --git a/lib/videos/states/download_modal_sheet.freezed.dart b/lib/videos/states/download_modal_sheet.freezed.dart index 61c49a24..db9777ff 100644 --- a/lib/videos/states/download_modal_sheet.freezed.dart +++ b/lib/videos/states/download_modal_sheet.freezed.dart @@ -123,7 +123,7 @@ class _$DownloadModalSheetStateImpl implements _DownloadModalSheetState { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && other is _$DownloadModalSheetStateImpl && diff --git a/lib/videos/states/history.freezed.dart b/lib/videos/states/history.freezed.dart index cb6c8cbd..dd9e010a 100644 --- a/lib/videos/states/history.freezed.dart +++ b/lib/videos/states/history.freezed.dart @@ -131,7 +131,7 @@ class _$HistoryItemStateImpl implements _HistoryItemState { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && other is _$HistoryItemStateImpl && diff --git a/lib/videos/states/tv_video.freezed.dart b/lib/videos/states/tv_video.freezed.dart index 710688f4..361a14fa 100644 --- a/lib/videos/states/tv_video.freezed.dart +++ b/lib/videos/states/tv_video.freezed.dart @@ -104,7 +104,7 @@ class _$TvVideoStateImpl implements _TvVideoState { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && other is _$TvVideoStateImpl && diff --git a/lib/videos/states/video.freezed.dart b/lib/videos/states/video.freezed.dart index 6edcdbb2..c091a12a 100644 --- a/lib/videos/states/video.freezed.dart +++ b/lib/videos/states/video.freezed.dart @@ -271,7 +271,7 @@ class _$VideoStateImpl extends _VideoState { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && other is _$VideoStateImpl && diff --git a/lib/videos/states/video_in_list.freezed.dart b/lib/videos/states/video_in_list.freezed.dart index 9efe3e9f..cf033af2 100644 --- a/lib/videos/states/video_in_list.freezed.dart +++ b/lib/videos/states/video_in_list.freezed.dart @@ -133,7 +133,7 @@ class _$VideoInListStateImpl implements _VideoInListState { } @override - bool operator ==(dynamic other) { + bool operator ==(Object other) { return identical(this, other) || (other.runtimeType == runtimeType && other is _$VideoInListStateImpl && diff --git a/pubspec.lock b/pubspec.lock index d729c265..9479ce78 100644 --- a/pubspec.lock +++ b/pubspec.lock @@ -25,6 +25,14 @@ packages: url: "https://pub.dev" source: hosted version: "6.2.0" + ansicolor: + dependency: transitive + description: + name: ansicolor + sha256: "8bf17a8ff6ea17499e40a2d2542c2f481cd7615760c6d34065cb22bfd22e6880" + url: "https://pub.dev" + source: hosted + version: "2.0.2" archive: dependency: transitive description: @@ -366,10 +374,10 @@ packages: dependency: "direct main" description: name: device_info_plus - sha256: "7035152271ff67b072a211152846e9f1259cf1be41e34cd3e0b5463d2d6b8419" + sha256: "0042cb3b2a76413ea5f8a2b40cec2a33e01d0c937e91f0f7c211fde4f7739ba6" url: "https://pub.dev" source: hosted - version: "9.1.0" + version: "9.1.1" device_info_plus_platform_interface: dependency: transitive description: @@ -382,18 +390,18 @@ packages: dependency: "direct main" description: name: dio - sha256: "417e2a6f9d83ab396ec38ff4ea5da6c254da71e4db765ad737a42af6930140b7" + sha256: "797e1e341c3dd2f69f2dad42564a6feff3bfb87187d05abb93b9609e6f1645c3" url: "https://pub.dev" source: hosted - version: "5.3.3" + version: "5.4.0" dynamic_color: dependency: "direct main" description: name: dynamic_color - sha256: "8b8bd1d798bd393e11eddeaa8ae95b12ff028bf7d5998fc5d003488cd5f4ce2f" + sha256: a866f1f8947bfdaf674d7928e769eac7230388a2e7a2542824fad4bb5b87be3b url: "https://pub.dev" source: hosted - version: "1.6.8" + version: "1.6.9" easy_debounce: dependency: "direct main" description: @@ -451,10 +459,10 @@ packages: dependency: "direct main" description: name: flutter_animate - sha256: "62f346340a96192070e31e3f2a1bd30a28530f1fe8be978821e06cd56b74d6d2" + sha256: "1dbc1aabfb8ec1e9d9feed2b675c21fb6b0a11f99be53ec3bc0f1901af6a8eb7" url: "https://pub.dev" source: hosted - version: "4.2.0+1" + version: "4.3.0" flutter_bloc: dependency: "direct main" description: @@ -525,10 +533,10 @@ packages: dependency: "direct main" description: name: flutter_native_splash - sha256: d93394f22f73e810bda59e11ebe83329c5511d6460b6b7509c4e1f3c92d6d625 + sha256: "141b20f15a2c4fe6e33c49257ca1bc114fc5c500b04fcbc8d75016bb86af672f" url: "https://pub.dev" source: hosted - version: "2.3.5" + version: "2.3.8" flutter_svg: dependency: "direct main" description: @@ -541,10 +549,10 @@ packages: dependency: "direct main" description: name: flutter_swipe_action_cell - sha256: "159932ca5f45cf1cc4ba184454da5ea504d737b7efe10fb3fdee5f9a26e1915a" + sha256: "5cea4d8c3d333c5610ffa4bc39a30561927f90857be19ba33a8322fdc856d335" url: "https://pub.dev" source: hosted - version: "3.1.2" + version: "3.1.3" flutter_test: dependency: "direct dev" description: flutter @@ -575,10 +583,10 @@ packages: dependency: "direct dev" description: name: freezed - sha256: "21bf2825311de65501d22e563e3d7605dff57fb5e6da982db785ae5372ff018a" + sha256: "6c5031daae12c7072b3a87eff98983076434b4889ef2a44384d0cae3f82372ba" url: "https://pub.dev" source: hosted - version: "2.4.5" + version: "2.4.6" freezed_annotation: dependency: "direct main" description: @@ -636,10 +644,10 @@ packages: dependency: "direct main" description: name: http - sha256: "759d1a329847dd0f39226c688d3e06a6b8679668e350e2891a6474f8b4bb8525" + sha256: d4872660c46d929f6b8a9ef4e7a7eff7e49bbf0c4ec3f385ee32df5119175139 url: "https://pub.dev" source: hosted - version: "1.1.0" + version: "1.1.2" http_multi_server: dependency: transitive description: @@ -813,26 +821,26 @@ packages: dependency: "direct main" description: name: objectbox - sha256: "4b645c71771b87188442143a50c55ab238a8e60fe367b6a0968c0842292ffb30" + sha256: "949747f51e9cf6063ccc820e0a3a1f5f1d4d1530cde62663d7c883a38738d895" url: "https://pub.dev" source: hosted - version: "2.3.1" + version: "2.4.0" objectbox_flutter_libs: dependency: "direct main" description: name: objectbox_flutter_libs - sha256: e9a3d8e3ce0d47d6fc942921ef0444a238cd4258e8fcefe13b994cf984a8bf61 + sha256: "88e44800d6d5864fb99b483ebabbd9bbff0fa6a7eb448de86a94db501010368d" url: "https://pub.dev" source: hosted - version: "2.3.1" + version: "2.4.0" objectbox_generator: dependency: "direct dev" description: name: objectbox_generator - sha256: aaffef7eb51b4d911bb00a7c52b19b55fe3e5a69de8ec56552cf35550a1e9beb + sha256: "8e9e5be6f56a22dbe54491d64bdb57a510de525109ce3481b7a0e72b6d8e04d9" url: "https://pub.dev" source: hosted - version: "2.3.1" + version: "2.4.0" octo_image: dependency: transitive description: @@ -853,10 +861,10 @@ packages: dependency: "direct main" description: name: package_info_plus - sha256: "7e76fad405b3e4016cd39d08f455a4eb5199723cf594cd1b8916d47140d93017" + sha256: "88bc797f44a94814f2213db1c9bd5badebafdfb8290ca9f78d4b9ee2a3db4d79" url: "https://pub.dev" source: hosted - version: "4.2.0" + version: "5.0.1" package_info_plus_platform_interface: dependency: transitive description: @@ -1266,10 +1274,10 @@ packages: dependency: "direct main" description: name: url_launcher - sha256: b1c9e98774adf8820c96fbc7ae3601231d324a7d5ebd8babe27b6dfac91357ba + sha256: e9aa5ea75c84cf46b3db4eea212523591211c3cf2e13099ee4ec147f54201c86 url: "https://pub.dev" source: hosted - version: "6.2.1" + version: "6.2.2" url_launcher_android: dependency: transitive description: @@ -1327,7 +1335,7 @@ packages: source: hosted version: "3.1.0" uuid: - dependency: "direct main" + dependency: transitive description: name: uuid sha256: df5a4d8f22ee4ccd77f8839ac7cb274ebc11ef9adcce8b92be14b797fe889921 diff --git a/pubspec.yaml b/pubspec.yaml index 5e4691f5..0a27d0a9 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -33,11 +33,11 @@ dependencies: flutter_localizations: sdk: flutter json_annotation: 4.8.1 - http: 1.1.0 + http: 1.1.2 after_layout: 1.2.0 easy_debounce: 2.0.3 flutter_fadein: 2.0.0 - dynamic_color: 1.6.8 + dynamic_color: 1.6.9 better_player: git: url: https://github.com/lamarios/betterplayer.git @@ -45,34 +45,34 @@ dependencies: intl: any settings_ui: 2.0.2 - objectbox: 2.3.1 - objectbox_flutter_libs: 2.3.1 + objectbox: 2.4.0 + objectbox_flutter_libs: 2.4.0 path_provider: 2.1.1 - path: 1.8.3 + path: any flutter_web_auth: 0.5.0 cached_network_image: 3.3.0 share_plus: 7.2.1 - package_info_plus: 4.2.0 + package_info_plus: 5.0.1 receive_sharing_intent: 1.4.5 logging: 1.2.0 flutter_svg: 2.0.9 - flutter_native_splash: 2.3.5 + flutter_native_splash: 2.3.8 flutter_linkify: 6.0.0 - url_launcher: 6.2.1 + url_launcher: 6.2.2 back_button_interceptor: 7.0.0 - flutter_swipe_action_cell: 3.1.2 - device_info_plus: 9.1.0 + flutter_swipe_action_cell: 3.1.3 + device_info_plus: 9.1.1 wakelock: 0.6.2 locale_names: git: url: https://github.com/lamarios/locale_names.git ref: master - uuid: 4.2.1 - dio: 5.3.3 +# uuid: 4.3.1 + dio: 5.4.0 just_audio: 0.9.36 audio_service: 0.18.12 carousel_slider: 4.2.1 - flutter_animate: 4.2.0+1 + flutter_animate: 4.3.0 bloc: 8.1.2 flutter_bloc: 8.1.3 copy_with_extension: 5.0.4 @@ -120,7 +120,7 @@ dev_dependencies: # package. See that file for information about deactivating specific lint # rules and activating additional ones. flutter_lints: ^3.0.1 - freezed: ^2.4.5 + freezed: ^2.4.6 # For information on the generic Dart part of this file, see the # following page: https://dart.dev/tools/pub/pubspec diff --git a/submodules/flutter b/submodules/flutter index b0366e0a..2e9cb0aa 160000 --- a/submodules/flutter +++ b/submodules/flutter @@ -1 +1 @@ -Subproject commit b0366e0a3f089e15fd89c97604ab402fe26b724c +Subproject commit 2e9cb0aa71a386a91f73f7088d115c0d96654829