[MAPSME-6872] [ios] Updated what’s new.

This commit is contained in:
Ilya Grechuhin 2018-02-19 17:36:47 +03:00 committed by Roman Kuznetsov
parent 458df651d0
commit e732ccf221
13 changed files with 30 additions and 52 deletions

View file

@ -0,0 +1,12 @@
{
"images" : [
{
"idiom" : "universal",
"filename" : "img_whats_new_hotel_filter.pdf"
}
],
"info" : {
"version" : 1,
"author" : "xcode"
}
}

View file

@ -0,0 +1,12 @@
{
"images" : [
{
"idiom" : "universal",
"filename" : "img_whats_new_ugc.pdf"
}
],
"info" : {
"version" : 1,
"author" : "xcode"
}
}

View file

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

Binary file not shown.

Before

Width:  |  Height:  |  Size: 43 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 98 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 157 KiB

View file

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

Binary file not shown.

Before

Width:  |  Height:  |  Size: 24 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 51 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 85 KiB

View file

@ -3,14 +3,14 @@ import UIKit
final class WhatsNewController: MWMViewController, WelcomeProtocol {
static var welcomeConfigs: [WelcomeConfig] = [
WelcomeConfig(image: #imageLiteral(resourceName: "whats_new_transit"),
title: "whats_new_transit_title",
text: "whats_new_transit_message",
WelcomeConfig(image: #imageLiteral(resourceName: "img_whats_new_hotel_filter"),
title: "whats_new_title_hotel_filter",
text: "whats_new_message_hotel_filter",
buttonTitle: "whats_new_next_button",
buttonAction: #selector(nextPage)),
WelcomeConfig(image: #imageLiteral(resourceName: "whats_new_discovery"),
title: "whats_new_discovery_title",
text: "whats_new_discovery_message",
WelcomeConfig(image: #imageLiteral(resourceName: "img_whats_new_ugc"),
title: "whats_new_title_ugc_travel",
text: "whats_new_message_ugc_travel",
buttonTitle: "done",
buttonAction: #selector(close)),
]