Skip to content

Commit

Permalink
Merge branch 'main' into main_android
Browse files Browse the repository at this point in the history
  • Loading branch information
hawkbee1 committed Oct 12, 2023
2 parents 8e20660 + 2f3380c commit 32f9bb2
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
3 changes: 2 additions & 1 deletion lib/app/shared/helper_functions/helper_functions.dart
Original file line number Diff line number Diff line change
Expand Up @@ -509,7 +509,8 @@ Future<OIDC4VCType?> getOIDC4VCTypeForIssuance({
if (keys.contains('issuer')) {
/// issuance case 1
issuer = uri.queryParameters['issuer'].toString();
} else if (keys.contains('credential_offer') ||
}
if (keys.contains('credential_offer') ||
keys.contains('credential_offer_uri')) {
/// issuance case 2
final dynamic credentialOfferJson = await getCredentialOfferJson(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ class QRCodeScanCubit extends Cubit<QRCodeScanState> {
final OIDC4VC oidc4vc;

final log = getLogger('QRCodeScanCubit');
late dynamic encodedData;

@override
Future<void> close() async {
Expand Down Expand Up @@ -213,8 +214,6 @@ class QRCodeScanCubit extends Cubit<QRCodeScanState> {
}
}

late dynamic encodedData;

Future<void> accept({
required Issuer issuer,
required QRCodeScanCubit qrCodeScanCubit,
Expand Down
6 changes: 6 additions & 0 deletions lib/dashboard/src/widgets/what_is_new_dialog.dart
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,12 @@ class WhatIsNewDialog extends StatelessWidget {
NewContent(
version: versionNumber,
features: const [
'Bug correction',
],
),
const NewContent(
version: '1.21.8',
features: [
'Developper mode',
'New splash screen',
'extended OIDC4VC options',
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: altme
description: AltMe Flutter App
version: 1.21.8+294
version: 1.21.10+295

environment:
sdk: ">=3.1.0 <4.0.0"
Expand Down

0 comments on commit 32f9bb2

Please sign in to comment.