fastlane-plugin-appicon 0.7.0 → 0.8.0

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: e9ea554d75a2c7d5d1d2dce585ba23d52b166756
4
- data.tar.gz: 6e8971f28291224730c19ea9d460a4257e15f5b0
3
+ metadata.gz: 9c20ba209d999b4409c057d83d568290467c9eb7
4
+ data.tar.gz: 40456ca83c300573379ff2641bc22c23a9b7a33b
5
5
  SHA512:
6
- metadata.gz: 15f8271515484214a574753a08611d21c5c11ce4554abd7276768bb29894039453945eba33e7232b97a3a3ef603bf37392226b8ebec2ac23f7847b729a1f1d4e
7
- data.tar.gz: 1cb9392d6e07cd8652666094bbe9023f54e0ca7351413555397e39a8720b5cc920e72f8434e116a2ba87d227ab81c7727a6e533c9db04f5656a292ac15b41da0
6
+ metadata.gz: 32a524b7f696c78bf7f3f5dd1add57f2e5fcb7649e47151a0b38f3f65a0a850bc13b8fe6ac3ee071e614006293966bd16f28b1eab7380883b28af486deb29f5a
7
+ data.tar.gz: b79dc62bb072e8e7a920659f9c79c3dd379c77c0cd4b472e6823f304f1da96df9ab75ce51a956bc0fb731b2992bac725088a96e344beab43c36e19d3484064b7
data/README.md CHANGED
@@ -27,7 +27,7 @@ Just specify the source image using the `appicon_image_file`. Optionally specify
27
27
  ```ruby
28
28
  lane :test do
29
29
  appicon(appicon_image_file: 'spec/fixtures/Themoji.png',
30
- appicon_devices: [:ipad, :iphone])
30
+ appicon_devices: [:ipad, :iphone, :ios_marketing])
31
31
  end
32
32
 
33
33
  # or
@@ -10,6 +10,9 @@ module Fastlane
10
10
  ipad: {
11
11
  '1x' => ['20x20', '29x29', '40x40', '76x76'],
12
12
  '2x' => ['20x20', '29x29', '40x40', '76x76', '83.5x83.5']
13
+ },
14
+ :ios_marketing => {
15
+ '1x' => ['1024x1024']
13
16
  }
14
17
  }
15
18
  end
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module Appicon
3
- VERSION = "0.7.0"
3
+ VERSION = "0.8.0"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastlane-plugin-appicon
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.0
4
+ version: 0.8.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Boris Bügling
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-07-06 00:00:00.000000000 Z
11
+ date: 2017-09-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: mini_magick
@@ -155,7 +155,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
155
155
  version: '0'
156
156
  requirements: []
157
157
  rubyforge_project:
158
- rubygems_version: 2.6.8
158
+ rubygems_version: 2.6.10
159
159
  signing_key:
160
160
  specification_version: 4
161
161
  summary: Generate required icon sizes and iconset from a master application icon.