Merge pull request #6421 from igrechuhin/MAPSME-4778
[MAPSME-4778] [ios] Updated what’s new.
Before Width: | Height: | Size: 39 KiB |
Before Width: | Height: | Size: 84 KiB |
Before Width: | Height: | Size: 139 KiB |
Before Width: | Height: | Size: 26 KiB |
Before Width: | Height: | Size: 54 KiB |
Before Width: | Height: | Size: 81 KiB |
|
@ -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"
|
||||
}
|
||||
],
|
After Width: | Height: | Size: 19 KiB |
After Width: | Height: | Size: 37 KiB |
After Width: | Height: | Size: 92 KiB |
|
@ -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"
|
||||
}
|
||||
],
|
BIN
iphone/Maps/Images.xcassets/Whats New/img_wn_viator.imageset/img_wn_viator.png
vendored
Normal file
After Width: | Height: | Size: 21 KiB |
BIN
iphone/Maps/Images.xcassets/Whats New/img_wn_viator.imageset/img_wn_viator@2x.png
vendored
Normal file
After Width: | Height: | Size: 42 KiB |
BIN
iphone/Maps/Images.xcassets/Whats New/img_wn_viator.imageset/img_wn_viator@3x.png
vendored
Normal file
After Width: | Height: | Size: 114 KiB |
|
@ -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))
|
||||
]
|
||||
|
|