deliver 0.7.11 → 0.7.12

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: ae2a7efba86742205dd2fc3e8da2190613b359f1
4
- data.tar.gz: f8c901ab211e04c82a6c891487c1e4b85ca7926f
3
+ metadata.gz: 41e57184b3f01ed38542f66b736cbafcc8b9f770
4
+ data.tar.gz: 378b63355d1a174c0b21764e210c3affb7ef867a
5
5
  SHA512:
6
- metadata.gz: 88989c941b95a4cf84cdd765c78c97449a8a71c2bc553d0fd24f937fc162aaaece7615766f67f340bb42b7de85cd2f88fd5363c26993d67b6fd4d8acbb45b196
7
- data.tar.gz: 568c867e81a72391635f553636e797c3ff691c5953cf6861aa13d80026ca2354a963f1c8eed1bbd73913bcad6378557927a8c1d4a3ca596395958c7ba0108b2d
6
+ metadata.gz: 03117ffc1fb7543550a793b9b4020c6346aeb1907da4b1a01faf531e892f0951a9e461be7b54287d683b51d3dd976567c7c5d43c8fe379023d8996311fa704df
7
+ data.tar.gz: f0a92bf67b934e81ff34c456c4c28c3f4b92be7b44044b2bbd6079cb465f001bf4d970e30b927c96f0c3ced975b23bde10c3458792a9978cb31bc78d8fc20de0
@@ -74,12 +74,15 @@ module Deliver
74
74
  dir += "/#{app.apple_id}.itmsp"
75
75
 
76
76
  Helper.log.info "Going to upload updated app to iTunesConnect"
77
+ Helper.log.info "This might take a few minutes, please don't interrupt the script".green
77
78
 
78
79
  command = build_upload_command(@user, @password, dir)
79
80
  result = execute_transporter(command)
80
81
 
81
82
  if result
82
- Helper.log.info "Successfully uploaded package to iTunesConnect. It might take a few minutes until it's visible online.".green
83
+ Helper.log.info(("-" * 102).green)
84
+ Helper.log.info("Successfully uploaded package to iTunesConnect. It might take a few minutes until it's visible online.".green)
85
+ Helper.log.info(("-" * 102).green)
83
86
 
84
87
  FileUtils.rm_rf(dir) unless Helper.is_test? # we don't need the package any more, since the upload was successful
85
88
  end
@@ -183,6 +186,8 @@ module Deliver
183
186
  "-u \"#{username}\"",
184
187
  "-p '#{escaped_password(password)}'",
185
188
  "-f '#{source}'",
189
+ "-t 'Signiant'",
190
+ "-k 100000",
186
191
  ENV["DELIVER_ITMSTRANSPORTER_ADDITIONAL_UPLOAD_PARAMETERS"]
187
192
  ].join(' ')
188
193
  end
@@ -27,20 +27,22 @@ module Deliver
27
27
 
28
28
  counter = 0
29
29
  deliverer.app.metadata.information.each do |language, content|
30
+ modified_color = '0000AA'
31
+ standard_color = '000000'
32
+
30
33
  title = content[:title][:value] rescue ''
31
34
 
32
35
  Helper.log.info("[PDF] Exporting locale '#{language}' for app with title '#{title}'")
33
36
 
34
37
  font_size 20
35
- text "#{language}: #{title}", :fallback_fonts => pdf_fallback_fonts
38
+ color = (content[:title][:modified] ? modified_color : standard_color rescue standard_color)
39
+ text "#{language}: #{title}", :fallback_fonts => pdf_fallback_fonts, color: color
36
40
  stroke_horizontal_rule
37
41
  font_size 14
38
42
 
39
43
  move_down 30
40
44
 
41
45
  col1 = 200
42
- modified_color = '0000AA'
43
- standard_color = '000000'
44
46
 
45
47
  prev_cursor = cursor.to_f
46
48
  # Description on right side
@@ -1,3 +1,3 @@
1
1
  module Deliver
2
- VERSION = "0.7.11"
2
+ VERSION = "0.7.12"
3
3
  end
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: 0.7.11
4
+ version: 0.7.12
5
5
  platform: ruby
6
6
  authors:
7
7
  - Felix Krause
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-02-24 00:00:00.000000000 Z
11
+ date: 2015-02-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: fastlane_core