Before Width: | Height: | Size: 13 KiB |
Before Width: | Height: | Size: 23 KiB |
Before Width: | Height: | Size: 34 KiB |
|
@ -1,23 +0,0 @@
|
|||
{
|
||||
"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"
|
||||
}
|
||||
}
|
Before Width: | Height: | Size: 21 KiB |
Before Width: | Height: | Size: 40 KiB |
Before Width: | Height: | Size: 60 KiB |
|
@ -2,17 +2,17 @@
|
|||
"images" : [
|
||||
{
|
||||
"idiom" : "universal",
|
||||
"filename" : "img_onboarding_gallery.png",
|
||||
"filename" : "img_wnew_isolines.png",
|
||||
"scale" : "1x"
|
||||
},
|
||||
{
|
||||
"idiom" : "universal",
|
||||
"filename" : "img_onboarding_gallery@2x.png",
|
||||
"filename" : "img_wnew_isolines@2x.png",
|
||||
"scale" : "2x"
|
||||
},
|
||||
{
|
||||
"idiom" : "universal",
|
||||
"filename" : "img_onboarding_gallery@3x.png",
|
||||
"filename" : "img_wnew_isolines@3x.png",
|
||||
"scale" : "3x"
|
||||
}
|
||||
],
|
BIN
iphone/Maps/Images.xcassets/Whats New/img_wnew_isolines.imageset/img_wnew_isolines.png
vendored
Normal file
After Width: | Height: | Size: 17 KiB |
BIN
iphone/Maps/Images.xcassets/Whats New/img_wnew_isolines.imageset/img_wnew_isolines@2x.png
vendored
Normal file
After Width: | Height: | Size: 34 KiB |
BIN
iphone/Maps/Images.xcassets/Whats New/img_wnew_isolines.imageset/img_wnew_isolines@3x.png
vendored
Normal file
After Width: | Height: | Size: 52 KiB |
|
@ -2,14 +2,9 @@ class WhatsNewBuilder {
|
|||
|
||||
static var configs:[WhatsNewPresenter.WhatsNewConfig] {
|
||||
return [
|
||||
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",
|
||||
WhatsNewPresenter.WhatsNewConfig(image: UIImage(named: "img_wnew_isolines"),
|
||||
title: "whatsnew_isolines_title",
|
||||
text: "whatsnew_isolines_message",
|
||||
buttonNextTitle: "done",
|
||||
isCloseButtonHidden: true)
|
||||
]
|
||||
|
|
|
@ -17,8 +17,8 @@ class WhatsNewPresenter {
|
|||
private let appVersion = AppInfo.shared().bundleVersion ?? ""
|
||||
|
||||
init(view: IWelcomeView, router: WelcomeRouter, config: WhatsNewConfig) {
|
||||
self.view = view
|
||||
self.router = router
|
||||
self.view = view
|
||||
self.router = router
|
||||
self.config = config
|
||||
}
|
||||
}
|
||||
|
|