fastlane-plugin-appicon 0.5.2 → 0.6.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 +4 -4
- data/README.md +11 -1
- data/lib/fastlane/plugin/appicon/actions/appicon_action.rb +2 -1
- data/lib/fastlane/plugin/appicon/version.rb +1 -1
- metadata +4 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c0d2778c40b10ae4ddb7fd9381c2a0a6513b2c77
|
|
4
|
+
data.tar.gz: d204776ca0b0f21920ce023a9fe6dd7c87cf1799
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: fc491962258e317f0077a4e52a0bbdc99065ebaa88a69cc1d24f44893692c430251abd50464b447f2c9d5ad86c19678fbb01ab3b2dc9ad77053ac21e364ad595
|
|
7
|
+
data.tar.gz: 5a1a8f58b3547ce3dbb53a9fe1d9b575b6c2f48c7539fcb797a906e0b7f995189a4f00936b20b4f8c5413cfaa05611a7ed15619496db5b0366a1b233f3af0ccb
|
data/README.md
CHANGED
|
@@ -32,6 +32,16 @@ end
|
|
|
32
32
|
|
|
33
33
|
# or
|
|
34
34
|
|
|
35
|
+
lane :test2 do
|
|
36
|
+
# `appicon_image_file` defaults to "fastlane/metadata/app_icon.png"
|
|
37
|
+
appicon(
|
|
38
|
+
appicon_devices: [:iphone],
|
|
39
|
+
appicon_path: 'wwdcfamily/Images.xcassets' # output path
|
|
40
|
+
)
|
|
41
|
+
end
|
|
42
|
+
|
|
43
|
+
# or
|
|
44
|
+
|
|
35
45
|
lane :android do
|
|
36
46
|
android_appicon(appicon_image_file: 'spec/fixtures/Themoji.png',
|
|
37
47
|
appicon_devices: [:phone, :tablet],
|
|
@@ -43,7 +53,7 @@ end
|
|
|
43
53
|
|
|
44
54
|
To run both the tests, and code style validation, run
|
|
45
55
|
|
|
46
|
-
|
|
56
|
+
```
|
|
47
57
|
rake
|
|
48
58
|
```
|
|
49
59
|
|
|
@@ -78,7 +78,8 @@ module Fastlane
|
|
|
78
78
|
env_name: "APPICON_IMAGE_FILE",
|
|
79
79
|
description: "Path to a square image file, at least 1024x1024",
|
|
80
80
|
optional: false,
|
|
81
|
-
type: String
|
|
81
|
+
type: String,
|
|
82
|
+
default_value: Dir["fastlane/metadata/app_icon.png"].last), # that's the default when using fastlane to manage app metadata
|
|
82
83
|
FastlaneCore::ConfigItem.new(key: :appicon_devices,
|
|
83
84
|
env_name: "APPICON_DEVICES",
|
|
84
85
|
default_value: [:iphone],
|
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.
|
|
4
|
+
version: 0.6.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-
|
|
11
|
+
date: 2017-04-09 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: mini_magick
|
|
@@ -154,8 +154,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
154
154
|
version: '0'
|
|
155
155
|
requirements: []
|
|
156
156
|
rubyforge_project:
|
|
157
|
-
rubygems_version: 2.6.
|
|
157
|
+
rubygems_version: 2.6.10
|
|
158
158
|
signing_key:
|
|
159
159
|
specification_version: 4
|
|
160
160
|
summary: Generate required icon sizes and iconset from a master application icon.
|
|
161
161
|
test_files: []
|
|
162
|
+
has_rdoc:
|