jekyll-favicon 1.0.0.pre.3 → 1.0.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
  SHA256:
3
- metadata.gz: 2143f5ca47523996edd21924f528455195a44924ce70ff0769bff1a1945c5e1d
4
- data.tar.gz: b51d9acfbad24d42d244a0e2d0cf992eb2f1c3e22742228887a1da08893d1444
3
+ metadata.gz: 24f6bd5b0b3ce385c2ba309344e5852a5e0766121fd7b8e5b5692b2fbf57a719
4
+ data.tar.gz: fb9071c07d3a9319454ff68f1bf4203971ac56e0abfc51890269647e1f6b6500
5
5
  SHA512:
6
- metadata.gz: eeb8f081b15aba2072554ced2a44838b59405aa6e4c1cd56e4cb605bf98eda5a27cd54c78d2ebeaebdb4f8bd03b18da10558f76a2a9c6c37b88a31faf309a820
7
- data.tar.gz: 0203d4422b676347b4d398735201dc38b238113176e8d8f80af8e86acee013d13bea905070d79e6154ece2dec095583b33b9e8fc8d26f3dad544ad589ffe9bc9
6
+ metadata.gz: 8959b2b93e8d89f97ea4b62a307e700d74fa60e75f8a807886cb0b3d9f607aed3d8a876181039bec09e30ad78dda561a715d4c7c1ce3222141d145b28d51cdbe
7
+ data.tar.gz: 8c45c622de3aa0b7beb0d2d2680e9c2539028901a5e73d1ca9d42c09b509132679cf1af9576a83e0ba1db9fc16918de0c44f0c375b7f8ec59ea876f051dba07a
data/.gitignore CHANGED
@@ -11,3 +11,4 @@
11
11
  *.gem
12
12
  Gemfile.lock
13
13
  *.gemfile.lock
14
+ .DS_Store
data/CHANGELOG.md CHANGED
@@ -4,17 +4,21 @@ All notable changes to Jekyll-Favicon will be documented in this file.
4
4
  The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
5
5
  and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
6
6
 
7
- ## [Unreleased]
8
-
9
- ## [1.0.0.pre.3] - 2021-06-12
10
- ### Fixed
11
- - fix SVG to PNG quality
12
-
13
- ## [1.0.0.pre.2] - 2021-06-11
7
+ ## [1.0.0] - 2021-08-13
8
+ ### Added
9
+ - gitignore Gemfile.lock
10
+ - gitignore .jekyll-cache
11
+ - Add Test github action workflow
12
+ - Regenration
13
+ ### Changed
14
+ - Move supported ruby versions to 2.5
15
+ - Update nokogiri, minitest, and minitest-hooks gemspec's development dependencies
16
+ - Update mini_magick gemspec's runtime dependencies
17
+ - Update travis rvm versions
18
+ - Rename Gem Push github action workflow
14
19
  ### Fixed
15
20
  - mime time error when starting new project
16
-
17
- ## [1.0.0.pre.1] - 2021-05-26
21
+ - fix SVG to PNG quality
18
22
  ### Removed
19
23
  - Delete Gemfile.lock
20
24
  - Delete .ruby-version
@@ -23,17 +27,6 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
23
27
  - Remove graphicmagick from travis config
24
28
  - Remove travis-ci config
25
29
  - Remove nokogiri gemspec development dependency
26
- ### Changed
27
- - Move supported ruby versions to 2.5
28
- - Update nokogiri, minitest, and minitest-hooks gemspec's development dependencies
29
- - Update mini_magick gemspec's runtime dependencies
30
- - Update travis rvm versions
31
- - Rename Gem Push github action workflow
32
- ### Added
33
- - gitignore Gemfile.lock
34
- - gitignore .jekyll-cache
35
- - Add Test github action workflow
36
- - Regenration
37
30
 
38
31
  ## [0.2.9] - 2021-02-10
39
32
  ### Added
data/README.md CHANGED
@@ -2,17 +2,17 @@
2
2
 
3
3
  This [Jekyll](https://jekyllrb.com) plugin adds:
4
4
 
5
- - a generator for
6
- - an ICO favicon
7
- - PNG favicons
8
- - SVG favicons
9
- - a [webmanifest](https://developer.mozilla.org/en-US/docs/Web/Manifest)
10
- - a [browser configuration schema](https://docs.microsoft.com/en-us/previous-versions/windows/internet-explorer/ie-developer/platform-apis/dn320426%28v=vs.85%29)
11
- - a tag to generate all the corresponding links and metadata needed in the head tag
5
+ - a generator for favicons (ICO, PNG, SVG), [webmanifests]((https://developer.mozilla.org/en-US/docs/Web/Manifest)), and [browserconfig]((https://docs.microsoft.com/en-us/previous-versions/windows/internet-explorer/ie-developer/platform-apis/dn320426%28v=vs.85%29)) files
6
+ - a tag for the rendinering of all the corresponding links and metadata needed
7
+
8
+ Tested with:
9
+
10
+ - Jekyll 3.6 to 3.7, ruby 2.6 to 2.7
11
+ - Jekyll 3.8 to 4.2, ruby 2.6 to 3.0
12
12
 
13
13
  ## Prerequisites
14
14
 
15
- This plugin assumes you have [ImageMagick](http://www.imagemagick.org) installed.
15
+ ### [ImageMagick](http://www.imagemagick.org)
16
16
 
17
17
  Check if it is already installed by running:
18
18
 
@@ -21,13 +21,15 @@ $ convert --version | grep Version
21
21
  Version: ImageMagick 7.0.8-46 Q16 x86_64 2019-05-19 https://imagemagick.org
22
22
  ```
23
23
 
24
- 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:
24
+ ### [librsvg](https://gitlab.gnome.org/GNOME/librsvg) (optional)
25
+
26
+ If you are having pixeled icons or 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:
25
27
 
26
28
  ```sh
27
29
  sudo apt install librsvg2-bin
28
30
  ```
29
31
 
30
- You may need to install ImageMagick after installing the RSVG renderer.
32
+ You may need to install `librsvg` before installing the RSVG renderer.
31
33
 
32
34
  Check the devcontainer's [Dockerfile](.devcontainer/Dockerfile) for more practical details.
33
35
 
@@ -36,19 +38,15 @@ Check the devcontainer's [Dockerfile](.devcontainer/Dockerfile) for more practic
36
38
  Add this line to your application's Gemfile:
37
39
 
38
40
  ```ruby
39
- gem 'jekyll-favicon', '~> 1.0.0.pre.3', group: :jekyll_plugins
41
+ gem 'jekyll-favicon', '~> 1.0.0', group: :jekyll_plugins
40
42
  ```
41
43
 
42
44
  ## Usage
43
45
 
44
- If you are going to use this plugin in a hosted build/service, be sure that they include your plugins as part of the process. You can check [this running example](https://afaundez.gitlab.io/jekyll-favicon-example/) hosted by [GitLab](https://about.gitlab.com/features/pages/).
45
-
46
- As [Github Pages](https://pages.github.com) build doesn't load custom plugins, this plugin won't work. As an alternative, you can build your site and push all files (for example, build to `docs`, version it and push it, although this works only for project pages).
46
+ If you are going to use this plugin in a hosted build/service, be sure that they include your plugins as part of the process. You can check [gh-pages](/afaundez/jekyll-favicon/tree/gh-pages) branch for a working example.
47
47
 
48
- Tested with:
48
+ As [Github Pages](https://pages.github.com) doesn't load custom plugins, this plugin won't be included on the build process. As a workaround, you can build your site and push all files (for example, build to `docs`, version it and push it, although this works only for project pages).
49
49
 
50
- - Jekyll 3.6 to 3.7, ruby 2.6 to 2.7
51
- - Jekyll 3.8 to 4.2, ruby 2.6 to 3.0
52
50
 
53
51
  ### Generator
54
52
 
@@ -141,10 +139,8 @@ The refer configuration is a list of hashes with only one key, `webmanifest` or
141
139
 
142
140
  If you want to add something, just make a PR. There is a lot to do:
143
141
 
144
- - Define and check SVG/PNG attributes before execute
145
- - Review SVG to PNG conversion, it working as it is, but some parameters are hardcoded and may only work with the samples
146
- - Encapsulate image conversion
147
- - Tests everywhere
142
+ - Tests more cases
143
+ - Keep updated the favicons and files needed with modern browsers
148
144
 
149
145
  ## Contributing
150
146
 
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Jekyll
4
4
  module Favicon
5
- VERSION = "1.0.0-3"
5
+ VERSION = "1.0.0"
6
6
  end
7
7
  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: 1.0.0.pre.3
4
+ version: 1.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Alvaro Faundez
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2021-06-12 00:00:00.000000000 Z
11
+ date: 2021-08-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: minitest
@@ -195,9 +195,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
195
195
  version: 2.5.0
196
196
  required_rubygems_version: !ruby/object:Gem::Requirement
197
197
  requirements:
198
- - - ">"
198
+ - - ">="
199
199
  - !ruby/object:Gem::Version
200
- version: 1.3.1
200
+ version: '0'
201
201
  requirements: []
202
202
  rubyforge_project:
203
203
  rubygems_version: 2.7.6.3