[iOS] What's new screens. Release 9.5

https://jira.mail.ru/browse/MAPSME-12461
This commit is contained in:
Alexander Boriskov 2019-11-25 15:45:19 +03:00 committed by Aleksey Belousov
parent e41e2c3862
commit f728975105
12 changed files with 36 additions and 8 deletions

View file

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 23 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 34 KiB

View file

@ -0,0 +1,23 @@
{
"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.

After

Width:  |  Height:  |  Size: 21 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 40 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 60 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 32 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 81 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 145 KiB

View file

@ -2,11 +2,16 @@ class WhatsNewBuilder {
static var configs:[WhatsNewPresenter.WhatsNewConfig] {
return [
WhatsNewPresenter.WhatsNewConfig(image: UIImage(named: "img_whats_new_mapboost"),
title: "whatsnew_map_updates_title",
text: "whatsnew_map_updates_message",
buttonNextTitle: "done",
isCloseButtonHidden: true)
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",
buttonNextTitle: "done",
isCloseButtonHidden: true)
]
}