al_folio_distill 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: 2254b52a488b803a1df13e9b5d5e686a6ea7bf088f6c94814a141e396f3a6e91
4
- data.tar.gz: 51ff90bde669217b13152b82de8fa69c7d6b7c196a0787c2471547bda18decde
3
+ metadata.gz: df0f9b22ed5ea905ecf373ccad9afa7d2f1a6ccbe18790f99cb27b7bb557ed5d
4
+ data.tar.gz: f8732509d8fe3ccf63140a11e0f7c5d2aa99f3b84d250b5fc97eea191abb0fcc
5
5
  SHA512:
6
- metadata.gz: 9089441a1567a287aefe6eee5e08c736553be24ed2058d0aba7ba9a464c436cccf3fef5318d149fa93c38219affbe538750e2879816c69082edcd16542d03e66
7
- data.tar.gz: 8208fb75e7bdc639abbf61d6c4127be381bb1807fb2cd45e6a15c4b829a1959ec852873d3afc3bf689d99e946519eadf0aa21de4a3e884a2e034038ba1329b1c
6
+ metadata.gz: 0517c848db736566286c1751c5087fa56a758b2c37aa2d61c82a7d235bc44287225d6221132c2c4203f6724a4cc01357ae2feee9caefa6b5fa5ce9a5b725ec95
7
+ data.tar.gz: fb659768cace7b798dcb297261c0725cd498006d316e534db225116002d0b4fdbfec5bc745c99dd331e86a0ca052919f8543bf9c6603cac2a909d3580390311d
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.0.1 - 2026-02-17
4
+
5
+ - Updated Distill scripts template to use `tabs.js` (non-minified path) instead of removed `tabs.min.js`.
6
+ - Switched back-to-top loading to the shared CDN contract (`third_party_libraries['vanilla-back-to-top']`) to avoid missing local asset lookups.
7
+
3
8
  ## 1.0.0
4
9
 
5
10
  - Initial Distill extraction from `al_folio_core`.
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module AlFolioDistill
4
- VERSION = "1.0.0"
4
+ VERSION = "1.0.1"
5
5
  end
@@ -73,12 +73,20 @@
73
73
 
74
74
  {% if page.tabs %}
75
75
  <!-- Jekyll Tabs -->
76
- <script src="{{ '/assets/js/tabs.min.js' | relative_url | bust_file_cache }}"></script>
76
+ <script src="{{ '/assets/js/tabs.js' | relative_url | bust_file_cache }}"></script>
77
77
  {% endif %}
78
78
 
79
79
  {% if site.back_to_top %}
80
80
  <!-- Back to Top -->
81
- <script src="{{ '/assets/js/vanilla-back-to-top.min.js' | relative_url | bust_file_cache }}"></script>
81
+ {% assign back_to_top_js = site.third_party_libraries['vanilla-back-to-top'].url.js
82
+ | default: 'https://cdn.jsdelivr.net/npm/vanilla-back-to-top@7.2.1/dist/vanilla-back-to-top.min.js'
83
+ %}
84
+ {% assign back_to_top_integrity = site.third_party_libraries['vanilla-back-to-top'].integrity.js %}
85
+ {% if back_to_top_integrity %}
86
+ <script src="{{ back_to_top_js }}" integrity="{{ back_to_top_integrity }}" crossorigin="anonymous"></script>
87
+ {% else %}
88
+ <script src="{{ back_to_top_js }}"></script>
89
+ {% endif %}
82
90
  <script>
83
91
  addBackToTop();
84
92
  </script>
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: al_folio_distill
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
  - al-folio maintainers
8
- autorequire:
9
8
  bindir: bin
10
9
  cert_chain: []
11
- date: 2026-02-16 00:00:00.000000000 Z
10
+ date: 1980-01-02 00:00:00.000000000 Z
12
11
  dependencies:
13
12
  - !ruby/object:Gem::Dependency
14
13
  name: jekyll
@@ -128,7 +127,6 @@ metadata:
128
127
  allowed_push_host: https://rubygems.org
129
128
  homepage_uri: https://github.com/al-org-dev/al-folio-distill
130
129
  source_code_uri: https://github.com/al-org-dev/al-folio-distill
131
- post_install_message:
132
130
  rdoc_options: []
133
131
  require_paths:
134
132
  - lib
@@ -143,8 +141,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
143
141
  - !ruby/object:Gem::Version
144
142
  version: '0'
145
143
  requirements: []
146
- rubygems_version: 3.4.10
147
- signing_key:
144
+ rubygems_version: 4.0.6
148
145
  specification_version: 4
149
146
  summary: Distill rendering plugin for al-folio v1.x
150
147
  test_files: []