jekyll-favicon 0.2.5 → 0.2.6

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: 0f9e788acfa22c8c2b0142764e25df5af99e5304
4
- data.tar.gz: 026774aef1aeae4bdc655dc4d664fde79c96234b
3
+ metadata.gz: 829062a7c126927267b5f08fc5bdc9a7140ad0f9
4
+ data.tar.gz: 97800978bf740232d4c60a7aa536b5e0e9b4ec5b
5
5
  SHA512:
6
- metadata.gz: 384b59a8e14e74763c62ff19852965dbb3887b215769458b53d34c5a67aed74acf04e08173ad055bcbccf274823d08b02a25a0eb9aea96e096a4610e49778514
7
- data.tar.gz: 7a96ad07d6411cb2590d993a3808fc970a356db6f50c02423c42c140f453c64c4d3cc85df874a7cf70399d7b7ff0fa822175a75ef7d575998697666458ccdddd
6
+ metadata.gz: af184fd8af5f1652b5f377c42812f0e2423f1d1a5d27c2de2cf491a2cb6c1cb89f013a9980084ceecee155cbcacbd8ff8d4627fadf4aed259c24bdce17369c3d
7
+ data.tar.gz: ba0f65a228219884b4fce639d4a4ffa02e26fa44575d3cede4efd961f1a052d83c4bbc2df48110c74b9330d36ec740d1e34473b656a75fa970dbdb89801e7b09
@@ -0,0 +1 @@
1
+ 2.1.0
@@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
6
6
 
7
7
  ## [Unreleased]
8
8
 
9
+ ## [0.2.6] - 2019-03-23
10
+ ### Added
11
+ - Readme troubleshooting for librsvg2-bin package missing
12
+ ### Fixed
13
+ - ICO convert uses background config
14
+
9
15
  ## [0.2.5] - 2019-01-16
10
16
  ### Changed
11
17
  - Strike GraphicsMagick at Readme because it's compatible a this moment
@@ -1,18 +1,18 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- jekyll-favicon (0.2.5)
4
+ jekyll-favicon (0.2.6)
5
5
  jekyll (~> 3.0)
6
6
  mini_magick (~> 4.5)
7
7
 
8
8
  GEM
9
9
  remote: https://rubygems.org/
10
10
  specs:
11
- addressable (2.5.2)
11
+ addressable (2.6.0)
12
12
  public_suffix (>= 2.0.2, < 4.0)
13
13
  ast (2.4.0)
14
14
  colorator (1.1.0)
15
- concurrent-ruby (1.1.4)
15
+ concurrent-ruby (1.1.5)
16
16
  em-websocket (0.5.1)
17
17
  eventmachine (>= 0.12.9)
18
18
  http_parser.rb (~> 0.6.0)
@@ -40,12 +40,12 @@ GEM
40
40
  jekyll-watch (2.0.0)
41
41
  listen (~> 3.0)
42
42
  kramdown (1.17.0)
43
- liquid (4.0.1)
43
+ liquid (4.0.3)
44
44
  listen (3.0.8)
45
45
  rb-fsevent (~> 0.9, >= 0.9.4)
46
46
  rb-inotify (~> 0.9, >= 0.9.7)
47
47
  mercenary (0.3.6)
48
- mini_magick (4.9.2)
48
+ mini_magick (4.9.3)
49
49
  mini_portile2 (2.3.0)
50
50
  minitest (5.11.3)
51
51
  minitest-hooks (1.5.0)
@@ -73,7 +73,7 @@ GEM
73
73
  ruby-progressbar (~> 1.7)
74
74
  unicode-display_width (~> 1.0, >= 1.0.1)
75
75
  ruby-progressbar (1.10.0)
76
- safe_yaml (1.0.4)
76
+ safe_yaml (1.0.5)
77
77
  sass (3.7.3)
78
78
  sass-listen (~> 4.0.0)
79
79
  sass-listen (4.0.0)
data/README.md CHANGED
@@ -24,12 +24,18 @@ Features: Cipher DPC HDRI Modules
24
24
  Delegates (built-in): bzlib freetype jng jpeg ltdl lzma png tiff xml zlib
25
25
  ```
26
26
 
27
+ If you have a [problem converting SVG files](https://github.com/afaundez/jekyll-favicon/issues/9#issuecomment-473862194), you may need to install the package `librsvg2-bin`. For example, in Ubuntu/Debian systems:
28
+
29
+ ```sh
30
+ sudo apt install librsvg2-bin
31
+ ```
32
+
27
33
  ## Installation
28
34
 
29
35
  Add this line to your application's Gemfile:
30
36
 
31
37
  ```ruby
32
- gem 'jekyll-favicon', '~> 0.2.5', group: :jekyll_plugins
38
+ gem 'jekyll-favicon', '~> 0.2.6', group: :jekyll_plugins
33
39
  ```
34
40
 
35
41
  ## Usage
@@ -57,7 +57,6 @@ module Jekyll
57
57
  options = {}
58
58
  sizes = Favicon.config['ico']['sizes']
59
59
  options[:background] = background_for sizes.first
60
- options[:alpha] = 'off'
61
60
  options[:resize] = sizes.first
62
61
  ico_sizes = sizes.collect { |size| size.split('x').first }.join ','
63
62
  options[:define] = "icon:auto-resize=#{ico_sizes}"
@@ -1,5 +1,5 @@
1
1
  module Jekyll
2
2
  module Favicon
3
- VERSION = '0.2.5'.freeze
3
+ VERSION = '0.2.6'.freeze
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-favicon
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.5
4
+ version: 0.2.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Alvaro Faundez
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2019-01-16 00:00:00.000000000 Z
11
+ date: 2019-03-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -147,6 +147,7 @@ files:
147
147
  - ".github/PULL_REQUEST_TEMPLATE.md"
148
148
  - ".gitignore"
149
149
  - ".rubocop.yml"
150
+ - ".ruby-version"
150
151
  - ".travis.yml"
151
152
  - CHANGELOG.md
152
153
  - CODE_OF_CONDUCT.md