jekyll-theme-zer0 0.16.0 → 0.17.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: 82d722f8c9249249da9634e5e774dddda47d6ae3888e60e8f87269d697fc2752
4
- data.tar.gz: 54c07e714da9f2e718f1c057354745adb0b1490562052d3ffec0a4fcf125430d
3
+ metadata.gz: cedad3b535f19c489e0d874be9c116789f981fc042743150be32b06f7d6481c7
4
+ data.tar.gz: 0cd8445680be5c73980338a85aba69a8edb5e9484003fd74daf80c104690e22d
5
5
  SHA512:
6
- metadata.gz: a85d20e56b617f547beeee6e9d12571f110e606bf85e68c5773830d9ecc7f9b24c7d632f326db902792a7bf507ef3bb5eead8faff40a659112b481414293c13e
7
- data.tar.gz: de2aa109131a6067d6ae045992ebca0fb0eb31cf048b336516aa426a3ab46be58d7d51b979923431bb4a8f0f42e73b110b5a60192ea094ec82ebbdf6afa14441
6
+ metadata.gz: 35520e071daded7969373b51f103d8a8440db28b03044ca1db0c01832d676cbcfc32d677d285ce612c8f79a6a2fa2fa8023570457a28cba83615fea8363bd1eb
7
+ data.tar.gz: 654aa816eeb3b3e1019f0686eb2516eb4404e17ad4e533f764d32240fd1454a6c893a6e376fb907387b0a5f3cd514c1e364b365df92ed07e1279a90144ffc222
data/CHANGELOG.md CHANGED
@@ -1,5 +1,79 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.17.0] - 2025-12-23
4
+
5
+ ### Added
6
+ - **Navbar Hover Dropdowns**: Desktop users can now hover over navigation items to reveal sub-menus with smooth fade transitions
7
+ - **ES6 Navigation Modules**: Complete rewrite of navigation JavaScript using native ES6 modules (`type="module"`)
8
+ - `config.js` - Centralized configuration with CSS custom properties
9
+ - `scroll-spy.js` - Table of contents highlighting
10
+ - `smooth-scroll.js` - Animated scrolling to anchors
11
+ - `keyboard.js` - Full keyboard navigation support
12
+ - `gestures.js` - Touch gesture support for mobile
13
+ - `focus.js` - Focus management and accessibility
14
+ - `sidebar-state.js` - Persistent expand/collapse state
15
+ - `index.js` - Module orchestration and initialization
16
+ - **Nav Tree Component**: New `_includes/navigation/nav-tree.html` for rendering hierarchical YAML navigation (2 levels deep)
17
+ - **Navigation Schema Documentation**: Added `_data/navigation/README.md` with complete schema definition
18
+ - **Migration Script**: Added `scripts/migrate-nav-modes.sh` to update front matter from old to new nav modes
19
+
20
+ ### Changed
21
+ - **Navigation YAML Schema**: Standardized on `children` key (previously `sublinks`) across all navigation files
22
+ - **Navigation Modes**: Simplified to 3 standard modes:
23
+ - `auto` - Auto-generates from collection documents (replaces `dynamic`)
24
+ - `tree` - Uses YAML data files for hierarchical navigation
25
+ - `categories` - Groups content by Jekyll categories (replaces `searchCats`)
26
+ - **Sidebar Component**: Refactored `_includes/navigation/sidebar-left.html` to use new nav modes
27
+ - **Script Loading**: Updated `_includes/components/js-cdn.html` to use `type="module"` for ES6 modules
28
+ - **Default Collection Config**: Updated `_config.yml` with new navigation mode defaults
29
+
30
+ ### Removed
31
+ - **Legacy sidebar.js**: Deleted 512-line IIFE-based sidebar script, replaced by modular ES6 architecture
32
+
33
+ ### Fixed
34
+ - **Mobile Dropdown Behavior**: Fixed glitch where opening one dropdown would close others; each now operates independently
35
+ - **Dropdown Positioning**: Fixed desktop hover dropdowns appearing on top of parent links (now correctly appear below)
36
+
37
+ ## [0.16.3] - 2025-01-27
38
+
39
+ ### Changed
40
+ - **Documentation Navigation**: Restructured `_data/navigation/docs.yml` with logical sections (Getting Started, Core Technologies, Theme Features, Deployment)
41
+ - **Main Navigation**: Updated `_data/navigation/main.yml` with expanded Docs dropdown entries (Documentation Home, Installation, Docker, Troubleshooting)
42
+
43
+ ### Fixed
44
+ - **Liquid Syntax Error**: Fixed pre-existing bug in `pages/features.md` where `where_exp` filters used unsupported `or` conditions (Liquid 4.x compatibility)
45
+
46
+ ### Documentation
47
+ - **Installation Guide**: Expanded with platform-specific guides (macOS, Windows, Linux), Docker quick start, verification steps
48
+ - **Docker Guide**: Added essential commands, container workflows, configuration files, Apple Silicon support, troubleshooting
49
+ - **Troubleshooting Guide**: Added sections for Docker issues, Jekyll build errors, front matter problems, performance optimization
50
+ - **Jekyll Guide**: Added directory structure, configuration files, content collections, essential commands, topic index
51
+ - **Bootstrap Guide**: Added CDN loading patterns, key components, responsive breakpoints, custom styles, icons
52
+ - **Liquid Guide**: Added syntax examples with `{% raw %}` tags, filters, control flow, includes
53
+ - **Ruby Guide**: Added version commands, common commands, key files, Docker usage, troubleshooting
54
+ - **Front Matter Guide**: Added required/optional fields, layout options, collection-specific fields, complete examples
55
+ - All documentation pages now include `sidebar: nav: docs` for consistent navigation
56
+
57
+ ## [0.16.2] - 2025-12-20
58
+
59
+ ### Changed
60
+ - Version bump: patch release
61
+
62
+ ### Commits in this release
63
+ - 2a0057e Comprehensive features.yml with references, documentation, and showcase page (#17)
64
+
65
+
66
+ ## [0.16.1] - 2025-12-20
67
+
68
+ ### Changed
69
+ - Hardened CI workflows with least-privilege `permissions` and `concurrency`
70
+ - Updated landing/repo links to render correctly with YAML-array URL config
71
+ - Excluded repo technical `docs/` from the published site build (GitHub links used instead)
72
+
73
+ ### Fixed
74
+ - Removed false-green behavior in `test-latest.yml` (RSpec/HTMLProofer now fail the workflow)
75
+ - Fixed broken internal links/hashes and aligned navigation anchors (strict HTMLProofer-compatible)
76
+
3
77
  ## [0.16.0] - 2025-12-20
4
78
 
5
79
  ### Added
@@ -64,8 +138,6 @@
64
138
  ### Commits in this release
65
139
  - e1342ab Add configuration files for content organization, prerequisites, statistics, and UI text
66
140
  - 366e8a2 chore(deps): update Ruby gem dependencies (#16)
67
-
68
-
69
141
  ## [0.15.1] - 2025-12-14
70
142
 
71
143
  ### Changed
@@ -1104,7 +1176,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1104
1176
  - **Performance**: Optimized DOM manipulation and content rendering
1105
1177
  - **Accessibility**: Full screen reader support and keyboard navigation
1106
1178
 
1107
- **Full Documentation**: [v0.5.0 Release Summary](docs/releases/v0.5.0-release-summary.md)
1179
+ **Full Documentation**: [v0.5.0 Release Summary](https://github.com/bamr87/zer0-mistakes/blob/main/docs/releases/v0.5.0-release-summary.md)
1108
1180
 
1109
1181
  ## [0.4.0] - 2025-10-10
1110
1182
 
@@ -1149,7 +1221,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1149
1221
  - Eliminated type conversion errors in sorting operations
1150
1222
  - Proper handling of nested array data structures
1151
1223
 
1152
- **Full Documentation**: [v0.4.0 Release Summary](docs/releases/v0.4.0-release-summary.md)
1224
+ **Full Documentation**: [v0.4.0 Release Summary](https://github.com/bamr87/zer0-mistakes/blob/main/docs/releases/v0.4.0-release-summary.md)
1153
1225
 
1154
1226
  ## [0.3.0] - 2025-01-27
1155
1227
 
@@ -1184,7 +1256,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1184
1256
  - **⚡ Performance**: Optimized loading and rendering speed
1185
1257
  - **🎯 Usability**: Improved setup process and error handling
1186
1258
 
1187
- **Full Documentation**: [v0.3.0 Release Notes](docs/releases/v0.3.0-release-notes.md)
1259
+ **Full Documentation**: [v0.3.0 Release Notes](https://github.com/bamr87/zer0-mistakes/blob/main/docs/releases/v0.3.0-release-notes.md)
1188
1260
 
1189
1261
  ## [0.2.1] - 2025-09-30
1190
1262
 
@@ -1304,11 +1376,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1304
1376
 
1305
1377
  For detailed documentation on features, systems, and configuration:
1306
1378
 
1307
- - **[Documentation Center](docs/README.md)** - Complete documentation overview
1308
- - **[Release Documentation](docs/releases/README.md)** - Historical release information
1309
- - **[Feature Documentation](docs/features/README.md)** - Detailed feature guides
1310
- - **[System Documentation](docs/systems/README.md)** - Core systems and automation
1311
- - **[Configuration Guides](docs/configuration/README.md)** - Setup and configuration
1379
+ - **[Documentation Center](https://github.com/bamr87/zer0-mistakes/tree/main/docs)** - Complete documentation overview
1380
+ - **[Release Documentation](https://github.com/bamr87/zer0-mistakes/tree/main/docs/releases)** - Historical release information
1381
+ - **[Feature Documentation](https://github.com/bamr87/zer0-mistakes/tree/main/docs/features)** - Detailed feature guides
1382
+ - **[System Documentation](https://github.com/bamr87/zer0-mistakes/tree/main/docs/systems)** - Core systems and automation
1383
+ - **[Configuration Guides](https://github.com/bamr87/zer0-mistakes/tree/main/docs/configuration)** - Setup and configuration
1312
1384
 
1313
1385
  ## Links
1314
1386
 
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.15.0
5
+ version: 0.16.1
6
6
  layout: landing
7
7
  tags:
8
8
  - jekyll
@@ -564,13 +564,13 @@ graph LR
564
564
 
565
565
  | Resource | Description |
566
566
  |----------|-------------|
567
- | [📋 Technical Docs](docs/) | Architecture, systems, implementation |
568
- | [📖 User Guides](pages/_docs/) | Published tutorials and references |
569
- | [🤖 Copilot Instructions](.github/copilot-instructions.md) | AI development guidelines |
570
- | [⌨️ Keyboard Navigation](docs/keyboard-navigation.md) | Accessibility shortcuts guide |
571
- | [📓 Jupyter Notebooks](docs/JUPYTER_NOTEBOOKS.md) | Notebook conversion documentation |
567
+ | [📋 Technical Docs]({{ site.resources.github_repo | default: '' | join: '' }}/tree/{{ site.branch }}/docs/) | Architecture, systems, implementation |
568
+ | [📖 User Guides]({{ '/docs/' | relative_url }}) | Published tutorials and references |
569
+ | [🤖 Copilot Instructions]({{ site.resources.github_repo | default: '' | join: '' }}/blob/{{ site.branch }}/.github/copilot-instructions.md) | AI development guidelines |
570
+ | [⌨️ Keyboard Navigation]({{ site.resources.github_repo | default: '' | join: '' }}/blob/{{ site.branch }}/docs/keyboard-navigation.md) | Accessibility shortcuts guide |
571
+ | [📓 Jupyter Notebooks]({{ site.resources.github_repo | default: '' | join: '' }}/blob/{{ site.branch }}/docs/JUPYTER_NOTEBOOKS.md) | Notebook conversion documentation |
572
572
  | [📝 PRD](PRD.md) | Product requirements & roadmap |
573
- | [🔒 Privacy Policy](pages/privacy-policy.md) | GDPR/CCPA compliant privacy docs |
573
+ | [🔒 Privacy Policy]({{ '/privacy-policy/' | relative_url }}) | GDPR/CCPA compliant privacy docs |
574
574
 
575
575
  ---
576
576
 
data/_data/authors.yml CHANGED
@@ -19,7 +19,7 @@
19
19
  default:
20
20
  name: "Zer0-Mistakes Team"
21
21
  bio: "The collective voice of the Zer0-Mistakes Jekyll theme development team."
22
- avatar: "/images/default-avatar.png"
22
+ avatar: "/images/gravatar-small.png"
23
23
  github: "bamr87"
24
24
  website: "https://bamr87.github.io/zer0-mistakes/"
25
25
  role: "Development Team"
@@ -35,7 +35,7 @@ bamr87:
35
35
  guest:
36
36
  name: "Guest Author"
37
37
  bio: "A valued contributor to our community."
38
- avatar: "/images/default-avatar.png"
38
+ avatar: "/images/gravatar-small.png"
39
39
  role: "Guest Contributor"
40
40
 
41
41
  # Add more authors as needed: