fastlane-plugin-appicon 0.12.0 → 0.13.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
2
  SHA1:
3
- metadata.gz: 638ee204f30b9aa9cea411e2ef03ff371a7b642a
4
- data.tar.gz: 8d5313d9a5d87b2ae4f27231d35337758eb4be53
3
+ metadata.gz: b1d837a5eb5f97a04836ee13f22602e2d611ad0c
4
+ data.tar.gz: b538ce5bcc2644864b86ca97111908f1e8fcb778
5
5
  SHA512:
6
- metadata.gz: f0058b646b2e9ec09692bba049690f81da92656dd4e7f9bdf8d3381877ed1fd1e280fba4b62035e7e412f032f9511a33ba10b3173205f5ec23583c9c802e500b
7
- data.tar.gz: df1cfd5369ebd1c956e0ca6357192c29e02babe323c37c8e82385160b65da9c0a44d532be5c7c784278af2f8636fae093439d9f92be4eb992ec2208779bf1b66
6
+ metadata.gz: f8c1c0c24632050a09dd46cd161350fa7d88129a9586b3ced292172ca3ea25ff19d1b0b3bce4473a76272594da1b8c20468ce16e659f8a50a29d5c4605383b08
7
+ data.tar.gz: a4a6d9064eaaeb7f08b003b524a56844e382e4c2ff13cc2c9d140fd1dd6d93e7afdda9dbf1a409e2afb6f72a4e71fb3acf1d329468ef2da31da44e866137169a
data/README.md CHANGED
@@ -12,6 +12,12 @@ This project is a [fastlane](https://github.com/fastlane/fastlane) plugin. To ge
12
12
  fastlane add_plugin appicon
13
13
  ```
14
14
 
15
+ Please note that this plugin uses the GraphicsMagick library. If you do not have it, you can install it via Homebrew:
16
+
17
+ ```
18
+ brew install graphicsmagick
19
+ ```
20
+
15
21
  ## About appicon
16
22
 
17
23
  Generate required icon sizes and iconset from a master application icon.
@@ -56,7 +62,7 @@ lane :android do
56
62
  appicon_image_file: 'spec/fixtures/ThemojiNotification.png',
57
63
  appicon_icon_types: [:notification],
58
64
  appicon_path: 'app/res/drawable',
59
- appicon_name: 'ic_notification'
65
+ appicon_filename: 'ic_notification'
60
66
  )
61
67
  end
62
68
  ```
@@ -84,7 +84,7 @@ module Fastlane
84
84
  }
85
85
 
86
86
  require 'json'
87
- File.write(File.join(basepath, 'Contents.json'), JSON.dump(contents))
87
+ File.write(File.join(basepath, 'Contents.json'), JSON.pretty_generate(contents))
88
88
  UI.success("Successfully stored app icon at '#{basepath}'")
89
89
  end
90
90
 
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module Appicon
3
- VERSION = "0.12.0"
3
+ VERSION = "0.13.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.12.0
4
+ version: 0.13.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: 2018-01-25 00:00:00.000000000 Z
11
+ date: 2018-05-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: mini_magick