jekyll-theme-zer0 0.15.0 → 0.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4c1f84062f41461c980a5bbe9e83cc78e3e657ae3ba2de736b2931968c12fa2c
4
- data.tar.gz: ea7b72031d159cbe9057fef78236cea13d465e21de1040365ae1ce47b5dc7ea5
3
+ metadata.gz: 82d722f8c9249249da9634e5e774dddda47d6ae3888e60e8f87269d697fc2752
4
+ data.tar.gz: 54c07e714da9f2e718f1c057354745adb0b1490562052d3ffec0a4fcf125430d
5
5
  SHA512:
6
- metadata.gz: 2c45b5836e177461322d1b8b6a39dcd2e7c3437ddf16fda51fdd162a3ab02e8e6584e893d19e336f3c9c313cef23d70ce09c3fce8c78949efb71d83baca0533b
7
- data.tar.gz: 28b475ad13770cf989d285d3ad1cd73c63216609734c356e312a8c0c62dfdd67a16f09d07e1cf0be5878b198a752d1965bfbe4ca78021707e20e7cb8c7efaff7
6
+ metadata.gz: a85d20e56b617f547beeee6e9d12571f110e606bf85e68c5773830d9ecc7f9b24c7d632f326db902792a7bf507ef3bb5eead8faff40a659112b481414293c13e
7
+ data.tar.gz: de2aa109131a6067d6ae045992ebca0fb0eb31cf048b336516aa426a3ab46be58d7d51b979923431bb4a8f0f42e73b110b5a60192ea094ec82ebbdf6afa14441
data/CHANGELOG.md CHANGED
@@ -1,5 +1,89 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.16.0] - 2025-12-20
4
+
5
+ ### Added
6
+ - **Configurable Assets Prefix**: New `assets_prefix` and `auto_prefix` configuration options for preview images
7
+ - Allows shorter frontmatter paths like `/images/previews/image.png` instead of `/assets/images/previews/image.png`
8
+ - Automatic path normalization in Liquid templates detects external URLs vs local paths
9
+ - Configured via `_config.yml` under `preview_images.assets_prefix` and `preview_images.auto_prefix`
10
+ - **xAI Grok Image Provider**: Added xAI as a new AI provider for preview image generation
11
+ - Uses `grok-2-image` model at `https://api.x.ai/v1/images/generations`
12
+ - Set `XAI_API_KEY` environment variable and use `--provider xai` flag
13
+ - **Preview Path Migration Script**: New `scripts/update-preview-paths.sh` for migrating existing frontmatter
14
+ - Supports dry-run and apply modes
15
+ - Removes `/assets/` prefix from preview paths in markdown files
16
+
17
+ ### Changed
18
+ - Updated `preview-image.html` include with path normalization logic
19
+ - Updated `intro.html` include with assets prefix support for hero backgrounds
20
+ - Updated `seo.html` include with assets prefix normalization for og:image meta tags
21
+ - Enhanced `preview_image_generator.rb` Ruby plugin with `normalize_preview_path` method
22
+ - Enhanced `preview_generator.py` with xAI provider, `--assets-prefix`, and `--no-auto-prefix` CLI options
23
+ - Migrated 24 markdown files to use shorter preview paths (without `/assets/` prefix)
24
+ - Updated scripts/README.md documentation with new provider and prefix options
25
+
26
+ ### Fixed
27
+ - **Critical: Liquid syntax error in `seo.html`** - Fixed invalid nested curly braces on line 27
28
+
29
+ ## [0.15.5] - 2025-12-20
30
+
31
+ ### Changed
32
+ - Version bump: patch release
33
+
34
+ ### Commits in this release
35
+ - d46cdb1 Merge branch 'main' of https://github.com/bamr87/zer0-mistakes
36
+ - 36767cd fix: update last modified timestamp in quick start guide
37
+ - f606096 fix: update quick start guide for clarity and consistency
38
+
39
+
40
+ ## [0.15.4] - 2025-12-20
41
+
42
+ ### Changed
43
+ - Version bump: patch release
44
+
45
+ ### Commits in this release
46
+ - bafb5ea fix: resolve CI quality check failures for preview images
47
+
48
+
49
+ ## [0.15.3] - 2025-12-20
50
+
51
+ ### Changed
52
+ - Version bump: patch release
53
+
54
+ ### Commits in this release
55
+ - 2f8b580 chore: merge branch and version bump to 0.15.2
56
+ - a239892 chore: bump version to 0.15.2
57
+
58
+
59
+ ## [0.15.2] - 2025-12-19
60
+
61
+ ### Changed
62
+ - Version bump: patch release
63
+
64
+ ### Commits in this release
65
+ - e1342ab Add configuration files for content organization, prerequisites, statistics, and UI text
66
+ - 366e8a2 chore(deps): update Ruby gem dependencies (#16)
67
+
68
+
69
+ ## [0.15.1] - 2025-12-14
70
+
71
+ ### Changed
72
+ - update test runner documentation for Bash 3.2 compatibility
73
+ - update version to 0.15.0 and enhance documentation with new features
74
+
75
+ ### Fixed
76
+ - refactor changelog.sh for Bash 3.2 compatibility (macOS default)
77
+
78
+ ### Other
79
+ - document Bash 3.2 compatibility in automation
80
+ - unfreeze bundler before updating Gemfile.lock in version-bump workflow
81
+ - update Windows Developer Mode instructions and correct spelling errors
82
+ - Social sharing buttons use production URLs instead of localhost
83
+ - update Gemfile.lock for v0.15.0
84
+
85
+
86
+
3
87
  ## [0.15.0] - 2025-12-11
4
88
 
5
89
  ### Added
data/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
  title: zer0-mistakes
3
3
  sub-title: Jekyll Theme
4
4
  description: Docker-optimized Jekyll theme with AI-powered installation automation and comprehensive error handling.
5
- version: 0.11.0
5
+ version: 0.15.0
6
6
  layout: landing
7
7
  tags:
8
8
  - jekyll
@@ -215,12 +215,14 @@ pie title Technology Distribution
215
215
 
216
216
  | Layer | Technology | Purpose |
217
217
  |-------|-----------|---------|
218
- | **Framework** | Jekyll 3.9.5 | Static site generation |
218
+ | **Framework** | Jekyll 3.10.0 | Static site generation |
219
219
  | **Styling** | Bootstrap 5.3.3 | Responsive UI components |
220
+ | **Icons** | Bootstrap Icons | Unified iconography |
220
221
  | **Development** | Docker | Cross-platform consistency |
221
222
  | **Templates** | Liquid | Dynamic content rendering |
222
223
  | **Analytics** | PostHog | Privacy-first tracking |
223
224
  | **Diagrams** | Mermaid 10+ | Documentation visuals |
225
+ | **Navigation** | Intersection Observer | Scroll spy & accessibility |
224
226
 
225
227
  ---
226
228
 
@@ -330,6 +332,33 @@ collections:
330
332
  permalink: /notebooks/:name/
331
333
  ```
332
334
 
335
+ ### 🧭 Enhanced Navigation System (v0.14.0)
336
+
337
+ Modern, accessible sidebar navigation with advanced features:
338
+
339
+ - **Intersection Observer Scroll Spy**: 70% reduction in scroll event overhead
340
+ - **Keyboard Shortcuts**: `[` and `]` for section navigation
341
+ - **Swipe Gestures**: Mobile-friendly left/right edge detection
342
+ - **Skip-to-Content**: Accessibility-first WCAG 2.1 Level AA compliant
343
+ - **Mobile TOC FAB**: Floating action button for table of contents
344
+ - **Unified Bootstrap Icons**: Consistent iconography across all components
345
+ - **Focus Management**: Improved screen reader support with ARIA labels
346
+
347
+ | Shortcut | Action |
348
+ |----------|--------|
349
+ | `[` | Previous section |
350
+ | `]` | Next section |
351
+ | `Tab` | Skip to content |
352
+ | Swipe | Toggle sidebar (mobile) |
353
+
354
+ ### 📋 Legal & Compliance Pages (v0.15.0)
355
+
356
+ Built-in GDPR/CCPA compliant documentation:
357
+
358
+ - **Privacy Policy**: Comprehensive data collection transparency
359
+ - **Terms of Service**: Ready-to-customize legal framework
360
+ - **Cookie Consent**: Granular user preference management
361
+
333
362
  ---
334
363
 
335
364
  ## 📦 Installation Methods
@@ -361,7 +390,7 @@ docker-compose up
361
390
 
362
391
  ```ruby
363
392
  # Gemfile
364
- gem "jekyll-theme-zer0", "~> 0.10"
393
+ gem "jekyll-theme-zer0", "~> 0.15"
365
394
  ```
366
395
 
367
396
  ---
@@ -403,12 +432,13 @@ graph TD
403
432
 
404
433
  | Directory | Purpose | Key Files |
405
434
  |-----------|---------|-----------|
406
- | `_layouts/` | Page templates | `default.html`, `journals.html`, `landing.html` |
407
- | `_includes/` | Reusable components | `core/`, `components/`, `analytics/` |
408
- | `_sass/` | Stylesheets | `custom.scss`, `core/` |
409
- | `assets/` | Static files | `css/`, `js/`, `images/` |
410
- | `scripts/` | Automation | `release`, `build`, `version.sh` |
411
- | `docs/` | Technical docs | `features/`, `systems/`, `releases/` |
435
+ | `_layouts/` | Page templates | `default.html`, `journals.html`, `landing.html`, `notebook.html` |
436
+ | `_includes/` | Reusable components | `core/`, `components/`, `analytics/`, `navigation/` |
437
+ | `_sass/` | Stylesheets | `custom.scss`, `notebooks.scss`, `core/` |
438
+ | `assets/` | Static files | `css/`, `js/sidebar.js`, `images/` |
439
+ | `scripts/` | Automation | `release`, `build`, `convert-notebooks.sh` |
440
+ | `docs/` | Technical docs | `SIDEBAR_IMPROVEMENTS.md`, `JUPYTER_NOTEBOOKS.md` |
441
+ | `pages/` | Content pages | `privacy-policy.md`, `terms-of-service.md` |
412
442
 
413
443
  ---
414
444
 
@@ -537,8 +567,10 @@ graph LR
537
567
  | [📋 Technical Docs](docs/) | Architecture, systems, implementation |
538
568
  | [📖 User Guides](pages/_docs/) | Published tutorials and references |
539
569
  | [🤖 Copilot Instructions](.github/copilot-instructions.md) | AI development guidelines |
540
- | [🌱 Seed Documentation](.github/seed/) | Full reconstruction blueprints |
570
+ | [⌨️ Keyboard Navigation](docs/keyboard-navigation.md) | Accessibility shortcuts guide |
571
+ | [📓 Jupyter Notebooks](docs/JUPYTER_NOTEBOOKS.md) | Notebook conversion documentation |
541
572
  | [📝 PRD](PRD.md) | Product requirements & roadmap |
573
+ | [🔒 Privacy Policy](pages/privacy-policy.md) | GDPR/CCPA compliant privacy docs |
542
574
 
543
575
  ---
544
576
 
@@ -582,9 +614,9 @@ flowchart LR
582
614
  /opt/homebrew/bin/bash scripts/release patch --dry-run
583
615
 
584
616
  # Full release
585
- /opt/homebrew/bin/bash scripts/release patch # 0.10.3 → 0.10.4
586
- /opt/homebrew/bin/bash scripts/release minor # 0.10.3 → 0.11.0
587
- /opt/homebrew/bin/bash scripts/release major # 0.10.3 → 1.0.0
617
+ /opt/homebrew/bin/bash scripts/release patch # 0.15.0 → 0.15.1
618
+ /opt/homebrew/bin/bash scripts/release minor # 0.15.0 → 0.16.0
619
+ /opt/homebrew/bin/bash scripts/release major # 0.15.0 → 1.0.0
588
620
  ```
589
621
 
590
622
  ---
@@ -596,19 +628,19 @@ gantt
596
628
  title zer0-mistakes Roadmap
597
629
  dateFormat YYYY-MM
598
630
  section Current
599
- v0.10.x Maintenance :done, 2025-11, 2025-12
631
+ v0.15.x Maintenance :done, 2025-12, 2026-01
600
632
  section Future
601
- v0.11 - CMS Integration :2026-01, 2026-03
602
- v0.12 - Advanced Analytics:2026-04, 2026-06
603
- v0.13 - i18n Support :2026-07, 2026-09
633
+ v0.16 - CMS Integration :2026-01, 2026-03
634
+ v0.17 - Advanced Analytics:2026-04, 2026-06
635
+ v0.18 - i18n Support :2026-07, 2026-09
604
636
  v1.0 - Production Ready :milestone, 2027-01, 1d
605
637
  ```
606
638
 
607
639
  | Version | Target | Features |
608
640
  |---------|--------|----------|
609
- | **v0.11** | Q1 2026 | Headless CMS integration, content API |
610
- | **v0.12** | Q2 2026 | A/B testing, conversion funnels |
611
- | **v0.13** | Q3 2026 | Multi-language support (i18n) |
641
+ | **v0.16** | Q1 2026 | Headless CMS integration, content API |
642
+ | **v0.17** | Q2 2026 | A/B testing, conversion funnels |
643
+ | **v0.18** | Q3 2026 | Multi-language support (i18n) |
612
644
  | **v1.0** | Q1 2027 | Stable API, 90%+ test coverage |
613
645
 
614
646
  ---
@@ -664,11 +696,11 @@ git push origin feature/awesome-feature
664
696
 
665
697
  | Metric | Value |
666
698
  |--------|-------|
667
- | **Current Version** | 0.10.3 |
699
+ | **Current Version** | 0.15.0 |
668
700
  | **Installation Success** | ~95% |
669
701
  | **Setup Time** | 2-5 minutes |
670
- | **RubyGems Downloads** | 2,500+ |
671
- | **Documentation** | 17,500+ lines |
702
+ | **RubyGems Downloads** | 3,000+ |
703
+ | **Documentation** | 20,000+ lines |
672
704
  | **Lighthouse Score** | 95+ |
673
705
 
674
706
  ---
@@ -688,6 +720,6 @@ Built with these amazing technologies:
688
720
 
689
721
  **Built with ❤️ for the Jekyll community**
690
722
 
691
- **v0.10.3** • [Changelog](CHANGELOG.md) • [License](LICENSE) • [Contributing](CONTRIBUTING.md)
723
+ **v0.15.0** • [Changelog](CHANGELOG.md) • [License](LICENSE) • [Contributing](CONTRIBUTING.md)
692
724
 
693
725