fastlane 2.38.0.beta.20170609010035 → 2.38.0.beta.20170610010032
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 883f7c08c89eb51aa765912469b95d408cc93d53
|
4
|
+
data.tar.gz: 22689d35ba963bd7a892a6721b2b7bf4a79074d2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cd936c7b360cf2edd4b4170a3425e7652cf6bd0f1fbf238fa8b40b27910fde51838380d82b10d001e62d81904f621f14ae8ab6e5126526a9b01e5ee52817372d
|
7
|
+
data.tar.gz: 63f34cc13ed6de67b6765c39f7dc3e64aa84ab660321de6ca2d53eb59049de1d543863e77d0666eed5484c93a6e991e1db7f49af7d5257cf0b2e78c50558a76d
|
@@ -13,6 +13,14 @@
|
|
13
13
|
margin-right: 25px;
|
14
14
|
}
|
15
15
|
|
16
|
+
.app-subtitle {
|
17
|
+
font-size: 26px;
|
18
|
+
font-family: 'Helvetica Neue', HelveticaNeue, Helvetica Neue;
|
19
|
+
font-weight: 300;
|
20
|
+
margin-left: 25px;
|
21
|
+
margin-right: 25px;
|
22
|
+
}
|
23
|
+
|
16
24
|
.app-urls {
|
17
25
|
margin-left: 25px;
|
18
26
|
font-size: 14px;
|
@@ -157,6 +165,12 @@
|
|
157
165
|
</div>
|
158
166
|
<% end %>
|
159
167
|
|
168
|
+
<% if @options[:subtitle] %>
|
169
|
+
<div class="app-subtitle">
|
170
|
+
Subtitle: <%= @options[:subtitle][language] %>
|
171
|
+
</div>
|
172
|
+
<% end %>
|
173
|
+
|
160
174
|
<div class="app-urls">
|
161
175
|
<% all_keys = [:support_url, :marketing_url] %>
|
162
176
|
<% all_keys.each do |key| %>
|
@@ -198,7 +212,7 @@
|
|
198
212
|
|
199
213
|
<% if @options[:promotional_text] %>
|
200
214
|
<div class="app-changelog">
|
201
|
-
<div class="cat-headline">
|
215
|
+
<div class="cat-headline">Promotional Text</div>
|
202
216
|
<%= (@options[:promotional_text][language] || '').gsub("\n", "<br />") %>
|
203
217
|
</div>
|
204
218
|
<% end %>
|
@@ -245,6 +245,13 @@ module Deliver
|
|
245
245
|
description: "Metadata: The localised app name",
|
246
246
|
optional: true,
|
247
247
|
is_string: false),
|
248
|
+
FastlaneCore::ConfigItem.new(key: :subtitle,
|
249
|
+
description: "Metadata: The localised app subtitle",
|
250
|
+
optional: true,
|
251
|
+
is_string: false,
|
252
|
+
verify_block: proc do |value|
|
253
|
+
UI.user_error!(":subtitle must be a Hash, with the language being the key") unless value.kind_of?(Hash)
|
254
|
+
end),
|
248
255
|
FastlaneCore::ConfigItem.new(key: :keywords,
|
249
256
|
description: "Metadata: An array of localised keywords",
|
250
257
|
optional: true,
|
@@ -8,7 +8,7 @@ module Deliver
|
|
8
8
|
NON_LOCALISED_VERSION_VALUES = [:copyright]
|
9
9
|
|
10
10
|
# Localised app details values
|
11
|
-
LOCALISED_APP_VALUES = [:name, :privacy_url]
|
11
|
+
LOCALISED_APP_VALUES = [:name, :subtitle, :privacy_url]
|
12
12
|
|
13
13
|
# Non localized app details values
|
14
14
|
NON_LOCALISED_APP_VALUES = [:primary_category, :secondary_category,
|
@@ -13,6 +13,9 @@ module Spaceship
|
|
13
13
|
# @return (Hash) A hash representing the app name in all languages
|
14
14
|
attr_reader :name
|
15
15
|
|
16
|
+
# @return (Hash) A hash representing the subtitle in all languages
|
17
|
+
attr_reader :subtitle
|
18
|
+
|
16
19
|
# @return (Hash) A hash representing the privacy URL in all languages
|
17
20
|
attr_reader :privacy_url
|
18
21
|
|
@@ -63,6 +66,7 @@ module Spaceship
|
|
63
66
|
def unfold_languages
|
64
67
|
{
|
65
68
|
name: :name,
|
69
|
+
subtitle: :subtitle,
|
66
70
|
privacyPolicyUrl: :privacy_url,
|
67
71
|
privacyPolicy: :apple_tv_privacy_policy
|
68
72
|
}.each do |json, attribute|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fastlane
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.38.0.beta.
|
4
|
+
version: 2.38.0.beta.20170610010032
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Felix Krause
|
@@ -15,7 +15,7 @@ authors:
|
|
15
15
|
autorequire:
|
16
16
|
bindir: bin
|
17
17
|
cert_chain: []
|
18
|
-
date: 2017-06-
|
18
|
+
date: 2017-06-10 00:00:00.000000000 Z
|
19
19
|
dependencies:
|
20
20
|
- !ruby/object:Gem::Dependency
|
21
21
|
name: slack-notifier
|
@@ -1368,23 +1368,23 @@ metadata:
|
|
1368
1368
|
post_install_message:
|
1369
1369
|
rdoc_options: []
|
1370
1370
|
require_paths:
|
1371
|
-
- spaceship/lib
|
1372
1371
|
- sigh/lib
|
1373
|
-
- frameit/lib
|
1374
1372
|
- match/lib
|
1375
|
-
-
|
1376
|
-
- snapshot/lib
|
1377
|
-
- credentials_manager/lib
|
1378
|
-
- pilot/lib
|
1379
|
-
- deliver/lib
|
1380
|
-
- gym/lib
|
1373
|
+
- fastlane/lib
|
1381
1374
|
- produce/lib
|
1382
|
-
- scan/lib
|
1383
1375
|
- pem/lib
|
1384
|
-
-
|
1376
|
+
- deliver/lib
|
1377
|
+
- pilot/lib
|
1378
|
+
- credentials_manager/lib
|
1385
1379
|
- fastlane_core/lib
|
1386
|
-
-
|
1380
|
+
- snapshot/lib
|
1381
|
+
- frameit/lib
|
1387
1382
|
- supply/lib
|
1383
|
+
- cert/lib
|
1384
|
+
- screengrab/lib
|
1385
|
+
- gym/lib
|
1386
|
+
- scan/lib
|
1387
|
+
- spaceship/lib
|
1388
1388
|
required_ruby_version: !ruby/object:Gem::Requirement
|
1389
1389
|
requirements:
|
1390
1390
|
- - ">="
|