jekyll_picture_tag 1.10.0 → 1.10.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/docs/installation.md +1 -1
- data/docs/releases.md +2 -0
- data/lib/jekyll_picture_tag/instructions/configuration.rb +1 -1
- data/lib/jekyll_picture_tag/version.rb +1 -1
- data/readme.md +3 -1
- metadata +6 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f8139b8ad99ab1d17326fa0a36b19660211d2eeaaf2f013bde294e5c0fd985d1
|
4
|
+
data.tar.gz: f1b4e609115cd6a27c7438a5bffe7bd954ad193f21c87e5e6804b4d3c4261338
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c5a51b1438f0dcdd3ccd00925208e56fe740762451cc9c60603204a044595525f44e47285e2b6bc7b9f2f99c644b2d98fd0401f6639a58163cd1334b22a6cd95
|
7
|
+
data.tar.gz: fb823ff0aef8a29989495663e3d108add494609e9c7956865d379fb8a5b05aa79e9a66fb504f073ae204631b3b9dd9a502fc3a13763d6b9d3e6af5384d70c470
|
data/docs/installation.md
CHANGED
@@ -39,7 +39,7 @@ build & deployment services you might use (including Netlify and Travis CI) do.
|
|
39
39
|
If you'd like to use both the cropping feature and such a service, or it's inconvenient to install
|
40
40
|
version 7 in your development environment, you will likely want to build your site in a docker
|
41
41
|
container. The Alpine Linux repos include version 7, so you'll want an Alpine Linux based image
|
42
|
-
rather than an Ubuntu based one.
|
42
|
+
rather than an Ubuntu based one. Conveniently this includes the [offical Jekyll
|
43
43
|
image](https://hub.docker.com/r/jekyll/jekyll).
|
44
44
|
|
45
45
|
Once I work out how to actually do that, I'll add some guidance here.
|
data/docs/releases.md
CHANGED
@@ -30,7 +30,7 @@ module PictureTag
|
|
30
30
|
# source_dest is the jekyll-picture-tag destination directory. (generated
|
31
31
|
# file location setting.)
|
32
32
|
def dest_dir
|
33
|
-
File.join PictureTag.site.
|
33
|
+
File.join PictureTag.site.config['destination'], pconfig['output']
|
34
34
|
end
|
35
35
|
|
36
36
|
def nomarkdown?
|
data/readme.md
CHANGED
@@ -41,12 +41,14 @@ https://rbuchberger.github.io/jekyll_picture_tag/
|
|
41
41
|
|
42
42
|
https://rbuchberger.github.io/jekyll_picture_tag/releases
|
43
43
|
|
44
|
-
Latest
|
44
|
+
Latest versions:
|
45
45
|
|
46
46
|
* 1.10.0 May 11, 2020
|
47
47
|
* **Image Cropping support!** access the power of ImageMagick's `crop` function.
|
48
48
|
* Don't issue a warning when `default` preset is not found.
|
49
49
|
* Documentation improvements
|
50
|
+
* 1.10.1 July 2, 2020
|
51
|
+
* Bugfix for erroneously regenerated images
|
50
52
|
|
51
53
|
## Help Wanted
|
52
54
|
|
metadata
CHANGED
@@ -1,16 +1,16 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jekyll_picture_tag
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.10.
|
4
|
+
version: 1.10.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Robert Wierzbowski
|
8
8
|
- Brendan Tobolaski
|
9
9
|
- Robert Buchberger
|
10
|
-
autorequire:
|
10
|
+
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date: 2020-
|
13
|
+
date: 2020-07-02 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: bundler
|
@@ -299,7 +299,7 @@ homepage: https://github.com/rbuchberger/jekyll_picture_tag
|
|
299
299
|
licenses:
|
300
300
|
- BSD-3-Clause
|
301
301
|
metadata: {}
|
302
|
-
post_install_message:
|
302
|
+
post_install_message:
|
303
303
|
rdoc_options: []
|
304
304
|
require_paths:
|
305
305
|
- lib
|
@@ -317,8 +317,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
317
317
|
- !ruby/object:Gem::Version
|
318
318
|
version: '0'
|
319
319
|
requirements: []
|
320
|
-
rubygems_version: 3.1.
|
321
|
-
signing_key:
|
320
|
+
rubygems_version: 3.1.4
|
321
|
+
signing_key:
|
322
322
|
specification_version: 4
|
323
323
|
summary: Easy responsive images for Jekyll.
|
324
324
|
test_files: []
|