jekyll-highlight-cards 1.0.0 → 1.0.1

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
  SHA256:
3
- metadata.gz: 27cf68c0933a20201dc0314386e81566118ef263473ab335ff3fe5f278df6832
4
- data.tar.gz: 5d66c46ea2cb0064c9fa414b04219ac613a5c0d5ef9fe61fb4f2777efa4abecd
3
+ metadata.gz: 2ae453a5cc13375b8c6836ac97a49dc4c16010e567c7a6d4d353221e2e052384
4
+ data.tar.gz: c0d7fbdafb90d2437d5da7994cd0a8d3b50939486ecbd5659dd0a266496edc3c
5
5
  SHA512:
6
- metadata.gz: 2d223398db2a0d03a771c06ec6eab6281ec65cb8f2bb7d87e8db007faa90c7c97ecbc1cac176750dec3eab898704b2668b9ca049a5122df8c424c8fede98b404
7
- data.tar.gz: 2d14df56df6e3bfa9020a40ead922a01946a22a1e3debb837b4a8eea3bcf5eb0e01fe63219cbfd0f43cd305e0bd92e16c76bf573a823bac755b487437be428cd
6
+ metadata.gz: 16ee34d32fd36309ac871a36b0f8e4b77d2fc1d1747c92f33f3d635cbaa1547dbf0dc04a544503c198a1607a4ef70d53adaaa31d85a3b8864bb9d4d9aebf5677
7
+ data.tar.gz: b73a098b4db006abbbd82ba64390b5570e035193a8f7fa06daea568b7a81797078e109855e44b64024bfbd8629dce426fe34a1e7e9555f1070ec624bb6d102f4
@@ -42,8 +42,8 @@ jobs:
42
42
  max_attempts: 3
43
43
  retry_wait_seconds: 5
44
44
  command: |
45
- git config user.name "texarkanine-s-little-helper[bot]"
46
- git config user.email "texarkanine-s-little-helper[bot]@users.noreply.github.com"
45
+ git config user.name "${{ github.event.pull_request.user.login }}"
46
+ git config user.email "${{ github.event.pull_request.user.id }}+${{ github.event.pull_request.user.login }}@users.noreply.github.com"
47
47
  if ! git diff --quiet Gemfile.lock; then
48
48
  git pull --rebase origin ${{ github.head_ref }}
49
49
  git add Gemfile.lock
@@ -1,3 +1,3 @@
1
1
  {
2
- ".": "1.0.0"
2
+ ".": "1.0.1"
3
3
  }
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.0.1](https://github.com/Texarkanine/jekyll-highlight-cards/compare/v1.0.0...v1.0.1) (2025-12-12)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * **docs:** update gemspec description for rubygems.org ([8066854](https://github.com/Texarkanine/jekyll-highlight-cards/commit/80668542849e947459dab2e2a8b6e629d6984458))
9
+ * **polaroid:** "height: auto;" was missing so images got distorted on narrow screens ([#15](https://github.com/Texarkanine/jekyll-highlight-cards/issues/15)) ([c2a8165](https://github.com/Texarkanine/jekyll-highlight-cards/commit/c2a81658213ae84231287bc04cdf67309dc36d77))
10
+
3
11
  ## [1.0.0](https://github.com/Texarkanine/jekyll-highlight-cards/compare/v0.3.1...v1.0.0) (2025-12-09)
4
12
 
5
13
 
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- jekyll-highlight-cards (1.0.0)
4
+ jekyll-highlight-cards (1.0.1)
5
5
  jekyll (>= 4.0, < 5.0)
6
6
  liquid (>= 4.0, < 5.0)
7
7
 
data/README.md CHANGED
@@ -1,5 +1,8 @@
1
1
  # jekyll-highlight-cards
2
2
 
3
+ [![Gem Version](https://badge.fury.io/rb/jekyll-highlight-cards.svg)](https://rubygems.org/gems/jekyll-highlight-cards)
4
+ [![code coverage](https://codecov.io/gh/Texarkanine/jekyll-highlight-cards/graph/badge.svg)](https://codecov.io/gh/Texarkanine/jekyll-highlight-cards)
5
+
3
6
  A Jekyll plugin providing styled card components for links and images with Internet Archive integration.
4
7
 
5
8
  ## Features
@@ -55,6 +55,7 @@
55
55
  .polaroid-image {
56
56
  display: block;
57
57
  max-width: 100%;
58
+ height: auto;
58
59
  border: 1px solid #333;
59
60
  margin: 0 auto;
60
61
  }
@@ -9,9 +9,9 @@ Gem::Specification.new do |spec|
9
9
  spec.email = ["texarkanine@protonmail.com"]
10
10
 
11
11
  spec.summary = "Jekyll plugin providing linkcard and polaroid Liquid tags with archive integration"
12
- spec.description = "A Jekyll gem that provides two Liquid tags (linkcard and polaroid) for creating " \
12
+ spec.description = "A Jekyll plugin that provides two Liquid tags (linkcard and polaroid) for creating " \
13
13
  "styled card components with integrated Internet Archive functionality and image sizing. " \
14
- "Also includes Markdown image sizing hooks."
14
+ "Also extends Markdown support to allow specifying image dimensions."
15
15
  spec.homepage = "https://github.com/texarkanine/jekyll-highlight-cards"
16
16
  spec.license = "AGPL-3.0-or-later"
17
17
  spec.required_ruby_version = ">= 3.1.0"
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module JekyllHighlightCards
4
- VERSION = "1.0.0"
4
+ VERSION = "1.0.1"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-highlight-cards
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Texarkanine
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-12-09 00:00:00.000000000 Z
11
+ date: 2025-12-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -176,9 +176,9 @@ dependencies:
176
176
  - - "~>"
177
177
  - !ruby/object:Gem::Version
178
178
  version: '3.18'
179
- description: A Jekyll gem that provides two Liquid tags (linkcard and polaroid) for
180
- creating styled card components with integrated Internet Archive functionality and
181
- image sizing. Also includes Markdown image sizing hooks.
179
+ description: A Jekyll plugin that provides two Liquid tags (linkcard and polaroid)
180
+ for creating styled card components with integrated Internet Archive functionality
181
+ and image sizing. Also extends Markdown support to allow specifying image dimensions.
182
182
  email:
183
183
  - texarkanine@protonmail.com
184
184
  executables: []