fastlane 2.65.0.beta.20171107010003 → 2.65.0.beta.20171108010003
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/credentials_manager/lib/credentials_manager/appfile_config.rb +1 -1
- data/deliver/lib/deliver/upload_screenshots.rb +2 -0
- data/fastlane/lib/assets/DefaultFastfileTemplate +1 -1
- data/fastlane/lib/assets/FastfileTemplateAndroid +1 -1
- data/fastlane/lib/fastlane/actions/docs/deliver.md +2 -2
- data/fastlane/lib/fastlane/actions/docs/frameit.md +2 -2
- data/fastlane/lib/fastlane/plugins/template/lib/fastlane/plugin/%plugin_name%/actions/%plugin_name%_action.rb.erb +1 -1
- data/fastlane/lib/fastlane/version.rb +1 -1
- data/fastlane_core/README.md +1 -1
- data/frameit/lib/frameit/editor.rb +2 -1
- data/spaceship/README.md +1 -1
- data/spaceship/lib/spaceship/portal/app.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7d781ecb4a679fc66fbfb9de7ad8407dd28b6e34
|
4
|
+
data.tar.gz: 8196564310909b05159a3574ea2431ea69f4dedf
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3028e1433b822fdebbf6792c7e5677d5b1be6542603a79a151271d22f73d496078154d543e7cb1a311e1c1e4e656ac419a4bd900f4abf04141bfc86fea8d40bc
|
7
|
+
data.tar.gz: 7efce23010e1db63124151586441f83ecd8b2982e5ed806f1d2725246f780a2b90debe84c7021ae98eca4fdeca66a25a236651acb3b263429eac0a085cf82335
|
@@ -151,7 +151,7 @@ module CredentialsManager
|
|
151
151
|
if lane_name.to_s.split(" ").count > 1
|
152
152
|
# That's the legacy syntax 'platform name'
|
153
153
|
puts "You use deprecated syntax '#{lane_name}' in your Appfile.".yellow
|
154
|
-
puts "Please follow the Appfile guide: https://
|
154
|
+
puts "Please follow the Appfile guide: https://docs.fastlane.tools/advanced/#appfile".yellow
|
155
155
|
platform, lane_name = lane_name.split(" ")
|
156
156
|
|
157
157
|
return unless platform == ENV["FASTLANE_PLATFORM_NAME"]
|
@@ -17,6 +17,8 @@ module Deliver
|
|
17
17
|
UI.message("Removing all previously uploaded screenshots...")
|
18
18
|
# First, clear all previously uploaded screenshots
|
19
19
|
screenshots_per_language.keys.each do |language|
|
20
|
+
# We have to nil check for languages not activated
|
21
|
+
next if v.screenshots[language].nil?
|
20
22
|
v.screenshots[language].each_with_index do |t, index|
|
21
23
|
v.upload_screenshot!(nil, t.sort_order, t.language, t.device_type, false)
|
22
24
|
end
|
@@ -66,7 +66,7 @@ platform :ios do
|
|
66
66
|
end
|
67
67
|
|
68
68
|
|
69
|
-
# More information about multiple platforms in fastlane: https://
|
69
|
+
# More information about multiple platforms in fastlane: https://docs.fastlane.tools/advanced/#control-configuration-by-lane-and-by-platform
|
70
70
|
# All available actions: https://docs.fastlane.tools/actions
|
71
71
|
|
72
72
|
# fastlane reports which actions are used. No personal data is recorded.
|
@@ -58,7 +58,7 @@ platform :android do
|
|
58
58
|
end
|
59
59
|
end
|
60
60
|
|
61
|
-
# More information about multiple platforms in fastlane: https://
|
61
|
+
# More information about multiple platforms in fastlane: https://docs.fastlane.tools/advanced/#control-configuration-by-lane-and-by-platform
|
62
62
|
# All available actions: https://docs.fastlane.tools/actions
|
63
63
|
|
64
64
|
# fastlane reports which actions are used. No personal data is recorded.
|
@@ -243,7 +243,7 @@ app_review_information(
|
|
243
243
|
You can also provide these values by creating files in a `metadata/review_information/` directory. The file names must match the pattern `<key>.txt` (e.g. `first_name.txt`, `notes.txt` etc.). The contents of each file will be used as the value for the matching key. Values provided in the `Deliverfile` or `Fastfile` will be take priority over values from these files.
|
244
244
|
|
245
245
|
##### submission_information
|
246
|
-
Must be a hash. This is used as the last step for the deployment process, where you define if you use third party content or use encryption. [A list of available options](https://github.com/fastlane/fastlane/blob/master/spaceship/lib/spaceship/tunes/app_submission.rb
|
246
|
+
Must be a hash. This is used as the last step for the deployment process, where you define if you use third party content or use encryption. [A list of available options](https://github.com/fastlane/fastlane/blob/master/spaceship/lib/spaceship/tunes/app_submission.rb).
|
247
247
|
|
248
248
|
```ruby-skip-tests
|
249
249
|
submission_information({
|
@@ -638,7 +638,7 @@ In this case, default values for keywords, urls, name and release notes are used
|
|
638
638
|
If you want to integrate _deliver_ with [snapshot](https://github.com/fastlane/fastlane/tree/master/snapshot), check out [fastlane](https://fastlane.tools)!
|
639
639
|
|
640
640
|
## Jenkins integration
|
641
|
-
Detailed instructions about how to set up _deliver_ and _fastlane_ in `Jenkins` can be found in the [fastlane README](https://
|
641
|
+
Detailed instructions about how to set up _deliver_ and _fastlane_ in `Jenkins` can be found in the [fastlane README](https://docs.fastlane.tools/best-practices/continuous-integration/#jenkins-integration).
|
642
642
|
|
643
643
|
## Firewall Issues
|
644
644
|
|
@@ -28,7 +28,7 @@ Put a gorgeous device frame around your iOS and macOS screenshots just by runnin
|
|
28
28
|
|
29
29
|
The complete and updated list of supported devices and colors can be found [here](https://github.com/fastlane/frameit-frames/tree/gh-pages/latest)
|
30
30
|
|
31
|
-
Here is a nice gif, that shows
|
31
|
+
Here is a nice gif, that shows _frameit_ in action:
|
32
32
|
|
33
33
|
![img/actions/FrameitGit.gif](/img/actions/FrameitGit.gif?raw=1)
|
34
34
|
|
@@ -47,7 +47,7 @@ Here is a nice gif, that shows ```frameit``` in action:
|
|
47
47
|
<h5 align="center">The <code>frameit</code> 2.0 update was kindly sponsored by <a href="https://mindnode.com/">MindNode</a>, seen in the screenshots above.</h5>
|
48
48
|
|
49
49
|
|
50
|
-
The first time that
|
50
|
+
The first time that _frameit_ is executed the frames will be downloaded automatically. Originally the frames are coming from [Facebook frameset](http://facebook.design/devices) and they are kept on this repo: https://github.com/fastlane/frameit-frames
|
51
51
|
|
52
52
|
More information about this process and how to update the frames can be found [here](https://github.com/fastlane/fastlane/tree/master/frameit/frames_generator)
|
53
53
|
|
@@ -34,7 +34,7 @@ module Fastlane
|
|
34
34
|
|
35
35
|
def self.is_supported?(platform)
|
36
36
|
# Adjust this if your plugin only works for a particular platform (iOS vs. Android, for example)
|
37
|
-
# See: https://
|
37
|
+
# See: https://docs.fastlane.tools/advanced/#control-configuration-by-lane-and-by-platform
|
38
38
|
#
|
39
39
|
# [:ios, :mac, :android].include?(platform)
|
40
40
|
true
|
@@ -1,5 +1,5 @@
|
|
1
1
|
module Fastlane
|
2
|
-
VERSION = '2.65.0.beta.
|
2
|
+
VERSION = '2.65.0.beta.20171108010003'.freeze
|
3
3
|
DESCRIPTION = "The easiest way to automate beta deployments and releases for your iOS and Android apps".freeze
|
4
4
|
MINIMUM_XCODE_RELEASE = "7.0".freeze
|
5
5
|
RUBOCOP_REQUIREMENT = '0.49.1'.freeze
|
data/fastlane_core/README.md
CHANGED
@@ -28,7 +28,7 @@ FastlaneCore
|
|
28
28
|
============
|
29
29
|
|
30
30
|
[![Twitter: @FastlaneTools](https://img.shields.io/badge/contact-@FastlaneTools-blue.svg?style=flat)](https://twitter.com/FastlaneTools)
|
31
|
-
[![License](https://img.shields.io/badge/license-MIT-green.svg?style=flat)](https://github.com/fastlane/fastlane/blob/master/
|
31
|
+
[![License](https://img.shields.io/badge/license-MIT-green.svg?style=flat)](https://github.com/fastlane/fastlane/blob/master/LICENSE)
|
32
32
|
|
33
33
|
All shared code of the fastlane tools is stored in this repository.
|
34
34
|
|
@@ -170,7 +170,8 @@ module Frameit
|
|
170
170
|
background = MiniMagick::Image.open(fetch_config['background'])
|
171
171
|
|
172
172
|
if background.height != screenshot.size[1]
|
173
|
-
background.resize "#{screenshot.size[0]}x#{screenshot.size[1]}
|
173
|
+
background.resize "#{screenshot.size[0]}x#{screenshot.size[1]}^" # `^` says it should fill area
|
174
|
+
background.merge! ["-gravity", "center", "-crop", "#{screenshot.size[0]}x#{screenshot.size[1]}+0+0"] # crop from center
|
174
175
|
end
|
175
176
|
background
|
176
177
|
end
|
data/spaceship/README.md
CHANGED
@@ -31,7 +31,7 @@
|
|
31
31
|
-------
|
32
32
|
|
33
33
|
[![Twitter: @FastlaneTools](https://img.shields.io/badge/contact-@FastlaneTools-blue.svg?style=flat)](https://twitter.com/FastlaneTools)
|
34
|
-
[![License](https://img.shields.io/badge/license-MIT-green.svg?style=flat)](https://github.com/fastlane/fastlane/blob/master/
|
34
|
+
[![License](https://img.shields.io/badge/license-MIT-green.svg?style=flat)](https://github.com/fastlane/fastlane/blob/master/LICENSE)
|
35
35
|
|
36
36
|
`spaceship` exposes both the Apple Developer Center and the iTunes Connect API. This fast and powerful API powers parts of fastlane, and can be leveraged for more advanced fastlane features. Scripting your Developer Center workflow has never been easier!
|
37
37
|
|
@@ -107,7 +107,7 @@ module Spaceship
|
|
107
107
|
end
|
108
108
|
|
109
109
|
def associated_groups
|
110
|
-
return unless raw_data
|
110
|
+
return unless raw_data['associatedApplicationGroups']
|
111
111
|
|
112
112
|
@associated_groups ||= raw_data['associatedApplicationGroups'].map do |info|
|
113
113
|
Spaceship::Portal::AppGroup.new(info)
|
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.65.0.beta.
|
4
|
+
version: 2.65.0.beta.20171108010003
|
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-11-
|
18
|
+
date: 2017-11-08 00:00:00.000000000 Z
|
19
19
|
dependencies:
|
20
20
|
- !ruby/object:Gem::Dependency
|
21
21
|
name: slack-notifier
|