Skip to content

Commit

Permalink
gh-2568 Images and text updated
Browse files Browse the repository at this point in the history
(cherry picked from commit 8d460dd)
  • Loading branch information
Dirk Jäckel committed Aug 30, 2022
1 parent a45e556 commit 31e7dee
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 20 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{
"images" : [
{
"filename" : "ico-whats-new-rebrand_light.pdf",
"idiom" : "universal"
},
{
"appearances" : [
{
"appearance" : "luminosity",
"value" : "dark"
}
],
"filename" : "ico-whats-new-rebrand_dark.pdf",
"idiom" : "universal"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}
Binary file not shown.
Binary file not shown.
25 changes: 5 additions & 20 deletions Multisig/UI/App/WhatsNewHandler.swift
Original file line number Diff line number Diff line change
Expand Up @@ -9,28 +9,13 @@ import WhatsNewKit
class WhatsNewHandler {
private let whatsNew = WhatsNew(
// Show the WhatsNew screen only once for users of this version
version: WhatsNew.Version(major: 3, minor: 14, patch: 0),
version: WhatsNew.Version(major: 3, minor: 17, patch: 0),
title: "What's new",
items: [
WhatsNew.Item(
title: "Open Links in App",
subtitle: "Now you can open links to assets or transactions, or transaction details of a safe in the mobile app",
image: UIImage(named: "ico-whats-new-open-links-in-app")
),
WhatsNew.Item(
title: "Review Delegate Calls",
subtitle: "Bring attention to potentially dangerous transactions marked with warning of «unexpected delegate calls» in transaction details",
image: UIImage(named: "ico-whats-new-review-delegate-calls")
),
WhatsNew.Item(
title: "Edit Safe Owners",
subtitle: "Connect your owner key to the Safe and edit Safe owners and confirmation requirements in the Safe settings",
image: UIImage(named: "ico-whats-new-edit-safe-owners")
),
WhatsNew.Item(
title: "Request to join a Safe",
subtitle: "After creating new owner key request to join the selected Safe by sharing a link with one of the owners",
image: UIImage(named: "ico-whats-new-join-safe")
title: "We have changed!",
subtitle: "Gnosis Safe rebranded to Safe. Following a successful spin-off vote from Gnosis in GIP-29, we are rebranding to Safe. Now and over the coming time, you will see a new look and a better visual experience to your ever secure Gnosis Safe that you love.",
image: UIImage(named: "ico-whats-new-rebrand")
)
]
)
Expand Down Expand Up @@ -65,7 +50,7 @@ class WhatsNewHandler {
whatsNewViewController = WhatsNewViewController(
whatsNew: whatsNewForCurrentVersion,
configuration: configuration,
versionStore: keyValueVersionStore // use InMemoryWhatsNewVersionStore() for debugging
versionStore: InMemoryWhatsNewVersionStore() //for debugging
)
}
}
Expand Down

0 comments on commit 31e7dee

Please sign in to comment.