From 31ae7b47d62317827172551872d294ab4e1ea13c Mon Sep 17 00:00:00 2001 From: rommex Date: Thu, 15 Feb 2024 19:30:03 +0200 Subject: [PATCH 1/3] copy --- .../Extensions/Extension-String+Preview.swift | 12 +++++ .../UpdateToWalletGreetingsView.swift | 47 +++++++++++++++---- .../Localization/en.lproj/Localizable.strings | 10 ++++ 3 files changed, 61 insertions(+), 8 deletions(-) diff --git a/unstoppable-ios-app/domains-manager-ios/Extensions/Extension-String+Preview.swift b/unstoppable-ios-app/domains-manager-ios/Extensions/Extension-String+Preview.swift index d43330eb9..b89f95988 100644 --- a/unstoppable-ios-app/domains-manager-ios/Extensions/Extension-String+Preview.swift +++ b/unstoppable-ios-app/domains-manager-ios/Extensions/Extension-String+Preview.swift @@ -1103,6 +1103,18 @@ extension String { static let copyWalletAddress = "COPY_WALLET_ADDRESS" static let updatedToWalletGreetingsTitle = "UPDATED_TO_WALLET_GREETINGS_TITLE" static let updatedToWalletGreetingsSubtitle = "UPDATED_TO_WALLET_GREETINGS_SUBTITLE" + + // Intro to v 5.0.0 screen + static let introSwitcherTitle = "INTRO_SWITCHER_TITLE" + static let introBalanceTitle = "INTRO_BALANCE_TITLE" + static let introCollectiblesTitle = "INTRO_COLLECTIBLES_TITLE" + static let introMessagesTitle = "INTRO_MESSAGES_TITLE" + + static let introSwitcherBody = "INTRO_SWITCHER_BODY" + static let introBalanceBody = "INTRO_BALANCE_BODY" + static let introCollectiblesBody = "INTRO_COLLECTIBLES_BODY" + static let introMessagesBody = "INTRO_MESSAGES_BODY" + } enum BlockChainIcons: String { diff --git a/unstoppable-ios-app/domains-manager-ios/Modules/Home/UpdateToWalletGreetingsView/UpdateToWalletGreetingsView.swift b/unstoppable-ios-app/domains-manager-ios/Modules/Home/UpdateToWalletGreetingsView/UpdateToWalletGreetingsView.swift index fcb25446e..e8bb6690d 100644 --- a/unstoppable-ios-app/domains-manager-ios/Modules/Home/UpdateToWalletGreetingsView/UpdateToWalletGreetingsView.swift +++ b/unstoppable-ios-app/domains-manager-ios/Modules/Home/UpdateToWalletGreetingsView/UpdateToWalletGreetingsView.swift @@ -103,35 +103,66 @@ private extension UpdateToWalletGreetingsView { // MARK: - Private methods private extension UpdateToWalletGreetingsView { enum GreetingHint: CaseIterable { - case wallet + case switcher + case balance + case collectibles + case messages var icon: Image { switch self { - case .wallet: + case .switcher: + return .appleIcon + case .balance: + return .appleIcon + case .collectibles: + return .appleIcon + case .messages: return .appleIcon } } var iconTint: Color { switch self { - case .wallet: - return .pink + case .switcher, .balance, .collectibles, .messages: + return .orange } } var title: String { switch self { - case .wallet: - return "Heading" + case .switcher: + return String.Constants.introSwitcherTitle.localized() + case .balance: + return String.Constants.introBalanceTitle.localized() + case .collectibles: + return String.Constants.introCollectiblesTitle.localized() + case .messages: + return String.Constants.introMessagesTitle.localized() } } var subtitle: String { switch self { - case .wallet: - return "Subheading" + case .switcher: + return String.Constants.introSwitcherBody.localized() + case .balance: + return String.Constants.introBalanceBody.localized() + case .collectibles: + return String.Constants.introCollectiblesBody.localized() + case .messages: + return String.Constants.introMessagesBody.localized() } } + + static let introSwitcherTitle = "INTRO_SWITCHER_TITLE" + static let introBalanceTitle = "INTRO_BALANCE_TITLE" + static let introCollectiblesTitle = "INTRO_COLLECTIBLES_TITLE" + static let introMessagesTitle = "INTRO_MESSAGES_TITLE" + + static let introSwitcherBody = "INTRO_SWITCHER_BODY" + static let introBalanceBody = "INTRO_BALANCE_BODY" + static let introCollectiblesBody = "INTRO_COLLECTIBLES_BODY" + static let introMessagesBody = "INTRO_MESSAGES_BODY" } } diff --git a/unstoppable-ios-app/domains-manager-ios/SupportingFiles/Localization/en.lproj/Localizable.strings b/unstoppable-ios-app/domains-manager-ios/SupportingFiles/Localization/en.lproj/Localizable.strings index f2d95c6c4..e6f12b74f 100644 --- a/unstoppable-ios-app/domains-manager-ios/SupportingFiles/Localization/en.lproj/Localizable.strings +++ b/unstoppable-ios-app/domains-manager-ios/SupportingFiles/Localization/en.lproj/Localizable.strings @@ -1004,3 +1004,13 @@ "UPDATED_TO_WALLET_GREETINGS_TITLE" = "Unstoppable App 5.0"; "UPDATED_TO_WALLET_GREETINGS_SUBTITLE" = "What’s new?"; +"INTRO_SWITCHER_TITLE" = "New domains switcher"; +"INTRO_BALANCE_TITLE" = "Wallet total balance"; +"INTRO_COLLECTIBLES_TITLE" = "Your NFTs in the collectibles tab"; +"INTRO_MESSAGES_TITLE" = "New place for messages"; + +"INTRO_SWITCHER_BODY" = "Seamlessly toggle between your domains."; +"INTRO_BALANCE_BODY" = "Monitor your cryptocurrency holdings with real-time updates for ETH, MATIC, and others to be added soon."; +"INTRO_COLLECTIBLES_BODY" = "Keep an eye on your NFT collection and stay updated with market prices."; +"INTRO_MESSAGES_BODY" = "Messages now have a dedicated tab. +More tabs are coming in the next updates."; From 4b11ae269ca56d066f01ccb1b2f3bfdd9009d899 Mon Sep 17 00:00:00 2001 From: rommex Date: Thu, 15 Feb 2024 20:04:22 +0200 Subject: [PATCH 2/3] images --- .../UpdateToWalletGreetingsView.swift | 10 ++++----- .../Greetings5.0/Contents.json | 6 ++++++ .../balanceIcon.imageset/Contents.json | 21 +++++++++++++++++++ .../balanceIcon.imageset/balanceIcon.svg | 3 +++ .../collectiblesIcon.imageset/Contents.json | 21 +++++++++++++++++++ .../collectiblesIcon.svg | 4 ++++ .../messagesIcon.imageset/Contents.json | 21 +++++++++++++++++++ .../messagesIcon.imageset/messagesIcon.svg | 4 ++++ .../switcherIcon.imageset/Contents.json | 21 +++++++++++++++++++ .../switcherIcon.imageset/icon.svg | 3 +++ .../Localization/en.lproj/Localizable.strings | 4 ++-- .../SwiftUI/Extensions/Image.swift | 5 +++++ 12 files changed, 116 insertions(+), 7 deletions(-) create mode 100644 unstoppable-ios-app/domains-manager-ios/SupportingFiles/Assets.xcassets/Greetings5.0/Contents.json create mode 100644 unstoppable-ios-app/domains-manager-ios/SupportingFiles/Assets.xcassets/Greetings5.0/balanceIcon.imageset/Contents.json create mode 100644 unstoppable-ios-app/domains-manager-ios/SupportingFiles/Assets.xcassets/Greetings5.0/balanceIcon.imageset/balanceIcon.svg create mode 100644 unstoppable-ios-app/domains-manager-ios/SupportingFiles/Assets.xcassets/Greetings5.0/collectiblesIcon.imageset/Contents.json create mode 100644 unstoppable-ios-app/domains-manager-ios/SupportingFiles/Assets.xcassets/Greetings5.0/collectiblesIcon.imageset/collectiblesIcon.svg create mode 100644 unstoppable-ios-app/domains-manager-ios/SupportingFiles/Assets.xcassets/Greetings5.0/messagesIcon.imageset/Contents.json create mode 100644 unstoppable-ios-app/domains-manager-ios/SupportingFiles/Assets.xcassets/Greetings5.0/messagesIcon.imageset/messagesIcon.svg create mode 100644 unstoppable-ios-app/domains-manager-ios/SupportingFiles/Assets.xcassets/Greetings5.0/switcherIcon.imageset/Contents.json create mode 100644 unstoppable-ios-app/domains-manager-ios/SupportingFiles/Assets.xcassets/Greetings5.0/switcherIcon.imageset/icon.svg diff --git a/unstoppable-ios-app/domains-manager-ios/Modules/Home/UpdateToWalletGreetingsView/UpdateToWalletGreetingsView.swift b/unstoppable-ios-app/domains-manager-ios/Modules/Home/UpdateToWalletGreetingsView/UpdateToWalletGreetingsView.swift index e8bb6690d..480df66f0 100644 --- a/unstoppable-ios-app/domains-manager-ios/Modules/Home/UpdateToWalletGreetingsView/UpdateToWalletGreetingsView.swift +++ b/unstoppable-ios-app/domains-manager-ios/Modules/Home/UpdateToWalletGreetingsView/UpdateToWalletGreetingsView.swift @@ -74,7 +74,7 @@ private extension UpdateToWalletGreetingsView { HStack(spacing: 16) { hint.icon .resizable() - .squareFrame(24) + .squareFrame(40) .foregroundStyle(hint.iconTint) .padding(EdgeInsets(top: 8, leading: 8, bottom: 8, trailing: 8)) VStack(alignment: .leading, spacing: 0) { @@ -111,13 +111,13 @@ private extension UpdateToWalletGreetingsView { var icon: Image { switch self { case .switcher: - return .appleIcon + return .switcherIcon case .balance: - return .appleIcon + return .balanceIcon case .collectibles: - return .appleIcon + return .collectiblesIcon case .messages: - return .appleIcon + return .messagesIcon } } diff --git a/unstoppable-ios-app/domains-manager-ios/SupportingFiles/Assets.xcassets/Greetings5.0/Contents.json b/unstoppable-ios-app/domains-manager-ios/SupportingFiles/Assets.xcassets/Greetings5.0/Contents.json new file mode 100644 index 000000000..73c00596a --- /dev/null +++ b/unstoppable-ios-app/domains-manager-ios/SupportingFiles/Assets.xcassets/Greetings5.0/Contents.json @@ -0,0 +1,6 @@ +{ + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/unstoppable-ios-app/domains-manager-ios/SupportingFiles/Assets.xcassets/Greetings5.0/balanceIcon.imageset/Contents.json b/unstoppable-ios-app/domains-manager-ios/SupportingFiles/Assets.xcassets/Greetings5.0/balanceIcon.imageset/Contents.json new file mode 100644 index 000000000..edcdb1f0c --- /dev/null +++ b/unstoppable-ios-app/domains-manager-ios/SupportingFiles/Assets.xcassets/Greetings5.0/balanceIcon.imageset/Contents.json @@ -0,0 +1,21 @@ +{ + "images" : [ + { + "filename" : "balanceIcon.svg", + "idiom" : "universal", + "scale" : "1x" + }, + { + "idiom" : "universal", + "scale" : "2x" + }, + { + "idiom" : "universal", + "scale" : "3x" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/unstoppable-ios-app/domains-manager-ios/SupportingFiles/Assets.xcassets/Greetings5.0/balanceIcon.imageset/balanceIcon.svg b/unstoppable-ios-app/domains-manager-ios/SupportingFiles/Assets.xcassets/Greetings5.0/balanceIcon.imageset/balanceIcon.svg new file mode 100644 index 000000000..d070b6769 --- /dev/null +++ b/unstoppable-ios-app/domains-manager-ios/SupportingFiles/Assets.xcassets/Greetings5.0/balanceIcon.imageset/balanceIcon.svg @@ -0,0 +1,3 @@ + + + diff --git a/unstoppable-ios-app/domains-manager-ios/SupportingFiles/Assets.xcassets/Greetings5.0/collectiblesIcon.imageset/Contents.json b/unstoppable-ios-app/domains-manager-ios/SupportingFiles/Assets.xcassets/Greetings5.0/collectiblesIcon.imageset/Contents.json new file mode 100644 index 000000000..aa8e2dcda --- /dev/null +++ b/unstoppable-ios-app/domains-manager-ios/SupportingFiles/Assets.xcassets/Greetings5.0/collectiblesIcon.imageset/Contents.json @@ -0,0 +1,21 @@ +{ + "images" : [ + { + "filename" : "collectiblesIcon.svg", + "idiom" : "universal", + "scale" : "1x" + }, + { + "idiom" : "universal", + "scale" : "2x" + }, + { + "idiom" : "universal", + "scale" : "3x" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/unstoppable-ios-app/domains-manager-ios/SupportingFiles/Assets.xcassets/Greetings5.0/collectiblesIcon.imageset/collectiblesIcon.svg b/unstoppable-ios-app/domains-manager-ios/SupportingFiles/Assets.xcassets/Greetings5.0/collectiblesIcon.imageset/collectiblesIcon.svg new file mode 100644 index 000000000..43ad8cc32 --- /dev/null +++ b/unstoppable-ios-app/domains-manager-ios/SupportingFiles/Assets.xcassets/Greetings5.0/collectiblesIcon.imageset/collectiblesIcon.svg @@ -0,0 +1,4 @@ + + + + diff --git a/unstoppable-ios-app/domains-manager-ios/SupportingFiles/Assets.xcassets/Greetings5.0/messagesIcon.imageset/Contents.json b/unstoppable-ios-app/domains-manager-ios/SupportingFiles/Assets.xcassets/Greetings5.0/messagesIcon.imageset/Contents.json new file mode 100644 index 000000000..a0e6eda49 --- /dev/null +++ b/unstoppable-ios-app/domains-manager-ios/SupportingFiles/Assets.xcassets/Greetings5.0/messagesIcon.imageset/Contents.json @@ -0,0 +1,21 @@ +{ + "images" : [ + { + "filename" : "messagesIcon.svg", + "idiom" : "universal", + "scale" : "1x" + }, + { + "idiom" : "universal", + "scale" : "2x" + }, + { + "idiom" : "universal", + "scale" : "3x" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/unstoppable-ios-app/domains-manager-ios/SupportingFiles/Assets.xcassets/Greetings5.0/messagesIcon.imageset/messagesIcon.svg b/unstoppable-ios-app/domains-manager-ios/SupportingFiles/Assets.xcassets/Greetings5.0/messagesIcon.imageset/messagesIcon.svg new file mode 100644 index 000000000..c5023d2a7 --- /dev/null +++ b/unstoppable-ios-app/domains-manager-ios/SupportingFiles/Assets.xcassets/Greetings5.0/messagesIcon.imageset/messagesIcon.svg @@ -0,0 +1,4 @@ + + + + diff --git a/unstoppable-ios-app/domains-manager-ios/SupportingFiles/Assets.xcassets/Greetings5.0/switcherIcon.imageset/Contents.json b/unstoppable-ios-app/domains-manager-ios/SupportingFiles/Assets.xcassets/Greetings5.0/switcherIcon.imageset/Contents.json new file mode 100644 index 000000000..f2e282ff1 --- /dev/null +++ b/unstoppable-ios-app/domains-manager-ios/SupportingFiles/Assets.xcassets/Greetings5.0/switcherIcon.imageset/Contents.json @@ -0,0 +1,21 @@ +{ + "images" : [ + { + "filename" : "icon.svg", + "idiom" : "universal", + "scale" : "1x" + }, + { + "idiom" : "universal", + "scale" : "2x" + }, + { + "idiom" : "universal", + "scale" : "3x" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/unstoppable-ios-app/domains-manager-ios/SupportingFiles/Assets.xcassets/Greetings5.0/switcherIcon.imageset/icon.svg b/unstoppable-ios-app/domains-manager-ios/SupportingFiles/Assets.xcassets/Greetings5.0/switcherIcon.imageset/icon.svg new file mode 100644 index 000000000..6046987ea --- /dev/null +++ b/unstoppable-ios-app/domains-manager-ios/SupportingFiles/Assets.xcassets/Greetings5.0/switcherIcon.imageset/icon.svg @@ -0,0 +1,3 @@ + + + diff --git a/unstoppable-ios-app/domains-manager-ios/SupportingFiles/Localization/en.lproj/Localizable.strings b/unstoppable-ios-app/domains-manager-ios/SupportingFiles/Localization/en.lproj/Localizable.strings index e6f12b74f..fd61008ca 100644 --- a/unstoppable-ios-app/domains-manager-ios/SupportingFiles/Localization/en.lproj/Localizable.strings +++ b/unstoppable-ios-app/domains-manager-ios/SupportingFiles/Localization/en.lproj/Localizable.strings @@ -1001,8 +1001,8 @@ "UPDATING" = "Updating"; "TRANSFERRING" = "Transferring"; "COPY_WALLET_ADDRESS" = "Copy wallet address"; -"UPDATED_TO_WALLET_GREETINGS_TITLE" = "Unstoppable App 5.0"; -"UPDATED_TO_WALLET_GREETINGS_SUBTITLE" = "What’s new?"; +"UPDATED_TO_WALLET_GREETINGS_TITLE" = "Introducing the"; +"UPDATED_TO_WALLET_GREETINGS_SUBTITLE" = "New Home Screen"; "INTRO_SWITCHER_TITLE" = "New domains switcher"; "INTRO_BALANCE_TITLE" = "Wallet total balance"; diff --git a/unstoppable-ios-app/domains-manager-ios/SwiftUI/Extensions/Image.swift b/unstoppable-ios-app/domains-manager-ios/SwiftUI/Extensions/Image.swift index da0358998..8ba29bfee 100644 --- a/unstoppable-ios-app/domains-manager-ios/SwiftUI/Extensions/Image.swift +++ b/unstoppable-ios-app/domains-manager-ios/SwiftUI/Extensions/Image.swift @@ -73,5 +73,10 @@ extension Image { static let systemDocOnDoc = Image(systemName: "doc.on.doc") static let systemAppBadgeCheckmark = Image(systemName: "app.badge.checkmark") + + static let switcherIcon = Image("switcherIcon") + static let balanceIcon = Image("balanceIcon") + static let collectiblesIcon = Image("collectiblesIcon") + static let messagesIcon = Image("messagesIcon") } From 5472e34a57687ab39ea3785f7717e92b93bf6890 Mon Sep 17 00:00:00 2001 From: rommex Date: Fri, 16 Feb 2024 08:15:41 +0200 Subject: [PATCH 3/3] code review update --- .../UpdateToWalletGreetingsView.swift | 40 +++++++------------ .../balanceIcon.imageset/Contents.json | 2 +- .../balanceIcon.imageset/balanceIcon.svg | 3 -- .../trending-3, trends.svg | 3 ++ .../collectiblesIcon.imageset/Contents.json | 2 +- .../collectiblesIcon.svg | 4 -- ...parkle, midjourney, ai generated, star.svg | 4 ++ .../messagesIcon.imageset/Contents.json | 2 +- .../bubble-annotation-3, message.svg | 4 ++ .../messagesIcon.imageset/messagesIcon.svg | 4 -- .../switcherIcon.imageset/Contents.json | 2 +- .../chevron-grabber-vertical.svg | 3 ++ .../switcherIcon.imageset/icon.svg | 3 -- 13 files changed, 32 insertions(+), 44 deletions(-) delete mode 100644 unstoppable-ios-app/domains-manager-ios/SupportingFiles/Assets.xcassets/Greetings5.0/balanceIcon.imageset/balanceIcon.svg create mode 100644 unstoppable-ios-app/domains-manager-ios/SupportingFiles/Assets.xcassets/Greetings5.0/balanceIcon.imageset/trending-3, trends.svg delete mode 100644 unstoppable-ios-app/domains-manager-ios/SupportingFiles/Assets.xcassets/Greetings5.0/collectiblesIcon.imageset/collectiblesIcon.svg create mode 100644 unstoppable-ios-app/domains-manager-ios/SupportingFiles/Assets.xcassets/Greetings5.0/collectiblesIcon.imageset/image-sparkle, midjourney, ai generated, star.svg create mode 100644 unstoppable-ios-app/domains-manager-ios/SupportingFiles/Assets.xcassets/Greetings5.0/messagesIcon.imageset/bubble-annotation-3, message.svg delete mode 100644 unstoppable-ios-app/domains-manager-ios/SupportingFiles/Assets.xcassets/Greetings5.0/messagesIcon.imageset/messagesIcon.svg create mode 100644 unstoppable-ios-app/domains-manager-ios/SupportingFiles/Assets.xcassets/Greetings5.0/switcherIcon.imageset/chevron-grabber-vertical.svg delete mode 100644 unstoppable-ios-app/domains-manager-ios/SupportingFiles/Assets.xcassets/Greetings5.0/switcherIcon.imageset/icon.svg diff --git a/unstoppable-ios-app/domains-manager-ios/Modules/Home/UpdateToWalletGreetingsView/UpdateToWalletGreetingsView.swift b/unstoppable-ios-app/domains-manager-ios/Modules/Home/UpdateToWalletGreetingsView/UpdateToWalletGreetingsView.swift index 480df66f0..0a27a5506 100644 --- a/unstoppable-ios-app/domains-manager-ios/Modules/Home/UpdateToWalletGreetingsView/UpdateToWalletGreetingsView.swift +++ b/unstoppable-ios-app/domains-manager-ios/Modules/Home/UpdateToWalletGreetingsView/UpdateToWalletGreetingsView.swift @@ -16,27 +16,25 @@ struct UpdateToWalletGreetingsView: View, ViewAnalyticsLogger { var body: some View { NavigationStack { VStack { - ScrollView { - VStack { - VStack(spacing: 32) { - headerView() - hintsListView() - } - Spacer() + VStack { + VStack(spacing: 32) { + headerView() + hintsListView() } + Spacer() } gotItButton() } - .padding(EdgeInsets(top: 0, leading: 16, bottom: 0, trailing: 16)) - .navigationTitle("") - .toolbar { - ToolbarItem(placement: .topBarLeading) { - CloseButtonView { - logButtonPressedAnalyticEvents(button: .close) - presentationMode.wrappedValue.dismiss() - } + .padding(EdgeInsets(top: 0, leading: 16, bottom: 0, trailing: 16)) + .navigationTitle("") + .toolbar { + ToolbarItem(placement: .topBarLeading) { + CloseButtonView { + logButtonPressedAnalyticEvents(button: .close) + presentationMode.wrappedValue.dismiss() } } + } } } } @@ -74,7 +72,7 @@ private extension UpdateToWalletGreetingsView { HStack(spacing: 16) { hint.icon .resizable() - .squareFrame(40) + .squareFrame(24) .foregroundStyle(hint.iconTint) .padding(EdgeInsets(top: 8, leading: 8, bottom: 8, trailing: 8)) VStack(alignment: .leading, spacing: 0) { @@ -153,16 +151,6 @@ private extension UpdateToWalletGreetingsView { return String.Constants.introMessagesBody.localized() } } - - static let introSwitcherTitle = "INTRO_SWITCHER_TITLE" - static let introBalanceTitle = "INTRO_BALANCE_TITLE" - static let introCollectiblesTitle = "INTRO_COLLECTIBLES_TITLE" - static let introMessagesTitle = "INTRO_MESSAGES_TITLE" - - static let introSwitcherBody = "INTRO_SWITCHER_BODY" - static let introBalanceBody = "INTRO_BALANCE_BODY" - static let introCollectiblesBody = "INTRO_COLLECTIBLES_BODY" - static let introMessagesBody = "INTRO_MESSAGES_BODY" } } diff --git a/unstoppable-ios-app/domains-manager-ios/SupportingFiles/Assets.xcassets/Greetings5.0/balanceIcon.imageset/Contents.json b/unstoppable-ios-app/domains-manager-ios/SupportingFiles/Assets.xcassets/Greetings5.0/balanceIcon.imageset/Contents.json index edcdb1f0c..967297e8b 100644 --- a/unstoppable-ios-app/domains-manager-ios/SupportingFiles/Assets.xcassets/Greetings5.0/balanceIcon.imageset/Contents.json +++ b/unstoppable-ios-app/domains-manager-ios/SupportingFiles/Assets.xcassets/Greetings5.0/balanceIcon.imageset/Contents.json @@ -1,7 +1,7 @@ { "images" : [ { - "filename" : "balanceIcon.svg", + "filename" : "trending-3, trends.svg", "idiom" : "universal", "scale" : "1x" }, diff --git a/unstoppable-ios-app/domains-manager-ios/SupportingFiles/Assets.xcassets/Greetings5.0/balanceIcon.imageset/balanceIcon.svg b/unstoppable-ios-app/domains-manager-ios/SupportingFiles/Assets.xcassets/Greetings5.0/balanceIcon.imageset/balanceIcon.svg deleted file mode 100644 index d070b6769..000000000 --- a/unstoppable-ios-app/domains-manager-ios/SupportingFiles/Assets.xcassets/Greetings5.0/balanceIcon.imageset/balanceIcon.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/unstoppable-ios-app/domains-manager-ios/SupportingFiles/Assets.xcassets/Greetings5.0/balanceIcon.imageset/trending-3, trends.svg b/unstoppable-ios-app/domains-manager-ios/SupportingFiles/Assets.xcassets/Greetings5.0/balanceIcon.imageset/trending-3, trends.svg new file mode 100644 index 000000000..90591f350 --- /dev/null +++ b/unstoppable-ios-app/domains-manager-ios/SupportingFiles/Assets.xcassets/Greetings5.0/balanceIcon.imageset/trending-3, trends.svg @@ -0,0 +1,3 @@ + + + diff --git a/unstoppable-ios-app/domains-manager-ios/SupportingFiles/Assets.xcassets/Greetings5.0/collectiblesIcon.imageset/Contents.json b/unstoppable-ios-app/domains-manager-ios/SupportingFiles/Assets.xcassets/Greetings5.0/collectiblesIcon.imageset/Contents.json index aa8e2dcda..84f1dcbbd 100644 --- a/unstoppable-ios-app/domains-manager-ios/SupportingFiles/Assets.xcassets/Greetings5.0/collectiblesIcon.imageset/Contents.json +++ b/unstoppable-ios-app/domains-manager-ios/SupportingFiles/Assets.xcassets/Greetings5.0/collectiblesIcon.imageset/Contents.json @@ -1,7 +1,7 @@ { "images" : [ { - "filename" : "collectiblesIcon.svg", + "filename" : "image-sparkle, midjourney, ai generated, star.svg", "idiom" : "universal", "scale" : "1x" }, diff --git a/unstoppable-ios-app/domains-manager-ios/SupportingFiles/Assets.xcassets/Greetings5.0/collectiblesIcon.imageset/collectiblesIcon.svg b/unstoppable-ios-app/domains-manager-ios/SupportingFiles/Assets.xcassets/Greetings5.0/collectiblesIcon.imageset/collectiblesIcon.svg deleted file mode 100644 index 43ad8cc32..000000000 --- a/unstoppable-ios-app/domains-manager-ios/SupportingFiles/Assets.xcassets/Greetings5.0/collectiblesIcon.imageset/collectiblesIcon.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/unstoppable-ios-app/domains-manager-ios/SupportingFiles/Assets.xcassets/Greetings5.0/collectiblesIcon.imageset/image-sparkle, midjourney, ai generated, star.svg b/unstoppable-ios-app/domains-manager-ios/SupportingFiles/Assets.xcassets/Greetings5.0/collectiblesIcon.imageset/image-sparkle, midjourney, ai generated, star.svg new file mode 100644 index 000000000..4ace54cda --- /dev/null +++ b/unstoppable-ios-app/domains-manager-ios/SupportingFiles/Assets.xcassets/Greetings5.0/collectiblesIcon.imageset/image-sparkle, midjourney, ai generated, star.svg @@ -0,0 +1,4 @@ + + + + diff --git a/unstoppable-ios-app/domains-manager-ios/SupportingFiles/Assets.xcassets/Greetings5.0/messagesIcon.imageset/Contents.json b/unstoppable-ios-app/domains-manager-ios/SupportingFiles/Assets.xcassets/Greetings5.0/messagesIcon.imageset/Contents.json index a0e6eda49..bacfd4c10 100644 --- a/unstoppable-ios-app/domains-manager-ios/SupportingFiles/Assets.xcassets/Greetings5.0/messagesIcon.imageset/Contents.json +++ b/unstoppable-ios-app/domains-manager-ios/SupportingFiles/Assets.xcassets/Greetings5.0/messagesIcon.imageset/Contents.json @@ -1,7 +1,7 @@ { "images" : [ { - "filename" : "messagesIcon.svg", + "filename" : "bubble-annotation-3, message.svg", "idiom" : "universal", "scale" : "1x" }, diff --git a/unstoppable-ios-app/domains-manager-ios/SupportingFiles/Assets.xcassets/Greetings5.0/messagesIcon.imageset/bubble-annotation-3, message.svg b/unstoppable-ios-app/domains-manager-ios/SupportingFiles/Assets.xcassets/Greetings5.0/messagesIcon.imageset/bubble-annotation-3, message.svg new file mode 100644 index 000000000..2c999806f --- /dev/null +++ b/unstoppable-ios-app/domains-manager-ios/SupportingFiles/Assets.xcassets/Greetings5.0/messagesIcon.imageset/bubble-annotation-3, message.svg @@ -0,0 +1,4 @@ + + + + diff --git a/unstoppable-ios-app/domains-manager-ios/SupportingFiles/Assets.xcassets/Greetings5.0/messagesIcon.imageset/messagesIcon.svg b/unstoppable-ios-app/domains-manager-ios/SupportingFiles/Assets.xcassets/Greetings5.0/messagesIcon.imageset/messagesIcon.svg deleted file mode 100644 index c5023d2a7..000000000 --- a/unstoppable-ios-app/domains-manager-ios/SupportingFiles/Assets.xcassets/Greetings5.0/messagesIcon.imageset/messagesIcon.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/unstoppable-ios-app/domains-manager-ios/SupportingFiles/Assets.xcassets/Greetings5.0/switcherIcon.imageset/Contents.json b/unstoppable-ios-app/domains-manager-ios/SupportingFiles/Assets.xcassets/Greetings5.0/switcherIcon.imageset/Contents.json index f2e282ff1..37f2e9195 100644 --- a/unstoppable-ios-app/domains-manager-ios/SupportingFiles/Assets.xcassets/Greetings5.0/switcherIcon.imageset/Contents.json +++ b/unstoppable-ios-app/domains-manager-ios/SupportingFiles/Assets.xcassets/Greetings5.0/switcherIcon.imageset/Contents.json @@ -1,7 +1,7 @@ { "images" : [ { - "filename" : "icon.svg", + "filename" : "chevron-grabber-vertical.svg", "idiom" : "universal", "scale" : "1x" }, diff --git a/unstoppable-ios-app/domains-manager-ios/SupportingFiles/Assets.xcassets/Greetings5.0/switcherIcon.imageset/chevron-grabber-vertical.svg b/unstoppable-ios-app/domains-manager-ios/SupportingFiles/Assets.xcassets/Greetings5.0/switcherIcon.imageset/chevron-grabber-vertical.svg new file mode 100644 index 000000000..e81b49442 --- /dev/null +++ b/unstoppable-ios-app/domains-manager-ios/SupportingFiles/Assets.xcassets/Greetings5.0/switcherIcon.imageset/chevron-grabber-vertical.svg @@ -0,0 +1,3 @@ + + + diff --git a/unstoppable-ios-app/domains-manager-ios/SupportingFiles/Assets.xcassets/Greetings5.0/switcherIcon.imageset/icon.svg b/unstoppable-ios-app/domains-manager-ios/SupportingFiles/Assets.xcassets/Greetings5.0/switcherIcon.imageset/icon.svg deleted file mode 100644 index 6046987ea..000000000 --- a/unstoppable-ios-app/domains-manager-ios/SupportingFiles/Assets.xcassets/Greetings5.0/switcherIcon.imageset/icon.svg +++ /dev/null @@ -1,3 +0,0 @@ - - -