From 24db1411d46c9ebe6a7867008e5d6b2a531b6f8e Mon Sep 17 00:00:00 2001 From: Alfreedom <00tango.bromine@icloud.com> Date: Fri, 9 Aug 2024 12:27:33 +0200 Subject: [PATCH] minor changes --- .github/workflows/release_dapp_android.yml | 2 +- .github/workflows/release_dapp_android_internal.yml | 2 +- .github/workflows/release_dapp_ios.yml | 2 +- .github/workflows/release_dapp_ios_internal.yml | 2 +- .github/workflows/release_wallet_android.yml | 2 +- .github/workflows/release_wallet_android_internal.yml | 2 +- .github/workflows/release_wallet_ios.yml | 2 +- .github/workflows/release_wallet_ios_internal.yml | 2 +- example/dapp/android/fastlane/Fastfile | 2 +- example/dapp/ios/fastlane/Fastfile | 2 +- example/dapp/lib/pages/connect_page.dart | 4 ++-- example/dapp/web/index.html | 2 +- example/dapp/web/manifest.json | 4 ++-- example/wallet/android/fastlane/Fastfile | 2 +- example/wallet/ios/fastlane/Fastfile | 2 +- example/wallet/macos/Runner/Configs/AppInfo.xcconfig | 2 +- 16 files changed, 18 insertions(+), 18 deletions(-) diff --git a/.github/workflows/release_dapp_android.yml b/.github/workflows/release_dapp_android.yml index ce5293c6..3188d495 100644 --- a/.github/workflows/release_dapp_android.yml +++ b/.github/workflows/release_dapp_android.yml @@ -1,4 +1,4 @@ -name: Android Web3Dapp (production) deploy +name: Android Dapp (production) deploy on: workflow_dispatch: diff --git a/.github/workflows/release_dapp_android_internal.yml b/.github/workflows/release_dapp_android_internal.yml index 12a1d821..dd7c9c2e 100644 --- a/.github/workflows/release_dapp_android_internal.yml +++ b/.github/workflows/release_dapp_android_internal.yml @@ -1,4 +1,4 @@ -name: Android Web3Dapp (internal) deploy +name: Android Dapp (internal) deploy on: workflow_dispatch: diff --git a/.github/workflows/release_dapp_ios.yml b/.github/workflows/release_dapp_ios.yml index a346fe4a..dc0ae861 100644 --- a/.github/workflows/release_dapp_ios.yml +++ b/.github/workflows/release_dapp_ios.yml @@ -1,4 +1,4 @@ -name: iOS Web3Dapp (production) deploy +name: iOS Dapp (production) deploy on: workflow_dispatch: diff --git a/.github/workflows/release_dapp_ios_internal.yml b/.github/workflows/release_dapp_ios_internal.yml index 54911c49..08251e88 100644 --- a/.github/workflows/release_dapp_ios_internal.yml +++ b/.github/workflows/release_dapp_ios_internal.yml @@ -1,4 +1,4 @@ -name: iOS Web3Dapp (internal) deploy +name: iOS Dapp (internal) deploy on: workflow_dispatch: diff --git a/.github/workflows/release_wallet_android.yml b/.github/workflows/release_wallet_android.yml index c660c060..224b336d 100644 --- a/.github/workflows/release_wallet_android.yml +++ b/.github/workflows/release_wallet_android.yml @@ -1,4 +1,4 @@ -name: Android Web3Wallet (production) deploy +name: Android Wallet (production) deploy on: workflow_dispatch: diff --git a/.github/workflows/release_wallet_android_internal.yml b/.github/workflows/release_wallet_android_internal.yml index 59051f82..e5a4b063 100644 --- a/.github/workflows/release_wallet_android_internal.yml +++ b/.github/workflows/release_wallet_android_internal.yml @@ -1,4 +1,4 @@ -name: Android Web3Wallet (internal) deploy +name: Android Wallet (internal) deploy on: workflow_dispatch: diff --git a/.github/workflows/release_wallet_ios.yml b/.github/workflows/release_wallet_ios.yml index a3b456e6..e68d75aa 100644 --- a/.github/workflows/release_wallet_ios.yml +++ b/.github/workflows/release_wallet_ios.yml @@ -1,4 +1,4 @@ -name: iOS Web3Wallet (production) deploy +name: iOS Wallet (production) deploy on: workflow_dispatch: diff --git a/.github/workflows/release_wallet_ios_internal.yml b/.github/workflows/release_wallet_ios_internal.yml index 8a3a6cfc..edb04b38 100644 --- a/.github/workflows/release_wallet_ios_internal.yml +++ b/.github/workflows/release_wallet_ios_internal.yml @@ -1,4 +1,4 @@ -name: iOS Web3Wallet (internal) deploy +name: iOS Wallet (internal) deploy on: workflow_dispatch: diff --git a/example/dapp/android/fastlane/Fastfile b/example/dapp/android/fastlane/Fastfile index 2f0aac57..228e7db5 100644 --- a/example/dapp/android/fastlane/Fastfile +++ b/example/dapp/android/fastlane/Fastfile @@ -78,7 +78,7 @@ platform :android do ) slack( - message: "📱 Web3Dapp Flutter #{_app_version}-#{_flavor} (#{_new_build_number}) for 🤖 Android successfully released!\n\n", + message: "📱 Flutter Dapp #{_app_version}-#{_flavor} (#{_new_build_number}) for 🤖 Android successfully released!\n\n", default_payloads: [], attachment_properties: { fields: [ diff --git a/example/dapp/ios/fastlane/Fastfile b/example/dapp/ios/fastlane/Fastfile index b09595e0..8088a5f2 100644 --- a/example/dapp/ios/fastlane/Fastfile +++ b/example/dapp/ios/fastlane/Fastfile @@ -121,7 +121,7 @@ platform :ios do ) slack( - message: "📱 Web3Dapp Flutter #{options[:app_version]}-#{_flavor} (#{new_build_number}) for 🍎 iOS successfully released!\n\n", + message: "📱 Flutter Dapp #{options[:app_version]}-#{_flavor} (#{new_build_number}) for 🍎 iOS successfully released!\n\n", default_payloads: [], attachment_properties: { fields: [ diff --git a/example/dapp/lib/pages/connect_page.dart b/example/dapp/lib/pages/connect_page.dart index 68f7a555..64accaf1 100644 --- a/example/dapp/lib/pages/connect_page.dart +++ b/example/dapp/lib/pages/connect_page.dart @@ -354,7 +354,7 @@ class ConnectPageState extends State { context: context, builder: (BuildContext context) { return AlertDialog( - content: const Text('Do you want to open with Web3Wallet Flutter'), + content: const Text('Do you want to open with Flutter Wallet'), actions: [ TextButton( onPressed: () => Navigator.of(context).pop(false), @@ -523,7 +523,7 @@ class ConnectPageState extends State { context: context, builder: (BuildContext context) { return AlertDialog( - content: const Text('Do you want to open with Web3Wallet Flutter'), + content: const Text('Do you want to open with Flutter Wallet'), actions: [ TextButton( onPressed: () => Navigator.of(context).pop(false), diff --git a/example/dapp/web/index.html b/example/dapp/web/index.html index b4560133..3bcca361 100644 --- a/example/dapp/web/index.html +++ b/example/dapp/web/index.html @@ -23,7 +23,7 @@ - + diff --git a/example/dapp/web/manifest.json b/example/dapp/web/manifest.json index 760f6ae4..4cd3ac9e 100644 --- a/example/dapp/web/manifest.json +++ b/example/dapp/web/manifest.json @@ -1,6 +1,6 @@ { - "name": "Web3Dapp Flutter", - "short_name": "Web3Dapp Flutter", + "name": "Flutter Dapp", + "short_name": "Flutter Dapp", "start_url": ".", "display": "standalone", "background_color": "#0175C2", diff --git a/example/wallet/android/fastlane/Fastfile b/example/wallet/android/fastlane/Fastfile index 1f69e867..cceb86d4 100644 --- a/example/wallet/android/fastlane/Fastfile +++ b/example/wallet/android/fastlane/Fastfile @@ -78,7 +78,7 @@ platform :android do ) slack( - message: "🔐 Web3Wallet Flutter #{_app_version}-#{_flavor} (#{_new_build_number}) for 🤖 Android successfully released!\n\n", + message: "🔐 Flutter Wallet #{_app_version}-#{_flavor} (#{_new_build_number}) for 🤖 Android successfully released!\n\n", default_payloads: [], attachment_properties: { fields: [ diff --git a/example/wallet/ios/fastlane/Fastfile b/example/wallet/ios/fastlane/Fastfile index c645abfe..1c626f22 100644 --- a/example/wallet/ios/fastlane/Fastfile +++ b/example/wallet/ios/fastlane/Fastfile @@ -120,7 +120,7 @@ platform :ios do ) slack( - message: "🔐 Web3Wallet Flutter #{options[:app_version]}-#{_flavor} (#{new_build_number}) for 🍎 iOS successfully released!\n\n", + message: "🔐 Flutter Wallet #{options[:app_version]}-#{_flavor} (#{new_build_number}) for 🍎 iOS successfully released!\n\n", default_payloads: [], attachment_properties: { fields: [ diff --git a/example/wallet/macos/Runner/Configs/AppInfo.xcconfig b/example/wallet/macos/Runner/Configs/AppInfo.xcconfig index da803111..f095b4a5 100644 --- a/example/wallet/macos/Runner/Configs/AppInfo.xcconfig +++ b/example/wallet/macos/Runner/Configs/AppInfo.xcconfig @@ -5,7 +5,7 @@ // 'flutter create' template. // The application's name. By default this is also the title of the Flutter window. -PRODUCT_NAME = Web3Wallet +PRODUCT_NAME = Flutter Wallet // The application's bundle identifier PRODUCT_BUNDLE_IDENTIFIER = com.example.wallet