fastlane 2.15.0 → 2.15.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 383425b6313a087ef4f1eaee91d838ba310e0026
4
- data.tar.gz: 0009a6ba8fbd8d23786cdb3cae05b74d4a3fc625
3
+ metadata.gz: 67082492c283f867c104bc6ad29ea0f1ba7a6afe
4
+ data.tar.gz: 6eb9bbddf03935457ecee161e21ac44d01bc35bb
5
5
  SHA512:
6
- metadata.gz: edd95a1b19bed265c452b9791919f60f1e6d45486380dddc936818e1e068c680c161d6eb8652a480571844d254503cb45e1865cb2142455eceb27323d56d1ba2
7
- data.tar.gz: 7a870f2573a5664305c14200b4e2690914f1ca36f79b17574ca865af0f2cb16798bc90058d350bcff4b8a77243f92d1f10a315ec29b62ee099316e29112a32f5
6
+ metadata.gz: df84e9735cebeddb9d535def5d08ba6b2c91071aed6b4c7671b2af1ac8673ba6783c6ef3d41eb89368b981d9ae58a08ce7781637d27472d2b2272f4471fe500b
7
+ data.tar.gz: 0208bc36c54706c2fdb62ffad1095f54586301962110f953912669972b7996824e6969a2c0affeff861696958762550c5dde8dcc61c076a7cd5a202702ef4cf0
@@ -73,10 +73,10 @@ module Deliver
73
73
  return unless options[:metadata_path]
74
74
 
75
75
  default_app_icon_path = Dir[File.join(options[:metadata_path], "app_icon.{png,jpg}")].first
76
- options[:app_icon] ||= default_app_icon_path if File.exist?(default_app_icon_path)
76
+ options[:app_icon] ||= default_app_icon_path if default_app_icon_path && File.exist?(default_app_icon_path)
77
77
 
78
78
  default_watch_icon_path = Dir[File.join(options[:metadata_path], "watch_icon.{png,jpg}")].first
79
- options[:app_icon] ||= default_watch_icon_path if File.exist?(default_watch_icon_path)
79
+ options[:apple_watch_app_icon] ||= default_watch_icon_path if default_watch_icon_path && File.exist?(default_watch_icon_path)
80
80
  end
81
81
 
82
82
  # Upload the binary to iTunes Connect
Binary file
Binary file
@@ -18,7 +18,7 @@ import './path/to/other/Fastfile'
18
18
  <%- @categories.each do |category, actions| -%>
19
19
  - [<%= category %>](#<%= category.gsub(" ", "-").downcase %>)
20
20
  <%- end -%>
21
- - [Plugins](#Plugins)
21
+ - [Plugins](#plugins)
22
22
 
23
23
 
24
24
 
@@ -354,7 +354,7 @@ module Fastlane
354
354
  api_token: "...",
355
355
  create_update: true,
356
356
  public_identifier: "....",
357
- bundle_short_version: "1.0.2,
357
+ bundle_short_version: "1.0.2",
358
358
  bundle_version: "1.0.2.145",
359
359
  ipa: "./my.msi",
360
360
  notes: "Changelog"
@@ -30,17 +30,6 @@ module Fastlane
30
30
 
31
31
  return plugins
32
32
  end
33
-
34
- def self.update_md_file!(output_path: "docs/AvailablePlugins.md")
35
- @plugins = fetch_gems
36
-
37
- template_path = File.join(Fastlane::ROOT, "lib/assets/AvailablePlugins.md.erb")
38
- md = ERB.new(File.read(template_path), nil, '<>').result(binding) # http://www.rrn.dk/rubys-erb-templating-system
39
-
40
- puts md
41
- File.write(output_path, md)
42
- FastlaneCore::UI.success("Successfully written plugin file to '#{output_path}'")
43
- end
44
33
  end
45
34
 
46
35
  class FastlanePlugin
@@ -1,4 +1,4 @@
1
1
  module Fastlane
2
- VERSION = '2.15.0'.freeze
2
+ VERSION = '2.15.1'.freeze
3
3
  DESCRIPTION = "The easiest way to automate beta deployments and releases for your iOS and Android apps".freeze
4
4
  end
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.15.0
4
+ version: 2.15.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Felix Krause
@@ -14,7 +14,7 @@ authors:
14
14
  autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
- date: 2017-02-13 00:00:00.000000000 Z
17
+ date: 2017-02-14 00:00:00.000000000 Z
18
18
  dependencies:
19
19
  - !ruby/object:Gem::Dependency
20
20
  name: slack-notifier
@@ -753,10 +753,11 @@ files:
753
753
  - deliver/lib/deliver/upload_price_tier.rb
754
754
  - deliver/lib/deliver/upload_screenshots.rb
755
755
  - fastlane/README.md
756
+ - fastlane/lib/.DS_Store
757
+ - fastlane/lib/assets/.DS_Store
756
758
  - fastlane/lib/assets/Actions.md.erb
757
759
  - fastlane/lib/assets/AppfileTemplate
758
760
  - fastlane/lib/assets/AppfileTemplateAndroid
759
- - fastlane/lib/assets/AvailablePlugins.md.erb
760
761
  - fastlane/lib/assets/DefaultFastfileTemplate
761
762
  - fastlane/lib/assets/FastfileTemplateAndroid
762
763
  - fastlane/lib/assets/completions/completion.bash
@@ -1,24 +0,0 @@
1
- ### Available Plugins
2
-
3
- To get an up to date list of all available plugins run
4
-
5
- ```no-highlight
6
- fastlane search_plugins
7
- ```
8
-
9
- To search for a specific plugin
10
-
11
- ```no-highlight
12
- fastlane search_plugins [search_query]
13
- ```
14
-
15
- You can find more information about how to start using plugins in [Plugins.md](https://github.com/fastlane/fastlane/blob/master/fastlane/docs/Plugins.md).
16
-
17
- #### List of plugins
18
-
19
- | Plugin Name | Description | Downloads
20
- --------------|-------------|----------|----------
21
- <% @plugins.each do |current| %>
22
- <%= current.linked_title %> | <%= current.info %> | <%= current.downloads %>
23
-
24
- <% end %>