deliver 1.14.1 → 1.14.2
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 +4 -4
- data/lib/deliver/options.rb +13 -4
- data/lib/deliver/upload_screenshots.rb +1 -1
- data/lib/deliver/version.rb +1 -1
- metadata +13 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 95e9985caed19074b4290a5dca2b7c6fea684fe3
|
4
|
+
data.tar.gz: cd8824e5b6052bb4127a75c7fc80a5e7a7259c87
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 94f9d6f2a81bcd896d1a850dc27b70e3b83689169d7c1034c58ad8611329613daf0b40a01dafd2b0e31325ba1c862341901c7327549252b7347462aaaaa72e35
|
7
|
+
data.tar.gz: 471e15cc45e1655e89d53646df55032be05e8fbd499709f71cf66d00acae2e4e2260027bf4b10bd8e212ff3b8bf5bf040fd8942d9326e8afd016cf69a5828cf0
|
data/lib/deliver/options.rb
CHANGED
@@ -120,7 +120,7 @@ module Deliver
|
|
120
120
|
FastlaneCore::ConfigItem.new(key: :team_id,
|
121
121
|
short_option: "-k",
|
122
122
|
env_name: "DELIVER_TEAM_ID",
|
123
|
-
description: "The ID of your team if you're in multiple teams",
|
123
|
+
description: "The ID of your iTunes Connect team if you're in multiple teams",
|
124
124
|
optional: true,
|
125
125
|
is_string: false, # as we also allow integers, which we convert to strings anyway
|
126
126
|
default_value: CredentialsManager::AppfileConfig.try_fetch_value(:itc_team_id),
|
@@ -130,22 +130,31 @@ module Deliver
|
|
130
130
|
FastlaneCore::ConfigItem.new(key: :team_name,
|
131
131
|
short_option: "-e",
|
132
132
|
env_name: "DELIVER_TEAM_NAME",
|
133
|
-
description: "The name of your team if you're in multiple teams",
|
133
|
+
description: "The name of your iTunes Connect team if you're in multiple teams",
|
134
134
|
optional: true,
|
135
135
|
default_value: CredentialsManager::AppfileConfig.try_fetch_value(:itc_team_name),
|
136
136
|
verify_block: proc do |value|
|
137
|
-
ENV["FASTLANE_ITC_TEAM_NAME"] = value
|
137
|
+
ENV["FASTLANE_ITC_TEAM_NAME"] = value.to_s
|
138
138
|
end),
|
139
139
|
FastlaneCore::ConfigItem.new(key: :dev_portal_team_id,
|
140
140
|
short_option: "-s",
|
141
141
|
env_name: "DELIVER_DEV_PORTAL_TEAM_ID",
|
142
|
-
description: "The short ID of your
|
142
|
+
description: "The short ID of your Developer Portal team, if you're in multiple teams. Different from your iTC team ID!",
|
143
143
|
optional: true,
|
144
144
|
is_string: true,
|
145
145
|
default_value: CredentialsManager::AppfileConfig.try_fetch_value(:team_id),
|
146
146
|
verify_block: proc do |value|
|
147
147
|
ENV["FASTLANE_TEAM_ID"] = value.to_s
|
148
148
|
end),
|
149
|
+
FastlaneCore::ConfigItem.new(key: :dev_portal_team_name,
|
150
|
+
short_option: "-y",
|
151
|
+
env_name: "DELIVER_DEV_PORTAL_TEAM_NAME",
|
152
|
+
description: "The name of your Developer Portal team if you're in multiple teams",
|
153
|
+
optional: true,
|
154
|
+
default_value: CredentialsManager::AppfileConfig.try_fetch_value(:team_name),
|
155
|
+
verify_block: proc do |value|
|
156
|
+
ENV["FASTLANE_TEAM_NAME"] = value.to_s
|
157
|
+
end),
|
149
158
|
FastlaneCore::ConfigItem.new(key: :itc_provider,
|
150
159
|
env_name: "DELIVER_ITC_PROVIDER",
|
151
160
|
description: "The provider short name to be used with the iTMSTransporter to identify your team",
|
@@ -34,7 +34,7 @@ module Deliver
|
|
34
34
|
index = indized[screenshot.language][screenshot.device_type]
|
35
35
|
|
36
36
|
if index > 5
|
37
|
-
UI.error("Too many screenshots found for device '#{screenshot.device_type}' in '#{screenshot.language}'")
|
37
|
+
UI.error("Too many screenshots found for device '#{screenshot.device_type}' in '#{screenshot.language}', skipping this one (#{screenshot.path})")
|
38
38
|
next
|
39
39
|
end
|
40
40
|
|
data/lib/deliver/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: deliver
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.14.
|
4
|
+
version: 1.14.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Felix Krause
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-10-
|
11
|
+
date: 2016-10-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: fastlane_core
|
@@ -56,7 +56,7 @@ dependencies:
|
|
56
56
|
requirements:
|
57
57
|
- - ">="
|
58
58
|
- !ruby/object:Gem::Version
|
59
|
-
version: 0.
|
59
|
+
version: 0.35.0
|
60
60
|
- - "<"
|
61
61
|
- !ruby/object:Gem::Version
|
62
62
|
version: 1.0.0
|
@@ -66,7 +66,7 @@ dependencies:
|
|
66
66
|
requirements:
|
67
67
|
- - ">="
|
68
68
|
- !ruby/object:Gem::Version
|
69
|
-
version: 0.
|
69
|
+
version: 0.35.0
|
70
70
|
- - "<"
|
71
71
|
- !ruby/object:Gem::Version
|
72
72
|
version: 1.0.0
|
@@ -88,16 +88,22 @@ dependencies:
|
|
88
88
|
name: plist
|
89
89
|
requirement: !ruby/object:Gem::Requirement
|
90
90
|
requirements:
|
91
|
-
- - "
|
91
|
+
- - ">="
|
92
92
|
- !ruby/object:Gem::Version
|
93
93
|
version: 3.1.0
|
94
|
+
- - "<"
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
version: 4.0.0
|
94
97
|
type: :runtime
|
95
98
|
prerelease: false
|
96
99
|
version_requirements: !ruby/object:Gem::Requirement
|
97
100
|
requirements:
|
98
|
-
- - "
|
101
|
+
- - ">="
|
99
102
|
- !ruby/object:Gem::Version
|
100
103
|
version: 3.1.0
|
104
|
+
- - "<"
|
105
|
+
- !ruby/object:Gem::Version
|
106
|
+
version: 4.0.0
|
101
107
|
- !ruby/object:Gem::Dependency
|
102
108
|
name: bundler
|
103
109
|
requirement: !ruby/object:Gem::Requirement
|
@@ -304,7 +310,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
304
310
|
version: '0'
|
305
311
|
requirements: []
|
306
312
|
rubyforge_project:
|
307
|
-
rubygems_version: 2.
|
313
|
+
rubygems_version: 2.6.6
|
308
314
|
signing_key:
|
309
315
|
specification_version: 4
|
310
316
|
summary: Upload screenshots, metadata and your app to the App Store using a single
|