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 +4 -4
- data/.github/workflows/update-gemfile-lock.yaml +2 -2
- data/.release-please-manifest.json +1 -1
- data/CHANGELOG.md +8 -0
- data/Gemfile.lock +1 -1
- data/README.md +3 -0
- data/_sass/_highlight-cards.scss +1 -0
- data/jekyll-highlight-cards.gemspec +2 -2
- data/lib/jekyll-highlight-cards/version.rb +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2ae453a5cc13375b8c6836ac97a49dc4c16010e567c7a6d4d353221e2e052384
|
|
4
|
+
data.tar.gz: c0d7fbdafb90d2437d5da7994cd0a8d3b50939486ecbd5659dd0a266496edc3c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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 "
|
|
46
|
-
git config user.email "
|
|
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
|
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
data/README.md
CHANGED
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
# jekyll-highlight-cards
|
|
2
2
|
|
|
3
|
+
[](https://rubygems.org/gems/jekyll-highlight-cards)
|
|
4
|
+
[](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
|
data/_sass/_highlight-cards.scss
CHANGED
|
@@ -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
|
|
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
|
|
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"
|
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.
|
|
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-
|
|
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
|
|
180
|
-
creating styled card components with integrated Internet Archive functionality
|
|
181
|
-
image sizing. Also
|
|
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: []
|