From 8bfa27c3ab33961b88e609e0f66d1370a6bd6f19 Mon Sep 17 00:00:00 2001 From: Bibash Shrestha Date: Wed, 28 Aug 2024 19:19:24 +0545 Subject: [PATCH 01/12] version update: 2.11.3+496 --- pubspec.yaml | 2 -- 1 file changed, 2 deletions(-) diff --git a/pubspec.yaml b/pubspec.yaml index 848b2c524..f601503b4 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -3,7 +3,6 @@ description: AltMe Flutter App version: 2.12.5+510 - publish_to: "none" # Remove this line if you wish to publish to pub.dev environment: sdk: ">=3.1.0 <4.0.0" @@ -128,7 +127,6 @@ dependency_overrides: pointycastle: ^3.7.4 #polygonid from path requires pointycastle 3.7.3 uuid: ^3.0.7 #web3dart >=2.7.2 depends on uuid ^4.0.0 web3dart: ^2.5.1 #alletconnect_flutter_v2 >=2.2.2-beta01 depends on web3dart ^2.7.3 - dev_dependencies: bloc_test: ^9.1.2 From 032dc7561e8b44da1c78a2ba280ac96aca321168 Mon Sep 17 00:00:00 2001 From: Bibash Shrestha Date: Wed, 4 Sep 2024 14:05:31 +0545 Subject: [PATCH 02/12] feat: Add switch to control notification #2869 --- .../src/view/wallet_security_menu.dart | 32 +++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/lib/dashboard/drawer/wallet_security/src/view/wallet_security_menu.dart b/lib/dashboard/drawer/wallet_security/src/view/wallet_security_menu.dart index 8dee340f1..df8e7c458 100644 --- a/lib/dashboard/drawer/wallet_security/src/view/wallet_security_menu.dart +++ b/lib/dashboard/drawer/wallet_security/src/view/wallet_security_menu.dart @@ -31,6 +31,7 @@ class WalletSecurityView extends StatelessWidget { return BlocBuilder( builder: (context, state) { + final helpCenterOptions = state.model.profileSetting.helpCenterOptions; return BasePage( backgroundColor: Theme.of(context).colorScheme.surface, useSafeArea: true, @@ -95,6 +96,37 @@ class WalletSecurityView extends StatelessWidget { ); }, ), + if (helpCenterOptions.customNotification != null && + helpCenterOptions.customNotification! && + helpCenterOptions.customNotificationRoom != null) ...[ + Padding( + padding: const EdgeInsets.all(Sizes.spaceSmall / 2), + child: DrawerCategoryItem( + title: l10n.notification, + subTitle: l10n.notificationSubtitle, + trailing: SizedBox( + height: 25, + child: BlocBuilder( + builder: (context, state) { + return Switch( + key: const Key('customNotificationRoom'), + onChanged: (value) async { + await context + .read() + .updateProfileSetting( + displayNotification: value, + ); + }, + value: helpCenterOptions.displayNotification, + activeColor: Theme.of(context).colorScheme.primary, + ); + }, + ), + ), + ), + ), + const SizedBox(height: Sizes.spaceSmall), + ], ], ), ); From 2b3fd52164b370ee67f77c9585bb511155217e0f Mon Sep 17 00:00:00 2001 From: Bibash Shrestha Date: Thu, 5 Sep 2024 20:37:11 +0545 Subject: [PATCH 03/12] feat: Fix notification issue and make chat only custom --- lib/chat_room/cubit/chat_room_cubit.dart | 1 - lib/enterprise/cubit/enterprise_cubit.dart | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/chat_room/cubit/chat_room_cubit.dart b/lib/chat_room/cubit/chat_room_cubit.dart index 49c8edb7a..00c2a8d96 100644 --- a/lib/chat_room/cubit/chat_room_cubit.dart +++ b/lib/chat_room/cubit/chat_room_cubit.dart @@ -288,7 +288,6 @@ abstract class ChatRoomCubit extends Cubit { SecureStorageKeys.notificationRoomName, roomName, ); - _roomId = await matrixChat.joinRoom(roomName); } } else { diff --git a/lib/enterprise/cubit/enterprise_cubit.dart b/lib/enterprise/cubit/enterprise_cubit.dart index 0f2c887be..71583ec46 100644 --- a/lib/enterprise/cubit/enterprise_cubit.dart +++ b/lib/enterprise/cubit/enterprise_cubit.dart @@ -526,6 +526,7 @@ class EnterpriseCubit extends Cubit { if (roomName != savedRoomName) { await matrixNotificationCubit.clearRoomIdFromStorage(); + await matrixNotificationCubit.dispose(); } await matrixNotificationCubit.init(); From e063cbd4390e0f0e6ec667a7dd3aceda9adfe8d9 Mon Sep 17 00:00:00 2001 From: Bibash Shrestha Date: Fri, 6 Sep 2024 14:06:25 +0545 Subject: [PATCH 04/12] Update notification room #2875 --- lib/chat_room/cubit/chat_room_cubit.dart | 1 + lib/enterprise/cubit/enterprise_cubit.dart | 1 - 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/chat_room/cubit/chat_room_cubit.dart b/lib/chat_room/cubit/chat_room_cubit.dart index 00c2a8d96..49c8edb7a 100644 --- a/lib/chat_room/cubit/chat_room_cubit.dart +++ b/lib/chat_room/cubit/chat_room_cubit.dart @@ -288,6 +288,7 @@ abstract class ChatRoomCubit extends Cubit { SecureStorageKeys.notificationRoomName, roomName, ); + _roomId = await matrixChat.joinRoom(roomName); } } else { diff --git a/lib/enterprise/cubit/enterprise_cubit.dart b/lib/enterprise/cubit/enterprise_cubit.dart index 71583ec46..0f2c887be 100644 --- a/lib/enterprise/cubit/enterprise_cubit.dart +++ b/lib/enterprise/cubit/enterprise_cubit.dart @@ -526,7 +526,6 @@ class EnterpriseCubit extends Cubit { if (roomName != savedRoomName) { await matrixNotificationCubit.clearRoomIdFromStorage(); - await matrixNotificationCubit.dispose(); } await matrixNotificationCubit.init(); From 91d8828d42f6aeb6318f8e331cf082698672e01b Mon Sep 17 00:00:00 2001 From: Bibash Shrestha Date: Fri, 6 Sep 2024 17:07:27 +0545 Subject: [PATCH 05/12] feat: Move notification menu to differnt place #2869 --- .../help_center/help_center/view/help_center_menu.dart | 9 --------- .../wallet_settings/view/wallet_settings_menu.dart | 6 ++++++ 2 files changed, 6 insertions(+), 9 deletions(-) diff --git a/lib/dashboard/drawer/help_center/help_center/view/help_center_menu.dart b/lib/dashboard/drawer/help_center/help_center/view/help_center_menu.dart index bce92f810..4ddf2d220 100644 --- a/lib/dashboard/drawer/help_center/help_center/view/help_center_menu.dart +++ b/lib/dashboard/drawer/help_center/help_center/view/help_center_menu.dart @@ -1,7 +1,6 @@ import 'package:altme/app/app.dart'; import 'package:altme/dashboard/dashboard.dart'; import 'package:altme/l10n/l10n.dart'; -import 'package:altme/matrix_notification/matrix_notification.dart'; import 'package:flutter/material.dart'; import 'package:flutter_bloc/flutter_bloc.dart'; @@ -86,14 +85,6 @@ class HelpCenterView extends StatelessWidget { }, ), ], - if (helpCenterOptions.displayNotification && isEnterprise) ...[ - DrawerItem( - title: l10n.notificationRoom, - onTap: () { - Navigator.of(context).push(NotificationPage.route()); - }, - ), - ], if (helpCenterOptions.displayEmailSupport) ...[ DrawerItem( title: l10n.sendAnEmail, diff --git a/lib/dashboard/drawer/wallet_settings/view/wallet_settings_menu.dart b/lib/dashboard/drawer/wallet_settings/view/wallet_settings_menu.dart index 4b4000a36..0ea1453ab 100644 --- a/lib/dashboard/drawer/wallet_settings/view/wallet_settings_menu.dart +++ b/lib/dashboard/drawer/wallet_settings/view/wallet_settings_menu.dart @@ -30,6 +30,12 @@ class WalletSettingsMenuView extends StatelessWidget { Widget build(BuildContext context) { final l10n = context.l10n; + final profileModel = context.read().state.model; + + final helpCenterOptions = profileModel.profileSetting.helpCenterOptions; + + final isEnterprise = profileModel.walletType == WalletType.enterprise; + return BasePage( backgroundColor: Theme.of(context).colorScheme.surface, useSafeArea: true, From 3aa4b00e4947b0b3bd8a684566d5c5c506831e57 Mon Sep 17 00:00:00 2001 From: Bibash Shrestha Date: Fri, 6 Sep 2024 19:40:15 +0545 Subject: [PATCH 06/12] refactor: Update notification switch location #2869 --- .../help_center/view/help_center_menu.dart | 9 ++++++ .../src/view/wallet_security_menu.dart | 32 ------------------- .../view/wallet_settings_menu.dart | 6 ---- 3 files changed, 9 insertions(+), 38 deletions(-) diff --git a/lib/dashboard/drawer/help_center/help_center/view/help_center_menu.dart b/lib/dashboard/drawer/help_center/help_center/view/help_center_menu.dart index 4ddf2d220..bce92f810 100644 --- a/lib/dashboard/drawer/help_center/help_center/view/help_center_menu.dart +++ b/lib/dashboard/drawer/help_center/help_center/view/help_center_menu.dart @@ -1,6 +1,7 @@ import 'package:altme/app/app.dart'; import 'package:altme/dashboard/dashboard.dart'; import 'package:altme/l10n/l10n.dart'; +import 'package:altme/matrix_notification/matrix_notification.dart'; import 'package:flutter/material.dart'; import 'package:flutter_bloc/flutter_bloc.dart'; @@ -85,6 +86,14 @@ class HelpCenterView extends StatelessWidget { }, ), ], + if (helpCenterOptions.displayNotification && isEnterprise) ...[ + DrawerItem( + title: l10n.notificationRoom, + onTap: () { + Navigator.of(context).push(NotificationPage.route()); + }, + ), + ], if (helpCenterOptions.displayEmailSupport) ...[ DrawerItem( title: l10n.sendAnEmail, diff --git a/lib/dashboard/drawer/wallet_security/src/view/wallet_security_menu.dart b/lib/dashboard/drawer/wallet_security/src/view/wallet_security_menu.dart index df8e7c458..8dee340f1 100644 --- a/lib/dashboard/drawer/wallet_security/src/view/wallet_security_menu.dart +++ b/lib/dashboard/drawer/wallet_security/src/view/wallet_security_menu.dart @@ -31,7 +31,6 @@ class WalletSecurityView extends StatelessWidget { return BlocBuilder( builder: (context, state) { - final helpCenterOptions = state.model.profileSetting.helpCenterOptions; return BasePage( backgroundColor: Theme.of(context).colorScheme.surface, useSafeArea: true, @@ -96,37 +95,6 @@ class WalletSecurityView extends StatelessWidget { ); }, ), - if (helpCenterOptions.customNotification != null && - helpCenterOptions.customNotification! && - helpCenterOptions.customNotificationRoom != null) ...[ - Padding( - padding: const EdgeInsets.all(Sizes.spaceSmall / 2), - child: DrawerCategoryItem( - title: l10n.notification, - subTitle: l10n.notificationSubtitle, - trailing: SizedBox( - height: 25, - child: BlocBuilder( - builder: (context, state) { - return Switch( - key: const Key('customNotificationRoom'), - onChanged: (value) async { - await context - .read() - .updateProfileSetting( - displayNotification: value, - ); - }, - value: helpCenterOptions.displayNotification, - activeColor: Theme.of(context).colorScheme.primary, - ); - }, - ), - ), - ), - ), - const SizedBox(height: Sizes.spaceSmall), - ], ], ), ); diff --git a/lib/dashboard/drawer/wallet_settings/view/wallet_settings_menu.dart b/lib/dashboard/drawer/wallet_settings/view/wallet_settings_menu.dart index 0ea1453ab..4b4000a36 100644 --- a/lib/dashboard/drawer/wallet_settings/view/wallet_settings_menu.dart +++ b/lib/dashboard/drawer/wallet_settings/view/wallet_settings_menu.dart @@ -30,12 +30,6 @@ class WalletSettingsMenuView extends StatelessWidget { Widget build(BuildContext context) { final l10n = context.l10n; - final profileModel = context.read().state.model; - - final helpCenterOptions = profileModel.profileSetting.helpCenterOptions; - - final isEnterprise = profileModel.walletType == WalletType.enterprise; - return BasePage( backgroundColor: Theme.of(context).colorScheme.surface, useSafeArea: true, From c9f5a894687dbd8b1f82d242d70bfa45f85445f6 Mon Sep 17 00:00:00 2001 From: hawkbee1 Date: Tue, 10 Sep 2024 08:31:58 +0000 Subject: [PATCH 07/12] Issue with name.firstname, cf slack #2880 --- pubspec.lock | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pubspec.lock b/pubspec.lock index c0b2d382e..4b68c14a6 100644 --- a/pubspec.lock +++ b/pubspec.lock @@ -651,10 +651,10 @@ packages: dependency: "direct main" description: name: dio - sha256: "0dfb6b6a1979dac1c1245e17cef824d7b452ea29bd33d3467269f9bef3715fb0" + sha256: "5598aa796bbf4699afd5c67c0f5f6e2ed542afc956884b9cd58c306966efc260" url: "https://pub.dev" source: hosted - version: "5.6.0" + version: "5.7.0" dio_cache_interceptor: dependency: transitive description: From 2501018c12128ad535da5fcbc3c3aff779d3967d Mon Sep 17 00:00:00 2001 From: Bibash Shrestha Date: Mon, 16 Sep 2024 13:51:58 +0100 Subject: [PATCH 08/12] feat: Consider more constrainsts for presentation #2882 --- .../helpers/get_credentials_from_filter_list.dart | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/dashboard/home/tab_bar/credentials/present/pick/credential_manifest/helpers/get_credentials_from_filter_list.dart b/lib/dashboard/home/tab_bar/credentials/present/pick/credential_manifest/helpers/get_credentials_from_filter_list.dart index a4a3d11c8..22dd11338 100644 --- a/lib/dashboard/home/tab_bar/credentials/present/pick/credential_manifest/helpers/get_credentials_from_filter_list.dart +++ b/lib/dashboard/home/tab_bar/credentials/present/pick/credential_manifest/helpers/get_credentials_from_filter_list.dart @@ -30,7 +30,7 @@ List getCredentialsFromFilterList({ if (field.filter == null) { //ascs case - return false; + return true; } else if (field.filter?.pattern != null) { pattern = field.filter!.pattern; } else if (field.filter?.contains?.containsConst != null) { @@ -62,6 +62,8 @@ List getCredentialsFromFilterList({ /// a valid candidate if (searchList.isNotEmpty) { selectedCredential.add(credential); + } else { + break; } } } From 618569b6957f1701322254e2c952fc34f06ba25f Mon Sep 17 00:00:00 2001 From: Bibash Shrestha Date: Mon, 16 Sep 2024 15:57:19 +0100 Subject: [PATCH 09/12] feat: Consider more constrainsts for presentation #2882 --- .../helpers/get_credentials_from_filter_list.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/dashboard/home/tab_bar/credentials/present/pick/credential_manifest/helpers/get_credentials_from_filter_list.dart b/lib/dashboard/home/tab_bar/credentials/present/pick/credential_manifest/helpers/get_credentials_from_filter_list.dart index 22dd11338..95cafaac7 100644 --- a/lib/dashboard/home/tab_bar/credentials/present/pick/credential_manifest/helpers/get_credentials_from_filter_list.dart +++ b/lib/dashboard/home/tab_bar/credentials/present/pick/credential_manifest/helpers/get_credentials_from_filter_list.dart @@ -30,7 +30,7 @@ List getCredentialsFromFilterList({ if (field.filter == null) { //ascs case - return true; + return false; } else if (field.filter?.pattern != null) { pattern = field.filter!.pattern; } else if (field.filter?.contains?.containsConst != null) { From 8fd7324b88953485e9d38712e6e54ecbcdcbd949 Mon Sep 17 00:00:00 2001 From: Bibash Shrestha Date: Tue, 17 Sep 2024 12:19:42 +0100 Subject: [PATCH 10/12] feat: Assign specific format if auto is assigned #2887 --- .../credential_subject_type_extension.dart | 30 ++++++++++++------- .../profile/models/profile_setting.dart | 27 +++++++++++++++++ 2 files changed, 47 insertions(+), 10 deletions(-) diff --git a/lib/app/shared/enum/type/credential_subject_type/credential_subject_type_extension.dart b/lib/app/shared/enum/type/credential_subject_type/credential_subject_type_extension.dart index 2302114cc..6aba11146 100644 --- a/lib/app/shared/enum/type/credential_subject_type/credential_subject_type_extension.dart +++ b/lib/app/shared/enum/type/credential_subject_type/credential_subject_type_extension.dart @@ -754,6 +754,16 @@ extension CredentialSubjectTypeExtension on CredentialSubjectType { final oidc4vcDraftType = profileSetting .selfSovereignIdentityOptions.customOidc4vcProfile.oidc4vciDraft; + final discoverCardsOptions = profileSetting.discoverCardsOptions; + + var format = VCFormatType.ldpVc.urlValue; + + if (vcFormatType == VCFormatType.auto && discoverCardsOptions != null) { + format = discoverCardsOptions.vcFormatTypeForAuto; + } else { + format = vcFormatType.urlValue; + } + switch (this) { case CredentialSubjectType.defiCompliance: image = ImageStrings.dummyDefiComplianceCard; @@ -793,7 +803,7 @@ extension CredentialSubjectTypeExtension on CredentialSubjectType { link = '${Urls.emailPassUrl}' '?draft=${oidc4vcDraftType.numbering}' - '&format=${vcFormatType.urlValue}'; + '&format=$format'; whyGetThisCard = ResponseString.RESPONSE_STRING_emailPassWhyGetThisCard; expirationDateDetails = @@ -805,7 +815,7 @@ extension CredentialSubjectTypeExtension on CredentialSubjectType { link = '${Urls.id360Url}' '?draft=${oidc4vcDraftType.numbering}' - '&format=${vcFormatType.urlValue}' + '&format=$format' '&type=over13'; whyGetThisCard = ResponseString.RESPONSE_STRING_over13WhyGetThisCard; @@ -818,7 +828,7 @@ extension CredentialSubjectTypeExtension on CredentialSubjectType { link = '${Urls.id360Url}' '?draft=${oidc4vcDraftType.numbering}' - '&format=${vcFormatType.urlValue}' + '&format=$format' '&type=over15'; whyGetThisCard = ResponseString.RESPONSE_STRING_over15WhyGetThisCard; @@ -831,7 +841,7 @@ extension CredentialSubjectTypeExtension on CredentialSubjectType { link = '${Urls.id360Url}' '?draft=${oidc4vcDraftType.numbering}' - '&format=${vcFormatType.urlValue}' + '&format=$format' '&type=over18'; whyGetThisCard = ResponseString.RESPONSE_STRING_over18WhyGetThisCard; @@ -844,7 +854,7 @@ extension CredentialSubjectTypeExtension on CredentialSubjectType { link = '${Urls.id360Url}' '?draft=${oidc4vcDraftType.numbering}' - '&format=${vcFormatType.urlValue}' + '&format=$format' '&type=over21'; whyGetThisCard = ResponseString.RESPONSE_STRING_over18WhyGetThisCard; @@ -857,7 +867,7 @@ extension CredentialSubjectTypeExtension on CredentialSubjectType { link = '${Urls.id360Url}' '?draft=${oidc4vcDraftType.numbering}' - '&format=${vcFormatType.urlValue}' + '&format=$format' '&type=over50'; whyGetThisCard = ResponseString.RESPONSE_STRING_over18WhyGetThisCard; @@ -870,7 +880,7 @@ extension CredentialSubjectTypeExtension on CredentialSubjectType { link = '${Urls.id360Url}' '?draft=${oidc4vcDraftType.numbering}' - '&format=${vcFormatType.urlValue}' + '&format=$format' '&type=over65'; whyGetThisCard = ResponseString.RESPONSE_STRING_over18WhyGetThisCard; @@ -916,7 +926,7 @@ extension CredentialSubjectTypeExtension on CredentialSubjectType { link = '${Urls.id360Url}' '?draft=${oidc4vcDraftType.numbering}' - '&format=${vcFormatType.urlValue}' + '&format=$format' '&type=$type'; whyGetThisCard = @@ -963,7 +973,7 @@ extension CredentialSubjectTypeExtension on CredentialSubjectType { link = '${Urls.phonePassUrl}' '?draft=${oidc4vcDraftType.numbering}' - '&format=${vcFormatType.urlValue}'; + '&format=$format'; whyGetThisCard = ResponseString.RESPONSE_STRING_phoneProofWhyGetThisCard; @@ -976,7 +986,7 @@ extension CredentialSubjectTypeExtension on CredentialSubjectType { link = '${Urls.id360Url}' '?draft=${oidc4vcDraftType.numbering}' - '&format=${vcFormatType.urlValue}' + '&format=$format' '&type=liveness'; whyGetThisCard = diff --git a/lib/dashboard/profile/models/profile_setting.dart b/lib/dashboard/profile/models/profile_setting.dart index 28c0d8aef..5cf6b002c 100644 --- a/lib/dashboard/profile/models/profile_setting.dart +++ b/lib/dashboard/profile/models/profile_setting.dart @@ -315,6 +315,33 @@ class DiscoverCardsOptions extends Equatable { ); } + String get vcFormatTypeForAuto { + if (displayDefi || + displayEmailPass || + displayGender || + displayHumanity || + displayOver13 || + displayOver15 || + displayOver18 || + displayOver21 || + displayOver50 || + displayOver65 || + displayPhonePass || + displayVerifiableId) { + return VCFormatType.ldpVc.urlValue; + } else if (displayPhonePassJwt || + displayOver18Jwt || + displayEmailPassJwt || + displayVerifiableIdJwt || + displayHumanityJwt) { + return VCFormatType.jwtVcJson.urlValue; + } else if (displayVerifiableIdSdJwt) { + return VCFormatType.vcSdJWT.urlValue; + } + + return VCFormatType.ldpVc.urlValue; + } + @override List get props => [ displayDefi, From 425f1f1ddff772c2e170bfbe1268babfb1367543 Mon Sep 17 00:00:00 2001 From: Bibash Shrestha Date: Tue, 17 Sep 2024 15:47:13 +0100 Subject: [PATCH 11/12] update packages for tezart --- packages/key_generator/pubspec.yaml | 4 ++-- packages/oidc4vc/pubspec.yaml | 4 ++-- pubspec.yaml | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/packages/key_generator/pubspec.yaml b/packages/key_generator/pubspec.yaml index af9c836c8..6344dc4d5 100644 --- a/packages/key_generator/pubspec.yaml +++ b/packages/key_generator/pubspec.yaml @@ -13,12 +13,12 @@ dependencies: dart_web3: ^0.0.3 ed25519_hd_key: ^2.2.0 hex: ^0.2.0 - pinenacl: ^0.3.3 + pinenacl: ^0.6.0 secp256k1: ^0.3.0 tezart: git: url: https://github.com/autonomy-system/tezart.git - ref: 7534512ff7c874251e5b1e1a426f5822a3837b51 + ref: 85070e8ddafe5140c0bfd2cb9d569ecf986e7234 dev_dependencies: flutter_test: diff --git a/packages/oidc4vc/pubspec.yaml b/packages/oidc4vc/pubspec.yaml index b1115d1dc..ed0ffad4a 100644 --- a/packages/oidc4vc/pubspec.yaml +++ b/packages/oidc4vc/pubspec.yaml @@ -29,18 +29,18 @@ dependencies: jose_plus: ^0.4.5 json_annotation: ^4.8.1 json_path: ^0.7.2 #latest version creates test issue + pinenacl: ^0.6.0 secp256k1: ^0.3.0 secure_storage: path: ../secure_storage tezart: git: url: https://github.com/autonomy-system/tezart.git - ref: 7534512ff7c874251e5b1e1a426f5822a3837b51 + ref: 85070e8ddafe5140c0bfd2cb9d569ecf986e7234 uuid: ^3.0.7 dependency_overrides: ffi: 2.1.0 #didkit from path which depends on ffi ^1.0.0 - pinenacl: ^0.5.1 # tezart from git depends on pinenacl ^0.3.3 dev_dependencies: build_runner: ^2.4.4 diff --git a/pubspec.yaml b/pubspec.yaml index f601503b4..7cf762ab0 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -107,7 +107,7 @@ dependencies: tezart: git: url: https://github.com/autonomy-system/tezart.git - ref: 7534512ff7c874251e5b1e1a426f5822a3837b51 + ref: 85070e8ddafe5140c0bfd2cb9d569ecf986e7234 timezone: ^0.9.2 url_launcher: ^6.1.11 visibility_detector: ^0.4.0+2 From e3b0eceae14b4d48d51c5665ac004d7ef6550bd8 Mon Sep 17 00:00:00 2001 From: Bibash Shrestha Date: Wed, 18 Sep 2024 09:53:52 +0100 Subject: [PATCH 12/12] version update: 2.12.6+511 --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 7cf762ab0..0166979f5 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: altme description: AltMe Flutter App -version: 2.12.5+510 +version: 2.12.6+511 publish_to: "none" # Remove this line if you wish to publish to pub.dev environment: