[iOS] What's new screens. Release 9.5
https://jira.mail.ru/browse/MAPSME-12461
|
@ -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"
|
||||
}
|
||||
],
|
BIN
iphone/Maps/Images.xcassets/Whats New/img_onboarding_gallery.imageset/img_onboarding_gallery.png
vendored
Normal file
After Width: | Height: | Size: 13 KiB |
BIN
iphone/Maps/Images.xcassets/Whats New/img_onboarding_gallery.imageset/img_onboarding_gallery@2x.png
vendored
Normal file
After Width: | Height: | Size: 23 KiB |
BIN
iphone/Maps/Images.xcassets/Whats New/img_onboarding_gallery.imageset/img_onboarding_gallery@3x.png
vendored
Normal file
After Width: | Height: | Size: 34 KiB |
23
iphone/Maps/Images.xcassets/Whats New/img_onboarding_outdoor.imageset/Contents.json
vendored
Normal 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"
|
||||
}
|
||||
}
|
BIN
iphone/Maps/Images.xcassets/Whats New/img_onboarding_outdoor.imageset/img_onboarding_outdoor.png
vendored
Normal file
After Width: | Height: | Size: 21 KiB |
BIN
iphone/Maps/Images.xcassets/Whats New/img_onboarding_outdoor.imageset/img_onboarding_outdoor@2x.png
vendored
Normal file
After Width: | Height: | Size: 40 KiB |
BIN
iphone/Maps/Images.xcassets/Whats New/img_onboarding_outdoor.imageset/img_onboarding_outdoor@3x.png
vendored
Normal file
After Width: | Height: | Size: 60 KiB |
Before Width: | Height: | Size: 32 KiB |
Before Width: | Height: | Size: 81 KiB |
Before Width: | Height: | Size: 145 KiB |
|
@ -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)
|
||||
]
|
||||
}
|
||||
|
||||
|
|