[iOS] what's new 9.6

https://jira.mail.ru/browse/MAPSME-12905
This commit is contained in:
Aleksey Belousov 2020-01-17 17:00:27 +03:00 committed by Daria Volvenkova
parent 5db4dc8878
commit 2e7522ac3b
13 changed files with 8 additions and 36 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 23 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 34 KiB

View file

@ -1,23 +0,0 @@
{
"images" : [
{
"idiom" : "universal",
"filename" : "img_onboarding_outdoor.png",
"scale" : "1x"
},
{
"idiom" : "universal",
"filename" : "img_onboarding_outdoor@2x.png",
"scale" : "2x"
},
{
"idiom" : "universal",
"filename" : "img_onboarding_outdoor@3x.png",
"scale" : "3x"
}
],
"info" : {
"version" : 1,
"author" : "xcode"
}
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 21 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 40 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 60 KiB

View file

@ -2,17 +2,17 @@
"images" : [
{
"idiom" : "universal",
"filename" : "img_onboarding_gallery.png",
"filename" : "img_wnew_isolines.png",
"scale" : "1x"
},
{
"idiom" : "universal",
"filename" : "img_onboarding_gallery@2x.png",
"filename" : "img_wnew_isolines@2x.png",
"scale" : "2x"
},
{
"idiom" : "universal",
"filename" : "img_onboarding_gallery@3x.png",
"filename" : "img_wnew_isolines@3x.png",
"scale" : "3x"
}
],

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 34 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 52 KiB

View file

@ -2,14 +2,9 @@ class WhatsNewBuilder {
static var configs:[WhatsNewPresenter.WhatsNewConfig] {
return [
WhatsNewPresenter.WhatsNewConfig(image: UIImage(named: "img_onboarding_outdoor"),
title: "whatsnew_outdoor_guides_title",
text: "whatsnew_outdoor_guides_message",
buttonNextTitle: "new_onboarding_button",
isCloseButtonHidden: true),
WhatsNewPresenter.WhatsNewConfig(image: UIImage(named: "img_onboarding_gallery"),
title: "whatsnew_guides_galleries_title",
text: "whatsnew_guides_galleries_message",
WhatsNewPresenter.WhatsNewConfig(image: UIImage(named: "img_wnew_isolines"),
title: "whatsnew_isolines_title",
text: "whatsnew_isolines_message",
buttonNextTitle: "done",
isCloseButtonHidden: true)
]

View file

@ -17,8 +17,8 @@ class WhatsNewPresenter {
private let appVersion = AppInfo.shared().bundleVersion ?? ""
init(view: IWelcomeView, router: WelcomeRouter, config: WhatsNewConfig) {
self.view = view
self.router = router
self.view = view
self.router = router
self.config = config
}
}