Merge pull request #6421 from igrechuhin/MAPSME-4778

[MAPSME-4778] [ios] Updated what’s new.
This commit is contained in:
Vlad Mihaylenko 2017-06-29 15:54:50 +03:00 committed by GitHub
commit e61c5efa68
15 changed files with 12 additions and 17 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 39 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 84 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 139 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 26 KiB

View file

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 37 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 92 KiB

View file

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 21 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 42 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 114 KiB

View file

@ -3,19 +3,14 @@ import UIKit
final class WhatsNewController: MWMViewController, WelcomeProtocol {
static var welcomeConfigs: [WelcomeConfig] = [
// WelcomeConfig(image: #imageLiteral(resourceName: "wn_img_1"),
// title: "whatsnew_improved_search",
// text: "whatsnew_improved_search_text",
// buttonTitle: "whats_new_next_button",
// buttonAction: #selector(nextPage)),
WelcomeConfig(image: #imageLiteral(resourceName: "img_whatsnew_driving_style"),
title: "whatsnew_driving_style_title",
text: "whatsnew_driving_style_message",
WelcomeConfig(image: #imageLiteral(resourceName: "img_wn_intermediate_point"),
title: "whatsnew_intermediate_point_title",
text: "whatsnew_intermediate_point_message",
buttonTitle: "whats_new_next_button",
buttonAction: #selector(nextPage)),
WelcomeConfig(image: #imageLiteral(resourceName: "img_whatsnew_transliteration"),
title: "whatsnew_transliteration_title",
text: "whatsnew_transliteration_message",
WelcomeConfig(image: #imageLiteral(resourceName: "img_wn_viator"),
title: "whatsnew_viator_title",
text: "whatsnew_viator_message",
buttonTitle: "done",
buttonAction: #selector(close))
]