fastlane-plugin-appicon 0.13.0 → 0.14.0

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
- SHA1:
3
- metadata.gz: b1d837a5eb5f97a04836ee13f22602e2d611ad0c
4
- data.tar.gz: b538ce5bcc2644864b86ca97111908f1e8fcb778
2
+ SHA256:
3
+ metadata.gz: 1007834da56cce3112cc249f54bdde5ad1e592a6167116c91575efe779df6da9
4
+ data.tar.gz: c617cbfb8716f2c01b60d9c2bba0c2f50dd6d7c113846fb126edbe0bf0b90125
5
5
  SHA512:
6
- metadata.gz: f8c1c0c24632050a09dd46cd161350fa7d88129a9586b3ced292172ca3ea25ff19d1b0b3bce4473a76272594da1b8c20468ce16e659f8a50a29d5c4605383b08
7
- data.tar.gz: a4a6d9064eaaeb7f08b003b524a56844e382e4c2ff13cc2c9d140fd1dd6d93e7afdda9dbf1a409e2afb6f72a4e71fb3acf1d329468ef2da31da44e866137169a
6
+ metadata.gz: d620efc24a5eac022d27d283b688ceda946b778ad2daef9d8ba9a932183a738af3df3113eba968fe30886e6432c4ad07fe9dbc40543d27ecd98a48d1e2d97634
7
+ data.tar.gz: 9a29cf05493fac4d9cb18dd977b4a697c491f4e898eb83cc7a02d32683c38badf1da1967ea4eff908390ccb08f779cd2d92a8737d1bc0b4b8735996229d8afc9
data/README.md CHANGED
@@ -28,9 +28,18 @@ Since many apps use a single 1024x1024 icon to produce all the required sizes fr
28
28
 
29
29
  Check out the [example `Fastfile`](fastlane/Fastfile) to see how to use this plugin. Try it by cloning the repo, running `fastlane install_plugins` and `bundle exec fastlane test`.
30
30
 
31
- Just specify the source image using the `appicon_image_file`. Optionally specify the devices using `appicon_devices` and the destination path using `appicon_path`.
31
+ Just specify the source image using the `appicon_image_file`. Optionally specify the devices using `appicon_devices` and the destination path using `appicon_path`.
32
+
33
+ We recommend storing the full-size picture at `fastlane/metadata/app_icon.png` so it can be picked up by _deliver_, as well as this plugin
32
34
 
33
35
  ```ruby
36
+ lane :basic do
37
+ appicon(
38
+ appicon_devices: [:ipad, :iphone, :ios_marketing],
39
+ appicon_path: "MajorKey/Assets.xcassets"
40
+ )
41
+ end
42
+
34
43
  lane :test1 do
35
44
  appicon(appicon_image_file: 'spec/fixtures/Themoji.png',
36
45
  appicon_devices: [:ipad, :iphone, :ios_marketing])
@@ -15,7 +15,17 @@ module Fastlane
15
15
  '1x' => ['1024x1024']
16
16
  },
17
17
  :watch => {
18
- '2x' => [['24x24', 'notificationCenter', '38mm'], ['27.5x27.5', 'notificationCenter', '42mm'], ['29x29', 'companionSettings'], ['40x40', 'appLauncher', '38mm'], ['86x86', 'quickLook', '38mm'], ['98x98', 'quickLook', '42mm']],
18
+ '2x' => [
19
+ ['24x24', 'notificationCenter', '38mm'],
20
+ ['27.5x27.5', 'notificationCenter', '42mm'],
21
+ ['29x29', 'companionSettings'],
22
+ ['40x40', 'appLauncher', '38mm'],
23
+ ['44x44', 'appLauncher', '40mm'],
24
+ ['50x50', 'appLauncher', '44mm'],
25
+ ['86x86', 'quickLook', '38mm'],
26
+ ['98x98', 'quickLook', '42mm'],
27
+ ['108x108', 'quickLook', '44mm']
28
+ ],
19
29
  '3x' => [['29x29', 'companionSettings']]
20
30
  },
21
31
  :watch_marketing => {
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module Appicon
3
- VERSION = "0.13.0"
3
+ VERSION = "0.14.0"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,15 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastlane-plugin-appicon
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.13.0
4
+ version: 0.14.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Boris Bügling
8
+ - Felix Krause
8
9
  autorequire:
9
10
  bindir: bin
10
11
  cert_chain: []
11
- date: 2018-05-01 00:00:00.000000000 Z
12
+ date: 2018-11-27 00:00:00.000000000 Z
12
13
  dependencies:
13
14
  - !ruby/object:Gem::Dependency
14
15
  name: mini_magick
@@ -135,7 +136,7 @@ files:
135
136
  - lib/fastlane/plugin/appicon/actions/appicon_action.rb
136
137
  - lib/fastlane/plugin/appicon/helper/appicon_helper.rb
137
138
  - lib/fastlane/plugin/appicon/version.rb
138
- homepage: https://github.com/neonichu/fastlane-plugin-appicon
139
+ homepage: https://github.com/KrauseFx/fastlane-plugin-appicon
139
140
  licenses:
140
141
  - MIT
141
142
  metadata: {}
@@ -155,7 +156,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
155
156
  version: '0'
156
157
  requirements: []
157
158
  rubyforge_project:
158
- rubygems_version: 2.6.10
159
+ rubygems_version: 2.7.7
159
160
  signing_key:
160
161
  specification_version: 4
161
162
  summary: Generate required icon sizes and iconset from a master application icon.