修复tag原文显示问题

更新依赖
This commit is contained in:
2024-05-24 14:42:18 +08:00
parent ebccce7f3d
commit c9d5d965ad
15 changed files with 128 additions and 115 deletions

View File

@@ -47,14 +47,14 @@ EXTERNAL SOURCES:
SPEC CHECKSUMS:
cryptography_flutter: 381bdacc984abcfbe3ca45ef7c76566ff061614c
device_info_plus: 7545d84d8d1b896cb16a4ff98c19f07ec4b298ea
device_info_plus: 97af1d7e84681a90d0693e63169a5d50e0839a0d
Flutter: e0871f40cf51350855a761d2e70bf5af5b9b5de7
irondash_engine_context: 3458bf979b90d616ffb8ae03a150bafe2e860cc9
package_info_plus: 115f4ad11e0698c8c1c5d8a689390df880f47e85
path_provider_foundation: 29f094ae23ebbca9d3d0cec13889cd9060c0e943
shared_preferences_foundation: 5b919d13b803cadd15ed2dc053125c68730e5126
package_info_plus: 58f0028419748fad15bf008b270aaa8e54380b1c
path_provider_foundation: 2b6b4c569c0fb62ec74538f866245ac84301af46
shared_preferences_foundation: fcdcbc04712aee1108ac7fda236f363274528f78
super_native_extensions: 4916b3c627a9c7fffdc48a23a9eca0b1ac228fa7
PODFILE CHECKSUM: 819463e6a0290f5a72f145ba7cde16e8b6ef0796
COCOAPODS: 1.15.0
COCOAPODS: 1.15.2

View File

@@ -219,7 +219,7 @@
97C146E61CF9000F007C117D /* Project object */ = {
isa = PBXProject;
attributes = {
LastUpgradeCheck = 1430;
LastUpgradeCheck = 1510;
ORGANIZATIONNAME = "";
TargetAttributes = {
331C8080294A63A400263BE5 = {

View File

@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<Scheme
LastUpgradeVersion = "1430"
LastUpgradeVersion = "1510"
version = "1.3">
<BuildAction
parallelizeBuildables = "YES"

View File

@@ -12,7 +12,7 @@ ApiResult<T> _$ApiResultFromJson<T>(
) =>
ApiResult<T>(
ok: json['ok'] as bool,
status: json['status'] as int,
status: (json['status'] as num).toInt(),
data: _$nullableGenericFromJson(json['data'], fromJsonT),
error: json['error'] as String?,
);

View File

@@ -12,12 +12,12 @@ Config _$ConfigFromJson(Map<String, dynamic> json) => Config(
ua: json['ua'] as String?,
ex: json['ex'] as bool,
base: json['base'] as String,
maxTaskCount: json['max_task_count'] as int,
maxTaskCount: (json['max_task_count'] as num).toInt(),
mpv: json['mpv'] as bool,
maxRetryCount: json['max_retry_count'] as int,
maxDownloadImgCount: json['max_download_img_count'] as int,
maxRetryCount: (json['max_retry_count'] as num).toInt(),
maxDownloadImgCount: (json['max_download_img_count'] as num).toInt(),
downloadOriginalImg: json['download_original_img'] as bool,
port: json['port'] as int,
port: (json['port'] as num).toInt(),
exportZipJpnTitle: json['export_zip_jpn_title'] as bool,
hostname: json['hostname'] as String,
meiliHost: json['meili_host'] as String?,
@@ -36,13 +36,13 @@ Config _$ConfigFromJson(Map<String, dynamic> json) => Config(
.map((e) => e as String)
.toList(),
flutterFrontend: json['flutter_frontend'] as String?,
fetchTimeout: json['fetch_timeout'] as int,
downloadTimeout: json['download_timeout'] as int,
fetchTimeout: (json['fetch_timeout'] as num).toInt(),
downloadTimeout: (json['download_timeout'] as num).toInt(),
ffprobePath: json['ffprobe_path'] as String,
redirectToFlutter: json['redirect_to_flutter'] as bool,
downloadTimeoutCheckInterval:
json['download_timeout_check_interval'] as int,
ehMetadataCacheTime: json['eh_metadata_cache_time'] as int,
(json['download_timeout_check_interval'] as num).toInt(),
ehMetadataCacheTime: (json['eh_metadata_cache_time'] as num).toInt(),
randomFileSecret: json['random_file_secret'] as String?,
);
@@ -102,12 +102,12 @@ ConfigOptional _$ConfigOptionalFromJson(Map<String, dynamic> json) =>
ua: json['ua'] as String?,
ex: json['ex'] as bool?,
base: json['base'] as String?,
maxTaskCount: json['max_task_count'] as int?,
maxTaskCount: (json['max_task_count'] as num?)?.toInt(),
mpv: json['mpv'] as bool?,
maxRetryCount: json['max_retry_count'] as int?,
maxDownloadImgCount: json['max_download_img_count'] as int?,
maxRetryCount: (json['max_retry_count'] as num?)?.toInt(),
maxDownloadImgCount: (json['max_download_img_count'] as num?)?.toInt(),
downloadOriginalImg: json['download_original_img'] as bool?,
port: json['port'] as int?,
port: (json['port'] as num?)?.toInt(),
exportZipJpnTitle: json['export_zip_jpn_title'] as bool?,
hostname: json['hostname'] as String?,
meiliHost: json['meili_host'] as String?,
@@ -126,13 +126,13 @@ ConfigOptional _$ConfigOptionalFromJson(Map<String, dynamic> json) =>
?.map((e) => e as String)
.toList(),
flutterFrontend: json['flutter_frontend'] as String?,
fetchTimeout: json['fetch_timeout'] as int?,
downloadTimeout: json['download_timeout'] as int?,
fetchTimeout: (json['fetch_timeout'] as num?)?.toInt(),
downloadTimeout: (json['download_timeout'] as num?)?.toInt(),
ffprobePath: json['ffprobe_path'] as String?,
redirectToFlutter: json['redirect_to_flutter'] as bool?,
downloadTimeoutCheckInterval:
json['download_timeout_check_interval'] as int?,
ehMetadataCacheTime: json['eh_metadata_cache_time'] as int?,
(json['download_timeout_check_interval'] as num?)?.toInt(),
ehMetadataCacheTime: (json['eh_metadata_cache_time'] as num?)?.toInt(),
randomFileSecret: json['random_file_secret'] as String?,
);

View File

@@ -29,7 +29,7 @@ Map<String, dynamic> _$GalleryMetadataTorrentInfoToJson(
GalleryMetadataSingle _$GalleryMetadataSingleFromJson(
Map<String, dynamic> json) =>
GalleryMetadataSingle(
gid: json['gid'] as int,
gid: (json['gid'] as num).toInt(),
token: json['token'] as String,
archiverKey: json['archiver_key'] as String,
title: json['title'] as String,
@@ -39,7 +39,7 @@ GalleryMetadataSingle _$GalleryMetadataSingleFromJson(
uploader: json['uploader'] as String,
posted: json['posted'] as String,
filecount: json['filecount'] as String,
filesize: json['filesize'] as int,
filesize: (json['filesize'] as num).toInt(),
expunged: json['expunged'] as bool,
rating: json['rating'] as String,
torrentcount: json['torrentcount'] as String,

View File

@@ -7,9 +7,9 @@ part of 'file.dart';
// **************************************************************************
EhFileBasic _$EhFileBasicFromJson(Map<String, dynamic> json) => EhFileBasic(
id: json['id'] as int,
width: json['width'] as int,
height: json['height'] as int,
id: (json['id'] as num).toInt(),
width: (json['width'] as num).toInt(),
height: (json['height'] as num).toInt(),
isOriginal: json['is_original'] as bool,
);
@@ -22,9 +22,9 @@ Map<String, dynamic> _$EhFileBasicToJson(EhFileBasic instance) =>
};
EhFileExtend _$EhFileExtendFromJson(Map<String, dynamic> json) => EhFileExtend(
id: json['id'] as int,
width: json['width'] as int,
height: json['height'] as int,
id: (json['id'] as num).toInt(),
width: (json['width'] as num).toInt(),
height: (json['height'] as num).toInt(),
isOriginal: json['is_original'] as bool,
token: json['token'] as String,
);

View File

@@ -7,20 +7,20 @@ part of 'gallery.dart';
// **************************************************************************
GMeta _$GMetaFromJson(Map<String, dynamic> json) => GMeta(
gid: json['gid'] as int,
gid: (json['gid'] as num).toInt(),
token: json['token'] as String,
title: json['title'] as String,
titleJpn: json['title_jpn'] as String,
category: json['category'] as String,
uploader: json['uploader'] as String,
posted: GMeta._fromJson(json['posted'] as int),
filecount: json['filecount'] as int,
filesize: json['filesize'] as int,
posted: GMeta._fromJson((json['posted'] as num).toInt()),
filecount: (json['filecount'] as num).toInt(),
filesize: (json['filesize'] as num).toInt(),
expunged: json['expunged'] as bool,
rating: (json['rating'] as num).toDouble(),
parentGid: json['parent_gid'] as int?,
parentGid: (json['parent_gid'] as num?)?.toInt(),
parentToken: json['parent_token'] as String?,
firstGid: json['first_gid'] as int?,
firstGid: (json['first_gid'] as num?)?.toInt(),
firstToken: json['first_token'] as String?,
);
@@ -44,20 +44,20 @@ Map<String, dynamic> _$GMetaToJson(GMeta instance) => <String, dynamic>{
GMetaOptional _$GMetaOptionalFromJson(Map<String, dynamic> json) =>
GMetaOptional(
gid: json['gid'] as int?,
gid: (json['gid'] as num?)?.toInt(),
token: json['token'] as String?,
title: json['title'] as String?,
titleJpn: json['title_jpn'] as String?,
category: json['category'] as String?,
uploader: json['uploader'] as String?,
posted: GMetaOptional._fromJson(json['posted'] as int?),
filecount: json['filecount'] as int?,
filesize: json['filesize'] as int?,
posted: GMetaOptional._fromJson((json['posted'] as num?)?.toInt()),
filecount: (json['filecount'] as num?)?.toInt(),
filesize: (json['filesize'] as num?)?.toInt(),
expunged: json['expunged'] as bool?,
rating: (json['rating'] as num?)?.toDouble(),
parentGid: json['parent_gid'] as int?,
parentGid: (json['parent_gid'] as num?)?.toInt(),
parentToken: json['parent_token'] as String?,
firstGid: json['first_gid'] as int?,
firstGid: (json['first_gid'] as num?)?.toInt(),
firstToken: json['first_token'] as String?,
);
@@ -81,7 +81,7 @@ Map<String, dynamic> _$GMetaOptionalToJson(GMetaOptional instance) =>
};
Tag _$TagFromJson(Map<String, dynamic> json) => Tag(
id: json['id'] as int,
id: (json['id'] as num).toInt(),
tag: json['tag'] as String,
translated: json['translated'] as String?,
intro: json['intro'] as String?,
@@ -96,12 +96,12 @@ Map<String, dynamic> _$TagToJson(Tag instance) => <String, dynamic>{
ExtendedPMeta _$ExtendedPMetaFromJson(Map<String, dynamic> json) =>
ExtendedPMeta(
gid: json['gid'] as int,
index: json['index'] as int,
gid: (json['gid'] as num).toInt(),
index: (json['index'] as num).toInt(),
token: json['token'] as String,
name: json['name'] as String,
width: json['width'] as int,
height: json['height'] as int,
width: (json['width'] as num).toInt(),
height: (json['height'] as num).toInt(),
isNsfw: json['is_nsfw'] as bool,
isAd: json['is_ad'] as bool,
);

View File

@@ -7,11 +7,11 @@ part of 'task.dart';
// **************************************************************************
Task _$TaskFromJson(Map<String, dynamic> json) => Task(
id: json['id'] as int,
id: (json['id'] as num).toInt(),
type: $enumDecode(_$TaskTypeEnumMap, json['type']),
gid: json['gid'] as int,
gid: (json['gid'] as num).toInt(),
token: json['token'] as String,
pid: json['pid'] as int,
pid: (json['pid'] as num).toInt(),
details: json['details'] as String?,
);
@@ -34,15 +34,16 @@ const _$TaskTypeEnumMap = {
TaskDownloadSingleProgress _$TaskDownloadSingleProgressFromJson(
Map<String, dynamic> json) =>
TaskDownloadSingleProgress(
index: json['index'] as int,
index: (json['index'] as num).toInt(),
token: json['token'] as String,
name: json['name'] as String,
width: json['width'] as int,
height: json['height'] as int,
width: (json['width'] as num).toInt(),
height: (json['height'] as num).toInt(),
isOriginal: json['is_original'] as bool,
total: json['total'] as int,
started: TaskDownloadSingleProgress._fromJson(json['started'] as int),
downloaded: json['downloaded'] as int,
total: (json['total'] as num).toInt(),
started: TaskDownloadSingleProgress._fromJson(
(json['started'] as num).toInt()),
downloaded: (json['downloaded'] as num).toInt(),
);
Map<String, dynamic> _$TaskDownloadSingleProgressToJson(
@@ -61,9 +62,9 @@ Map<String, dynamic> _$TaskDownloadSingleProgressToJson(
TaskDownloadProgess _$TaskDownloadProgessFromJson(Map<String, dynamic> json) =>
TaskDownloadProgess(
downloadedPage: json['downloaded_page'] as int,
failedPage: json['failed_page'] as int,
totalPage: json['total_page'] as int,
downloadedPage: (json['downloaded_page'] as num).toInt(),
failedPage: (json['failed_page'] as num).toInt(),
totalPage: (json['total_page'] as num).toInt(),
details: (json['details'] as List<dynamic>)
.map((e) =>
TaskDownloadSingleProgress.fromJson(e as Map<String, dynamic>))
@@ -82,8 +83,8 @@ Map<String, dynamic> _$TaskDownloadProgessToJson(
TaskExportZipProgress _$TaskExportZipProgressFromJson(
Map<String, dynamic> json) =>
TaskExportZipProgress(
addedPage: json['added_page'] as int,
totalPage: json['total_page'] as int,
addedPage: (json['added_page'] as num).toInt(),
totalPage: (json['total_page'] as num).toInt(),
);
Map<String, dynamic> _$TaskExportZipProgressToJson(
@@ -96,8 +97,8 @@ Map<String, dynamic> _$TaskExportZipProgressToJson(
TaskUpdateMeiliSearchDataProgress _$TaskUpdateMeiliSearchDataProgressFromJson(
Map<String, dynamic> json) =>
TaskUpdateMeiliSearchDataProgress(
totalGallery: json['total_gallery'] as int,
updatedGallery: json['updated_gallery'] as int,
totalGallery: (json['total_gallery'] as num).toInt(),
updatedGallery: (json['updated_gallery'] as num).toInt(),
);
Map<String, dynamic> _$TaskUpdateMeiliSearchDataProgressToJson(
@@ -110,8 +111,8 @@ Map<String, dynamic> _$TaskUpdateMeiliSearchDataProgressToJson(
TaskFixGalleryPageProgress _$TaskFixGalleryPageProgressFromJson(
Map<String, dynamic> json) =>
TaskFixGalleryPageProgress(
totalGallery: json['total_gallery'] as int,
checkedGallery: json['checked_gallery'] as int,
totalGallery: (json['total_gallery'] as num).toInt(),
checkedGallery: (json['checked_gallery'] as num).toInt(),
);
Map<String, dynamic> _$TaskFixGalleryPageProgressToJson(
@@ -125,7 +126,9 @@ TaskList _$TaskListFromJson(Map<String, dynamic> json) => TaskList(
tasks: (json['tasks'] as List<dynamic>)
.map((e) => Task.fromJson(e as Map<String, dynamic>))
.toList(),
running: (json['running'] as List<dynamic>).map((e) => e as int).toList(),
running: (json['running'] as List<dynamic>)
.map((e) => (e as num).toInt())
.toList(),
);
Map<String, dynamic> _$TaskListToJson(TaskList instance) => <String, dynamic>{
@@ -147,10 +150,10 @@ Map<String, dynamic> _$TaskErrorToJson(TaskError instance) => <String, dynamic>{
DownloadConfig _$DownloadConfigFromJson(Map<String, dynamic> json) =>
DownloadConfig(
maxDownloadImgCount: json['max_download_img_count'] as int?,
maxDownloadImgCount: (json['max_download_img_count'] as num?)?.toInt(),
mpv: json['mpv'] as bool?,
downloadOriginalImg: json['download_original_img'] as bool?,
maxRetryCount: json['max_retry_count'] as int?,
maxRetryCount: (json['max_retry_count'] as num?)?.toInt(),
removePreviousGallery: json['remove_previous_gallery'] as bool?,
);

View File

@@ -7,8 +7,8 @@ part of 'token.dart';
// **************************************************************************
Token _$TokenFromJson(Map<String, dynamic> json) => Token(
id: json['id'] as int,
uid: json['uid'] as int,
id: (json['id'] as num).toInt(),
uid: (json['uid'] as num).toInt(),
token: json['token'] as String,
expired: Token._fromJson(json['expired'] as String),
httpOnly: json['http_only'] as bool,
@@ -39,7 +39,8 @@ TokenWithUserInfo _$TokenWithUserInfoFromJson(Map<String, dynamic> json) =>
token: Token.fromJson(json['token'] as Map<String, dynamic>),
name: json['name'] as String,
isAdmin: json['is_admin'] as bool,
permissions: UserPermissions.fromJson(json['permissions'] as int),
permissions:
UserPermissions.fromJson((json['permissions'] as num).toInt()),
);
Map<String, dynamic> _$TokenWithUserInfoToJson(TokenWithUserInfo instance) =>

View File

@@ -7,10 +7,11 @@ part of 'user.dart';
// **************************************************************************
BUser _$BUserFromJson(Map<String, dynamic> json) => BUser(
id: json['id'] as int,
id: (json['id'] as num).toInt(),
username: json['username'] as String,
isAdmin: json['is_admin'] as bool,
permissions: UserPermissions.fromJson(json['permissions'] as int),
permissions:
UserPermissions.fromJson((json['permissions'] as num).toInt()),
);
Map<String, dynamic> _$BUserToJson(BUser instance) => <String, dynamic>{

View File

@@ -18,6 +18,6 @@ class TagWidget extends StatelessWidget {
},
extra: GalleriesPageExtra(translatedTag: tag.translated));
},
child: Text(name ?? tag.tag));
child: Text(name ?? (tag.tag.contains(':') ? tag.tag.split(':')[1] : tag.tag)));
}
}

View File

@@ -57,10 +57,10 @@ EXTERNAL SOURCES:
SPEC CHECKSUMS:
cryptography_flutter: c9fa581b52e6fe19475432b6f44489c387f61e19
device_info_plus: 5401765fde0b8d062a2f8eb65510fb17e77cf07f
device_info_plus: ce1b7762849d3ec103d0e0517299f2db7ad60720
FlutterMacOS: 8f6f14fa908a6fb3fba0cd85dbd81ec4b251fb24
irondash_engine_context: da62996ee25616d2f01bbeb85dc115d813359478
package_info_plus: 02d7a575e80f194102bef286361c6c326e4c29ce
package_info_plus: fa739dd842b393193c5ca93c26798dff6e3d0e0c
path_provider_foundation: 2b6b4c569c0fb62ec74538f866245ac84301af46
screen_retriever: 59634572a57080243dd1bf715e55b6c54f241a38
shared_preferences_foundation: fcdcbc04712aee1108ac7fda236f363274528f78

View File

@@ -214,10 +214,10 @@ packages:
dependency: transitive
description:
name: device_info_plus
sha256: "77f757b789ff68e4eaf9c56d1752309bd9f7ad557cb105b938a7f8eb89e59110"
sha256: eead12d1a1ed83d8283ab4c2f3fca23ac4082f29f25f29dff0f758f57d06ec91
url: "https://pub.dev"
source: hosted
version: "9.1.2"
version: "10.1.0"
device_info_plus_platform_interface:
dependency: transitive
description:
@@ -315,10 +315,10 @@ packages:
dependency: "direct dev"
description:
name: flutter_lints
sha256: "9e8c3858111da373efc5aa341de011d9bd23e2c5c5e0c62bccf32438e192d7b1"
sha256: "3f41d009ba7172d5ff9be5f6e6e6abb4300e263aab8866d2a0842ed2a70f8f0c"
url: "https://pub.dev"
source: hosted
version: "3.0.2"
version: "4.0.0"
flutter_localizations:
dependency: "direct main"
description: flutter
@@ -370,10 +370,10 @@ packages:
dependency: "direct main"
description:
name: go_router
sha256: b465e99ce64ba75e61c8c0ce3d87b66d8ac07f0b35d0a7e0263fcfc10f99e836
sha256: "6ad5662b014c06c20fa46ab78715c96b2222a7fe4f87bf77e0289592c2539e86"
url: "https://pub.dev"
source: hosted
version: "13.2.5"
version: "14.1.3"
graphs:
dependency: transitive
description:
@@ -386,10 +386,10 @@ packages:
dependency: transitive
description:
name: http
sha256: a2bbf9d017fcced29139daa8ed2bba4ece450ab222871df93ca9eec6f80c34ba
sha256: "761a297c042deedc1ffbb156d6e2af13886bb305c2a343a4d972504cd67dd938"
url: "https://pub.dev"
source: hosted
version: "1.2.0"
version: "1.2.1"
http_multi_server:
dependency: transitive
description:
@@ -450,10 +450,10 @@ packages:
dependency: transitive
description:
name: irondash_message_channel
sha256: dd581214215dca054bd9873209d690ec3609288c28774cb509dbd86b21180cf8
sha256: b4101669776509c76133b8917ab8cfc704d3ad92a8c450b92934dd8884a2f060
url: "https://pub.dev"
source: hosted
version: "0.6.0"
version: "0.7.0"
js:
dependency: transitive
description:
@@ -514,10 +514,10 @@ packages:
dependency: transitive
description:
name: lints
sha256: cbf8d4b858bb0134ef3ef87841abdf8d63bfc255c266b7bf6b39daa1085c4290
sha256: "976c774dd944a42e83e2467f4cc670daef7eed6295b10b36ae8c85bcbf828235"
url: "https://pub.dev"
source: hosted
version: "3.0.0"
version: "4.0.0"
logging:
dependency: "direct main"
description:
@@ -578,18 +578,18 @@ packages:
dependency: "direct main"
description:
name: package_info_plus
sha256: "88bc797f44a94814f2213db1c9bd5badebafdfb8290ca9f78d4b9ee2a3db4d79"
sha256: b93d8b4d624b4ea19b0a5a208b2d6eff06004bc3ce74c06040b120eeadd00ce0
url: "https://pub.dev"
source: hosted
version: "5.0.1"
version: "8.0.0"
package_info_plus_platform_interface:
dependency: transitive
description:
name: package_info_plus_platform_interface
sha256: "9bc8ba46813a4cc42c66ab781470711781940780fd8beddd0c3da62506d3a6c6"
sha256: f49918f3433a3146047372f9d4f1f847511f2acd5cd030e1f44fe5a50036b70e
url: "https://pub.dev"
source: hosted
version: "2.0.1"
version: "3.0.0"
palette_generator:
dependency: "direct main"
description:
@@ -666,10 +666,10 @@ packages:
dependency: "direct main"
description:
name: photo_view
sha256: "8036802a00bae2a78fc197af8a158e3e2f7b500561ed23b4c458107685e645bb"
sha256: "1fc3d970a91295fbd1364296575f854c9863f225505c28c46e0a03e48960c75e"
url: "https://pub.dev"
source: hosted
version: "0.14.0"
version: "0.15.0"
pixel_snap:
dependency: transitive
description:
@@ -794,10 +794,10 @@ packages:
dependency: transitive
description:
name: shared_preferences_web
sha256: "7b15ffb9387ea3e237bb7a66b8a23d2147663d391cafc5c8f37b2e7b4bde5d21"
sha256: "9aee1089b36bd2aafe06582b7d7817fd317ef05fc30e6ba14bff247d0933042a"
url: "https://pub.dev"
source: hosted
version: "2.2.2"
version: "2.3.0"
shared_preferences_windows:
dependency: transitive
description:
@@ -903,26 +903,26 @@ packages:
dependency: "direct main"
description:
name: super_clipboard
sha256: "15d25eb88df8e904e0c2ef77378c6010cc57bbfc0b6f91f2416d08fad5fcca92"
sha256: f81058a9b3cadaaf60f37c2a37dd2647c6e5eda4533e335f1512605e3b9fb860
url: "https://pub.dev"
source: hosted
version: "0.8.5"
version: "0.8.15"
super_context_menu:
dependency: "direct main"
description:
name: super_context_menu
sha256: a8e8d813ed109b6c76ea5ed37ed7d4ac371e2989825edb1b214a2296f0951df6
sha256: "8a5fef2ca0dcb207fef7168c4c00079e649bfc24223a8f72e3cfcf6b7083e89e"
url: "https://pub.dev"
source: hosted
version: "0.8.5"
version: "0.8.15"
super_native_extensions:
dependency: transitive
description:
name: super_native_extensions
sha256: f96db6b137a0b135e43034289bb55ca6447b65225076036e81f97ebb6381ffeb
sha256: bb6499c83484c1dbe293e68907a9b6d51e30b699502c5e11940e834c310df261
url: "https://pub.dev"
source: hosted
version: "0.8.5"
version: "0.8.15"
term_glyph:
dependency: transitive
description:
@@ -1023,18 +1023,26 @@ packages:
dependency: transitive
description:
name: web
sha256: "4188706108906f002b3a293509234588823c8c979dc83304e229ff400c996b05"
sha256: "97da13628db363c635202ad97068d47c5b8aa555808e7a9411963c533b449b27"
url: "https://pub.dev"
source: hosted
version: "0.4.2"
version: "0.5.1"
web_socket:
dependency: transitive
description:
name: web_socket
sha256: "217f49b5213796cb508d6a942a5dc604ce1cb6a0a6b3d8cb3f0c314f0ecea712"
url: "https://pub.dev"
source: hosted
version: "0.1.4"
web_socket_channel:
dependency: "direct main"
description:
name: web_socket_channel
sha256: "939ab60734a4f8fa95feacb55804fa278de28bdeef38e616dc08e44a84adea23"
sha256: a2d56211ee4d35d9b344d9d4ce60f362e4f5d1aafb988302906bd732bc731276
url: "https://pub.dev"
source: hosted
version: "2.4.3"
version: "3.0.0"
win32:
dependency: transitive
description:

View File

@@ -23,25 +23,25 @@ dependencies:
sdk: flutter
flutter_web_plugins:
sdk: flutter
go_router: ^13.1.0
go_router: ^14.1.3
image: ^4.0.17
infinite_scroll_pagination: ^4.0.0
intl: any
json_annotation: ^4.8.1
keymap: ^0.0.92
logging: ^1.2.0
package_info_plus: ^5.0.1
package_info_plus: ^8.0.0
palette_generator: ^0.3.3+3
path: ^1.8.3
path_provider: ^2.1.0
photo_view: ^0.14.0
photo_view: ^0.15.0
retrofit: ^4.0.1
shared_preferences: ^2.2.0
super_clipboard: ^0.8.4
super_context_menu: ^0.8.4
super_clipboard: ^0.8.15
super_context_menu: ^0.8.15
ua_parser_js: ^1.0.1
user_agent_analyzer: ^5.0.0
web_socket_channel: ^2.4.0
web_socket_channel: ^3.0.0
window_manager: ^0.3.6
dependency_overrides:
@@ -54,7 +54,7 @@ dependency_overrides:
dev_dependencies:
flutter_test:
sdk: flutter
flutter_lints: ^3.0.1
flutter_lints: ^4.0.0
build_runner: ^2.4.6
retrofit_generator: ^8.1.0
json_serializable: ^6.7.1