jekyll-theme-zer0 1.15.0 → 1.16.0
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/CHANGELOG.md +16 -0
- data/README.md +4 -4
- data/_data/features.yml +15 -0
- data/_data/theme-manifest.yml +428 -0
- data/_includes/components/ai-chat.html +579 -0
- data/_includes/core/footer.html +3 -1
- data/_layouts/root.html +3 -0
- data/_plugins/obsidian_links.rb +18 -5
- data/_sass/tokens/_layers.scss +1 -0
- data/scripts/bin/audit-consumer +336 -0
- data/scripts/bin/manifest +183 -0
- data/scripts/bin/release +15 -1
- data/scripts/bin/sync-plugins +356 -0
- data/scripts/bin/validate +1 -1
- data/scripts/lib/audit.sh +284 -0
- data/scripts/lib/frontmatter.sh +4 -2
- data/scripts/test/lib/test_locale_independence.sh +3 -0
- metadata +7 -1
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jekyll-theme-zer0
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.16.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Amr Abdel
|
|
@@ -100,6 +100,7 @@ files:
|
|
|
100
100
|
- _data/prompts.yml
|
|
101
101
|
- _data/roadmap.yml
|
|
102
102
|
- _data/statistics_config.yml
|
|
103
|
+
- _data/theme-manifest.yml
|
|
103
104
|
- _data/theme_backgrounds.yml
|
|
104
105
|
- _data/theme_skins.yml
|
|
105
106
|
- _data/ui-text.yml
|
|
@@ -111,6 +112,7 @@ files:
|
|
|
111
112
|
- _includes/analytics/posthog.html
|
|
112
113
|
- _includes/components/README.md
|
|
113
114
|
- _includes/components/admin-tabs.html
|
|
115
|
+
- _includes/components/ai-chat.html
|
|
114
116
|
- _includes/components/analytics-dashboard.html
|
|
115
117
|
- _includes/components/author-card.html
|
|
116
118
|
- _includes/components/author-eeat.html
|
|
@@ -363,9 +365,12 @@ files:
|
|
|
363
365
|
- assets/vendor/mermaid/mermaid.min.js
|
|
364
366
|
- scripts/README.md
|
|
365
367
|
- scripts/analyze-commits.sh
|
|
368
|
+
- scripts/bin/audit-consumer
|
|
366
369
|
- scripts/bin/build
|
|
367
370
|
- scripts/bin/install
|
|
371
|
+
- scripts/bin/manifest
|
|
368
372
|
- scripts/bin/release
|
|
373
|
+
- scripts/bin/sync-plugins
|
|
369
374
|
- scripts/bin/test
|
|
370
375
|
- scripts/bin/validate
|
|
371
376
|
- scripts/build
|
|
@@ -430,6 +435,7 @@ files:
|
|
|
430
435
|
- scripts/install/tui.sh
|
|
431
436
|
- scripts/install/upgrade.sh
|
|
432
437
|
- scripts/lib/README.md
|
|
438
|
+
- scripts/lib/audit.sh
|
|
433
439
|
- scripts/lib/changelog.sh
|
|
434
440
|
- scripts/lib/common.sh
|
|
435
441
|
- scripts/lib/frontmatter.sh
|