fastlane-plugin-appicon 0.13.0 → 0.14.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 +5 -5
- data/README.md +10 -1
- data/lib/fastlane/plugin/appicon/actions/appicon_action.rb +11 -1
- data/lib/fastlane/plugin/appicon/version.rb +1 -1
- metadata +5 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: 1007834da56cce3112cc249f54bdde5ad1e592a6167116c91575efe779df6da9
|
|
4
|
+
data.tar.gz: c617cbfb8716f2c01b60d9c2bba0c2f50dd6d7c113846fb126edbe0bf0b90125
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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
|
|
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' => [
|
|
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 => {
|
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.
|
|
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-
|
|
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/
|
|
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.
|
|
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.
|