jekyll_picture_tag 2.1.1 → 2.1.2

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: 30a2a1abb695fc9b9478a3b5a89d9d04fcac60bc2f26be01e75ab8bd986ca066
4
- data.tar.gz: 790b247444046c015fcb64e791b5ae63bc861e7fa94ef471bcda730912cf30ac
3
+ metadata.gz: 9c2eba1d97111de1ef819824525ee40dadc297235b0d9a723e50292aca614277
4
+ data.tar.gz: 2b50ae28f44441be8b41329cc488d99afb68954f13b3292af1bac90e1cbc9fad
5
5
  SHA512:
6
- metadata.gz: 8a189f75d899129943f345cc002c2513f82845725b9de682dc17d6ff4e7db157647743ad09ca0bbba66ff1650e41a38b9f066c6523bf929b73f1cba6e2f3bcde
7
- data.tar.gz: 7118cd37ec049eb909147ad17d8a43e37181aa36f38f76f2a7f9fcb542b6d5a79926a4a8d2e6f2e78e80e789845a41fa5f16508d572e50c26eacc87d0d31450e
6
+ metadata.gz: 8b9be36209c87b8475377e7f76117f1d0ac042d885f10e46f49a757d18af751a5df4953b2bd85ebbe94af77fd878e8a425394e713c181573e71d2c00c53be8f0
7
+ data.tar.gz: 1c7a556b2f1bc1b0a29010e9c7a8c484df86b049ac0247d831b23b7c58478f3b0a54a07df014b126af727d4f110677f0c366a83712b9f10b8229b3b9dbb7f8eb
@@ -2,12 +2,9 @@ name: 'Tests & Formatting'
2
2
 
3
3
  on:
4
4
  push:
5
- branches: [ master ]
5
+ branches: [master]
6
6
  pull_request:
7
- branches: [ master ]
8
- schedule:
9
- # Run weekly; github deletes caches that haven't been used in a week.
10
- - cron: '0 0 * * 0'
7
+ branches: [master]
11
8
 
12
9
  jobs:
13
10
  checks:
@@ -2,6 +2,8 @@
2
2
  ---
3
3
  # Release History
4
4
 
5
+ * 2.1.2 13 September, 2024
6
+ * Remove overly specific version spec for ruby-vips - thanks to [@hschne](https://github.com/hschne) for [#313](https://github.com/rbuchberger/jekyll_picture_tag/pull/313)
5
7
  * 2.1.1 20 July, 2024
6
8
  * Don't provide Q setting for PPM images - thanks to @dichiban for [#309](https://github.com/rbuchberger/jekyll_picture_tag/pull/309)
7
9
  * Fix alpha premultiplication - thanks to @KaarlisCaune for [#302](https://github.com/rbuchberger/jekyll_picture_tag/pull/302)
data/docs/index.md CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  ---
3
3
 
4
- ![](logo.svg)
4
+ ![](logo.png)
5
5
 
6
6
  _Responsive Images, Done Correctly._
7
7
 
data/docs/logo.png CHANGED
Binary file
@@ -38,7 +38,7 @@ Gem::Specification.new do |spec|
38
38
  # rainbow is used to colorize terminal output.
39
39
  spec.add_runtime_dependency 'rainbow', '~> 3.0'
40
40
  # ruby-vips interfaces with libvips.
41
- spec.add_runtime_dependency 'ruby-vips', '~> 2.0.17'
41
+ spec.add_runtime_dependency 'ruby-vips', '~> 2.2'
42
42
 
43
43
  # libvips handles all image processing operations.
44
44
  spec.requirements << 'libvips'
@@ -1,3 +1,3 @@
1
1
  module PictureTag
2
- VERSION = '2.1.1'.freeze
2
+ VERSION = '2.1.2'.freeze
3
3
  end
data/readme.md CHANGED
@@ -1,31 +1,18 @@
1
1
  # Jekyll Picture Tag
2
2
 
3
- ## Help Wanted
4
-
5
- My life just got a lot busier; I'd really like a maintainer or two to help. I'm not abandoning JPT,
6
- I just don't have a ton of time to put into hacking on it.
7
-
8
- If you've been learning Ruby and you want to move beyond tutorials and throwaway projects, I'd love
9
- to hear from you. I'd be happy to help you gain experience and credibility, if you're willing to
10
- help me maintain this project!
11
-
12
- If you're interested, contact me: robert@buchberger.cc
13
-
14
- ![Logo](docs/logo.svg)
15
-
16
- ![Tests & Formatting](https://github.com/rbuchberger/jekyll_picture_tag/workflows/Tests%20&%20Formatting/badge.svg)
17
-
18
3
  **Responsive Images done correctly.**
19
4
 
20
- It's simple to throw a photo on a page and call it a day, but doing justice to users on all
21
- different browsers and devices is tedious and tricky. Tedious, tricky things should be automated.
22
- [This blog post further elaborates on that theme.](https://robert-buchberger.com/blog/2021/responsive_images.html)
5
+ ![Logo](docs/logo.png)
23
6
 
24
7
  Jekyll Picture Tag automatically builds cropped, resized, and reformatted images, builds several
25
8
  kinds of markup, offers extensive configuration while requiring none, and solves both the art
26
9
  direction and resolution switching problems with a little YAML configuration and a simple template
27
10
  tag.
28
11
 
12
+ It's simple to throw a photo on a page and call it a day, but doing justice to users on all
13
+ different browsers and devices is tedious and tricky.
14
+ [Tedious, tricky things should be automated](https://robert-buchberger.com/blog/2021/responsive_images.html).
15
+
29
16
  ## Why use Responsive Images?
30
17
 
31
18
  **Performance:** The fastest sites are static sites, but if you plonk a 2mb picture of your dog at
@@ -59,11 +46,13 @@ Tag is your responsive images minion - give it simple instructions and it'll han
59
46
 
60
47
  Recent releases:
61
48
 
49
+ * 2.1.2 13 September, 2024
50
+ * Remove overly specific version spec for ruby-vips - thanks to [@hschne](https://github.com/hschne) for [#313](https://github.com/rbuchberger/jekyll_picture_tag/pull/313)
62
51
  * 2.1.1 20 July, 2024
63
- * Don't provide Q setting for PPM images - thanks to @dichiban for [#309](https://github.com/rbuchberger/jekyll_picture_tag/pull/309)
64
- * Fix alpha premultiplication - thanks to @KaarlisCaune for [#302](https://github.com/rbuchberger/jekyll_picture_tag/pull/302)
52
+ * Don't provide Q setting for PPM images - thanks to [@dichiban](https://github.com/dichiban) for [#309](https://github.com/rbuchberger/jekyll_picture_tag/pull/309)
53
+ * Fix alpha premultiplication - thanks to [@KaarlisCaune](https://github.com/kaarliscaune) for [#302](https://github.com/rbuchberger/jekyll_picture_tag/pull/302)
65
54
  * 2.1.0 29 January, 2024
66
- * Check whether the vips CLI is installed before trying to use it. Thanks to @philrb for
55
+ * Check whether the vips CLI is installed before trying to use it. Thanks to [@philrb](https://github.com/philrb) for
67
56
  [#299](https://github.com/rbuchberger/jekyll_picture_tag/pull/299)
68
57
  * Update minimum required mocha version to maintain compatibility with minitest
69
58
  * 2.0.4 August 16, 2022
@@ -103,11 +92,3 @@ Recent releases:
103
92
  * Drop support for `markup_presets` and `media_presets`. They are now
104
93
  officially and only `presets` and `media_queries`.
105
94
  * Improve docs with an introductory tutorial and 'how-to' flow.
106
-
107
- ## Help Wanted
108
-
109
- Writing code is only part of the job; often the harder part is knowing what needs to be changed. Any
110
- and all feedback is greatly appreciated, especially in regards to documentation. What are your pain
111
- points? See the [contributing
112
- guidelines](https://rbuchberger.github.io/jekyll_picture_tag/devs/contributing), or the
113
- [issues](https://github.com/rbuchberger/jekyll_picture_tag/issues) page for more.
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll_picture_tag
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.1.1
4
+ version: 2.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Robert Wierzbowski
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2024-07-20 00:00:00.000000000 Z
13
+ date: 2024-09-13 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: addressable
@@ -88,14 +88,14 @@ dependencies:
88
88
  requirements:
89
89
  - - "~>"
90
90
  - !ruby/object:Gem::Version
91
- version: 2.0.17
91
+ version: '2.2'
92
92
  type: :runtime
93
93
  prerelease: false
94
94
  version_requirements: !ruby/object:Gem::Requirement
95
95
  requirements:
96
96
  - - "~>"
97
97
  - !ruby/object:Gem::Version
98
- version: 2.0.17
98
+ version: '2.2'
99
99
  - !ruby/object:Gem::Dependency
100
100
  name: bundler
101
101
  requirement: !ruby/object:Gem::Requirement
@@ -311,7 +311,6 @@ files:
311
311
  - docs/devs/releases.md
312
312
  - docs/index.md
313
313
  - docs/logo.png
314
- - docs/logo.svg
315
314
  - docs/users/configuration/directories.md
316
315
  - docs/users/configuration/disable.md
317
316
  - docs/users/configuration/fast_build.md