jekyll-theme-zer0 0.7.2 → 0.10.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.
Files changed (57) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +272 -3
  3. data/README.md +83 -21
  4. data/_data/README.md +4 -5
  5. data/_includes/README.md +1 -1
  6. data/_includes/stats/README.md +14 -2
  7. data/_layouts/README.md +3 -3
  8. data/_plugins/preview_image_generator.rb +258 -0
  9. data/_plugins/theme_version.rb +88 -0
  10. data/_sass/core/_theme.scss +4 -1
  11. data/assets/images/previews/git-workflow-best-practices-for-modern-teams.png +0 -0
  12. data/scripts/README.md +443 -0
  13. data/scripts/analyze-commits.sh +313 -0
  14. data/scripts/bin/build +115 -0
  15. data/scripts/bin/release +240 -0
  16. data/scripts/bin/test +203 -0
  17. data/scripts/build +115 -0
  18. data/scripts/example-usage.sh +102 -0
  19. data/scripts/features/generate-preview-images +846 -0
  20. data/scripts/features/install-preview-generator +531 -0
  21. data/scripts/features/preview_generator.py +646 -0
  22. data/scripts/fix-markdown-format.sh +265 -0
  23. data/scripts/generate-preview-images.sh +791 -0
  24. data/scripts/install-preview-generator.sh +531 -0
  25. data/scripts/lib/README.md +291 -0
  26. data/scripts/lib/changelog.sh +313 -0
  27. data/scripts/lib/common.sh +154 -0
  28. data/scripts/lib/gem.sh +226 -0
  29. data/scripts/lib/git.sh +205 -0
  30. data/scripts/lib/preview_generator.py +646 -0
  31. data/scripts/lib/test/run_tests.sh +140 -0
  32. data/scripts/lib/test/test_changelog.sh +87 -0
  33. data/scripts/lib/test/test_gem.sh +68 -0
  34. data/scripts/lib/test/test_git.sh +82 -0
  35. data/scripts/lib/test/test_validation.sh +72 -0
  36. data/scripts/lib/test/test_version.sh +96 -0
  37. data/scripts/lib/validation.sh +139 -0
  38. data/scripts/lib/version.sh +178 -0
  39. data/scripts/release +240 -0
  40. data/scripts/setup.sh +155 -0
  41. data/scripts/test/integration/auto-version +243 -0
  42. data/scripts/test/integration/mermaid +252 -0
  43. data/scripts/test/lib/run_tests.sh +151 -0
  44. data/scripts/test/lib/test_changelog.sh +90 -0
  45. data/scripts/test/lib/test_gem.sh +71 -0
  46. data/scripts/test/lib/test_git.sh +85 -0
  47. data/scripts/test/lib/test_validation.sh +75 -0
  48. data/scripts/test/lib/test_version.sh +101 -0
  49. data/scripts/test/theme/validate +120 -0
  50. data/scripts/test-auto-version.sh +260 -0
  51. data/scripts/test-mermaid.sh +251 -0
  52. data/scripts/test.sh +156 -0
  53. data/scripts/utils/analyze-commits +300 -0
  54. data/scripts/utils/fix-markdown +251 -0
  55. data/scripts/utils/setup +137 -0
  56. data/scripts/version.sh +178 -0
  57. metadata +50 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 121248addc514b434e43346120d084f2d85adc56a7d42f270e3f0814e3074811
4
- data.tar.gz: 0eddaa825036a05ab63eebaf333ca9e4829b133a15b1700f7f83f87b9dac0bf6
3
+ metadata.gz: 11f1a090a15824b7b1fc5754e858839d93318efad779deb8d63f5b5641a08f02
4
+ data.tar.gz: 476de246227f2f492eb142f7d4f9f0b1e20b9dc97350069bb6b3fff3ef295f8b
5
5
  SHA512:
6
- metadata.gz: 5cf3ef0e1dbd0d2c71c5738e9c2bf8efe46c2b3a2a3d28fa6335665b4e1c86d4268d0554f5abc195e6e1e5e56357cfa858be9e553158d774b465b331e8b47f9c
7
- data.tar.gz: 404bbdeee6fb4cf0f977b193a744462a9b2c7951fc399e127bed72a2dbc485d5f542e83d916ac622b7c01d28a81c22cbd7758fa6b44e6f03e4c46e7e1ff9b654
6
+ metadata.gz: 8a2aba3a52815a120646b1b094a973dd01e4c28555f37de5562a9a262d4ad6dda7944753c9f235862ef60b8ce99ad94c62b98bdabf821b983243812d07b27480
7
+ data.tar.gz: e54a3074c2d26c178211144219c9e934258edca74f498e073e37edc7e68d4a84d18181295d7467ac6de5647d6bc0d52e41605838171028f96b86dbbdd04caa1f
data/CHANGELOG.md CHANGED
@@ -1,5 +1,247 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.10.0] - 2025-11-28
4
+
5
+ ### Added
6
+
7
+ - **New: Zero Version Pin Strategy** - Enterprise-grade dependency management paradigm
8
+ - Always use latest compatible versions with zero pins anywhere
9
+ - Fail fast in CI if incompatible → caught early, not in production
10
+ - Production uses immutable image tags (date+commit hash), never `:latest`
11
+ - Full documentation in `docs/systems/ZERO_PIN_STRATEGY.md`
12
+
13
+ - **New: Docker Multi-Stage Dockerfile** (`docker/Dockerfile`)
14
+ - `base` stage: Ruby slim + build dependencies
15
+ - `dev-test` stage: Full dev/test gems for CI validation
16
+ - `build` stage: Production Jekyll build
17
+ - `production` stage: Minimal runtime for serving
18
+
19
+ - **New: Docker Compose Configurations**
20
+ - `docker-compose.yml`: Development environment with live reload
21
+ - `docker-compose.test.yml`: CI testing overlay with validation
22
+ - `docker-compose.prod.yml`: Production with immutable tags only
23
+
24
+ - **New: CI Workflow for Zero Pin Strategy** (`.github/workflows/test-latest.yml`)
25
+ - Builds with `--no-cache` for latest dependencies
26
+ - Documents resolved versions in workflow summary
27
+ - Tags and publishes immutable images on success
28
+ - Debug information on failure
29
+
30
+ - **New: `.dockerignore`** - Optimized Docker build context
31
+ - Excludes development files, tests, logs, and build artifacts
32
+ - Keeps only files needed for container builds
33
+
34
+ - **New: VS Code Workspace Configuration** (`zer0-mistakes.code-workspace`)
35
+ - Copilot settings for all file types
36
+ - File associations for Jekyll/Liquid
37
+ - Terminal environment variables for Docker
38
+
39
+ ### Changed
40
+
41
+ - **Improved: `Gemfile`** - Refactored for zero version pin strategy
42
+ - Removed all version constraints
43
+ - Added development/test group with html-proofer, rspec, rake, rubocop
44
+ - Added platform-specific dependencies for Windows
45
+ - Comprehensive documentation comments
46
+
47
+ - **Improved: `docker-compose.yml`** - Enhanced for zero pin strategy
48
+ - Uses custom Dockerfile instead of jekyll/jekyll image
49
+ - Added bundle cache volume for faster rebuilds
50
+ - LiveReload port (35729) exposed
51
+ - TTY enabled for interactive commands
52
+
53
+ - **Improved: `jekyll-theme-zer0.gemspec`** - Compatibility updates
54
+ - Ruby requirement lowered to >= 2.7.0 (from 3.0.0) for broader compatibility
55
+ - Bundler dependency changed to ~> 2.3 (from >= 2.3)
56
+
57
+ - **Improved: CI Workflow** (`.github/workflows/ci.yml`)
58
+ - Added documentation comments explaining version strategy
59
+ - Clarified that explicit versions are for backwards compatibility testing
60
+
61
+ ### Fixed
62
+
63
+ - **Fixed: `scripts/generate-preview-images.sh`** - Reverted to simpler collection handling
64
+ - Removed dynamic collection reading (caused issues in some environments)
65
+ - Restored hardcoded collection list for reliability
66
+ - Fixed yq vs sed front matter update logic
67
+
68
+ ## [0.9.2] - 2025-11-28
69
+
70
+ ### Changed
71
+ - Version bump: patch release
72
+
73
+ ### Commits in this release
74
+ - 509d705 fix(ci): fix false positive failure detection in test report validation
75
+ - 77dc04b fix(ci): fix shell syntax error in test-suite validation step
76
+
77
+
78
+ ## [0.9.1] - 2025-11-27
79
+
80
+ ### Fixed
81
+
82
+ - **CI: Test suite failures across Ruby versions** - Resolved issues causing CI failures
83
+ - Fixed `--skip-docker` option error by only passing it to deployment tests (not quality tests)
84
+ - Fixed bash arithmetic syntax error in Liquid tag validation by sanitizing grep output
85
+ - Added bundler 2.5 requirement to setup-ruby action for Ruby 3.0 compatibility
86
+
87
+ ## [0.9.0] - 2025-06-30
88
+
89
+ ### Changed
90
+
91
+ - **Refactored: Scripts Directory Structure** - Complete reorganization for better maintainability
92
+ - New `bin/` directory for main entry points (`release`, `build`, `test`)
93
+ - New `utils/` directory for utility scripts (`setup`, `analyze-commits`, `fix-markdown`)
94
+ - New `features/` directory for feature-specific scripts (`generate-preview-images`, `install-preview-generator`)
95
+ - New `test/` directory hierarchy with `lib/`, `theme/`, and `integration/` subdirectories
96
+ - Unified test runner in `bin/test` that runs all test suites with single command
97
+
98
+ - **Improved: Script Library Integration** - All scripts now use shared `lib/common.sh`
99
+ - Consistent logging functions (`log`, `info`, `success`, `warn`, `error`, `debug`)
100
+ - Standardized color output and formatting
101
+ - Removed duplicate code from individual scripts
102
+
103
+ - **Updated: Documentation** - Complete rewrite of `scripts/README.md`
104
+ - Clear directory structure overview
105
+ - Quick start guide for common operations
106
+ - Migration table from legacy to new script locations
107
+ - Dependency graph for library modules
108
+
109
+ ### Added
110
+
111
+ - **New: `bin/test` Unified Test Runner** - Single command to run all tests
112
+ - Supports running specific test suites (`lib`, `theme`, `integration`, `all`)
113
+ - Verbose output mode with `--verbose` flag
114
+ - Summary of passed/failed test suites
115
+
116
+ - **New: `test/theme/validate`** - Theme structure validation tests
117
+ - Validates layouts, includes, and assets directories
118
+ - Sources shared library for consistent output
119
+
120
+ - **New: `test/integration/auto-version`** - Auto-version integration tests
121
+ - Moved from `tests/` directory with updated library paths
122
+
123
+ ### Deprecated
124
+
125
+ - **Deprecated: `scripts/version.sh`** - Now displays deprecation warning
126
+ - Recommends using `bin/release` for full workflow
127
+ - Will be removed in future release
128
+
129
+ ### Migration Guide
130
+
131
+ | Legacy Script | New Location |
132
+ |--------------|--------------|
133
+ | `version.sh` | `bin/release` |
134
+ | `setup.sh` | `utils/setup` |
135
+ | `test.sh` | `bin/test` or `test/theme/validate` |
136
+ | `analyze-commits.sh` | `utils/analyze-commits` |
137
+ | `fix-markdown-format.sh` | `utils/fix-markdown` |
138
+ | `generate-preview-images.sh` | `features/generate-preview-images` |
139
+ | `install-preview-generator.sh` | `features/install-preview-generator` |
140
+
141
+ ## [0.8.2] - 2025-11-27
142
+
143
+ ### Changed
144
+
145
+ - **Refactored: GitHub Actions Workflows** - Consolidated 5 workflows into 3 streamlined workflows
146
+ - Merged `auto-version-bump.yml` into `version-bump.yml` with both automatic and manual triggers
147
+ - Merged `gem-release.yml` and `github-release.yml` into unified `release.yml`
148
+ - Removed duplicate `quality` job from `ci.yml` (functionality retained in `quality-checks` job)
149
+ - Updated `ci.yml` build job to use `scripts/build` instead of deprecated `build.sh`
150
+
151
+ - **Updated: Composite Action `prepare-release`** - Now uses `scripts/build` instead of deprecated `build.sh`
152
+
153
+ ### Added
154
+
155
+ - **New Documentation: `.github/workflows/README.md`** - Comprehensive workflow documentation
156
+ - Workflow trigger flow diagram
157
+ - Job descriptions and timeout configurations
158
+ - Manual dispatch options and troubleshooting guide
159
+
160
+ - **New Documentation: `.github/actions/README.md`** - Composite actions documentation
161
+ - Input/output specifications for all 5 actions
162
+ - Usage examples and best practices
163
+ - Action creation guide and troubleshooting
164
+
165
+ ### Removed
166
+
167
+ - **Deleted: `auto-version-bump.yml`** - Functionality merged into `version-bump.yml`
168
+ - **Deleted: `gem-release.yml`** - Functionality merged into `release.yml`
169
+ - **Deleted: `github-release.yml`** - Functionality merged into `release.yml`
170
+ - **Deleted: Deprecated wrapper scripts** - `build.sh`, `gem-publish.sh`, `release.sh` and their `.legacy` versions
171
+ - These were deprecated redirects to the new modular commands (`scripts/build`, `scripts/release`)
172
+
173
+ ## [0.8.1] - 2025-11-27
174
+
175
+ ### Added
176
+
177
+ - **New Page: `pages/categories.md`** - Browse all categories with post counts and links
178
+ - Alphabetical category overview with badge sizing based on post count
179
+ - Post listing under each category with descriptions and dates
180
+ - Smooth anchor navigation between categories
181
+ - **New Page: `posts.html`** - Paginated posts index with jekyll-paginate support
182
+ - Responsive 3-column card grid layout
183
+ - Smart pagination with ellipsis for many pages
184
+ - Page jump feature for quick navigation when >10 pages
185
+ - **New Page: `index.html`** - Alternative posts index with client-side pagination
186
+ - Responsive 5-column compact card grid for high-density display
187
+ - URL hash-based page state (#page=2) for bookmarkable pages
188
+ - Empty state handling when no posts exist
189
+
190
+ ### Changed
191
+
192
+ - **Enhanced: `README.md`** - Consolidated landing page content
193
+ - Changed layout from `default` to `landing` for proper homepage rendering
194
+ - Updated permalink from `/zer0/` to `/` for clean root URL
195
+ - Added hero_image and updated preview image
196
+ - Added "Welcome to Error-Free Jekyll Development" section with proven results metrics
197
+ - Added "Perfect For" section highlighting target audiences
198
+ - **Enhanced: `pages/index.html`** - Improved posts archive page
199
+ - Responsive card grid (1→2→3→4→5 columns as screen grows)
200
+ - Client-side pagination (10 posts per page)
201
+ - Compact card design with constrained image height
202
+ - Category badges and post metadata display
203
+ - Filter buttons for Categories and Tags pages
204
+ - **Improved: `pages/_posts/development/2025-01-22-git-workflow-best-practices.md`** - Front matter formatting standardization
205
+
206
+ ### Removed
207
+
208
+ - **Deleted: `index.md`** - Content merged into README.md to avoid duplicate landing pages
209
+
210
+ ## [0.8.0] - 2025-11-27
211
+
212
+ ### Added
213
+
214
+ - **New Feature: AI Preview Image Generator (ZER0-003)** - Automatic AI-powered preview image generation for Jekyll posts
215
+ - Supports OpenAI DALL-E 3, Stability AI, and local placeholder generation
216
+ - Configurable via `_config.yml` under `preview_images` section
217
+ - Default retro pixel art style with 1792x1024 landscape banners
218
+ - One-command remote installation for other Jekyll sites
219
+ - **New Plugin: `_plugins/preview_image_generator.rb`** - Jekyll integration with:
220
+ - Liquid filters: `has_preview_image`, `preview_image_path`, `preview_filename`
221
+ - Liquid tags: {% raw %}`{% preview_image_status %}`, `{% preview_images_missing %}`{% endraw %}
222
+ - Build hook that reports missing preview images during Jekyll build
223
+ - **New Script: `scripts/generate-preview-images.sh`** - Main CLI for image generation
224
+ - `--list-missing` to find posts without preview images
225
+ - `--dry-run` to preview without making changes
226
+ - `--collection` to target specific collections
227
+ - `--provider` to choose AI provider (openai, stability, local)
228
+ - **New Script: `scripts/install-preview-generator.sh`** - Remote installer for other repos
229
+ - One-line installation: `curl -fsSL .../install-preview-generator.sh | bash`
230
+ - Automatic configuration, VS Code tasks, and environment setup
231
+ - **New Script: `scripts/lib/preview_generator.py`** - Python alternative implementation
232
+ - **New Documentation: `docs/features/preview-image-generator.md`** - Comprehensive feature documentation
233
+ - **New Rake Tasks**: `preview:missing`, `preview:generate`, `preview:dry_run`, `preview:posts`, `preview:docs`, `preview:force`, `preview:file`
234
+ - **New VS Code Tasks**: Four preview image tasks for IDE integration
235
+ - **New Config Section**: `preview_images` in `_config.yml` with full customization options
236
+ - **New Feature Entry**: ZER0-003 in `features/features.yml`
237
+
238
+ ### Changed
239
+
240
+ - **Updated: `jekyll-theme-zer0.gemspec`** - Now includes `_plugins/` and `scripts/` directories in gem distribution
241
+ - **Updated: `Rakefile`** - Added preview image tasks and development/test task namespaces
242
+ - **Updated: `scripts/README.md`** - Documented new preview generator scripts
243
+ - **Updated: `.gitignore`** - Added `.env` for API key security
244
+
3
245
  ## [0.7.2] - 2025-11-26
4
246
 
5
247
  ### Fixed
@@ -73,6 +315,7 @@
73
315
  ## [0.6.0] - 2025-11-22
74
316
 
75
317
  ### Added
318
+
76
319
  - Implement PostHog analytics and cookie consent
77
320
  - Add code copy functionality and enhance documentation structure
78
321
  - Revise copilot instructions and add comprehensive Jekyll include development guidelines
@@ -82,6 +325,7 @@
82
325
  - Enhance CI/CD testing framework with comprehensive documentation and automated workflows
83
326
 
84
327
  ### Changed
328
+
85
329
  - Ignore .frontmatter directory
86
330
  - Update VS Code settings
87
331
  - Documentation: Update README with new features and architecture
@@ -90,6 +334,7 @@
90
334
  - Update version control instructions and add feature documentation
91
335
 
92
336
  ### Other
337
+
93
338
  - Revert "Merge pull request #10 from bamr87/copilot/plan-mdx-file-handling"
94
339
  - Add Mermaid documentation and test suite, enhance site structure
95
340
  - Merge pull request #9 from bamr87/copilot/setup-copilot-instructions
@@ -101,8 +346,6 @@
101
346
  - Initial plan
102
347
  - Initial plan
103
348
 
104
-
105
-
106
349
  All notable changes to this project will be documented in this file.
107
350
 
108
351
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
@@ -111,17 +354,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
111
354
  ## [Unreleased]
112
355
 
113
356
  ### Added
357
+
114
358
  - Comprehensive documentation organization system in `/docs/` directory
115
359
  - Standardized templates for feature documentation, release notes, and change tracking
116
360
  - Organized directory structure for releases, features, systems, and configuration documentation
117
361
 
118
362
  ### Changed
363
+
119
364
  - Migrated scattered documentation files to organized structure
120
365
  - Improved documentation discoverability and maintenance
121
366
 
122
367
  ## [0.5.0] - 2025-10-25
123
368
 
124
369
  ### Added
370
+
125
371
  - **📊 Comprehensive Sitemap Integration**: Unified layout combining collections, statistics, and navigation
126
372
  - Real-time site statistics dashboard with 6 key performance indicators
127
373
  - Interactive search and filtering across all content types
@@ -136,16 +382,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
136
382
  - Comprehensive documentation and implementation guides
137
383
 
138
384
  ### Changed
385
+
139
386
  - **🏗️ Navigation System**: Consolidated duplicate sitemap entries into unified comprehensive view
140
387
  - **🎨 Visual Design**: Updated to modern card-based layout with smooth transitions
141
388
  - **📱 Mobile Experience**: Enhanced mobile responsiveness and touch interactions
142
389
 
143
390
  ### Fixed
391
+
144
392
  - **🐛 Dark Mode Compatibility**: Resolved background color issues in dark theme
145
393
  - **🔧 Collection Filtering**: Fixed functionality for dynamic content filtering
146
394
  - **🔗 Link Navigation**: Corrected internal link behavior and navigation flow
147
395
 
148
396
  ### Technical Details
397
+
149
398
  - **Files Added**: `_layouts/sitemap-collection.html`, enhanced navigation data files
150
399
  - **Files Modified**: Main navigation configuration, sitemap pages
151
400
  - **Performance**: Optimized DOM manipulation and content rendering
@@ -156,6 +405,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
156
405
  ## [0.4.0] - 2025-10-10
157
406
 
158
407
  ### Added
408
+
159
409
  - **📊 Comprehensive Site Statistics Dashboard**: Complete analytics system for content insights
160
410
  - Dynamic statistics generation from site content using Ruby script
161
411
  - Real-time analytics showing content pieces, categories, tags, and word counts
@@ -177,6 +427,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
177
427
  - Smooth scroll navigation and fade-in animations for modern UX
178
428
 
179
429
  ### Changed
430
+
180
431
  - **📈 Activity Level Intelligence**: Dynamic threshold calculation replacing static values
181
432
  - Categories: High activity (≥70% of max), Medium (≥40% of max), Low (remainder)
182
433
  - Tags: Frequently used (≥60% of max), Moderately used (≥20% of max), Occasionally used (remainder)
@@ -187,6 +438,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
187
438
  - Optimized data processing without complex sorting operations
188
439
 
189
440
  ### Fixed
441
+
190
442
  - **🐛 Data Display Issues**: Resolved template rendering and data access problems
191
443
  - Fixed Liquid template syntax errors causing empty displays
192
444
  - Corrected data structure references across all components
@@ -198,6 +450,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
198
450
  ## [0.3.0] - 2025-01-27
199
451
 
200
452
  ### Added
453
+
201
454
  - **🎨 Mermaid Diagram Integration v2.0**: Comprehensive diagramming system
202
455
  - Complete diagram support: flowcharts, sequence diagrams, class diagrams, state diagrams, ER diagrams, Gantt charts, pie charts, git graphs, journey diagrams, and mindmaps
203
456
  - GitHub Pages compatibility with both local development and deployment
@@ -216,11 +469,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
216
469
  - Performance validation and benchmarking
217
470
 
218
471
  ### Changed
472
+
219
473
  - **📁 File Organization**: 53% reduction from 15 to 7 Mermaid-related files
220
474
  - **🏗️ Architecture**: Modular include system with clear responsibilities
221
475
  - **📖 Documentation**: Consolidated and improved documentation structure
222
476
 
223
477
  ### Fixed
478
+
224
479
  - **🔧 Configuration**: Enhanced Jekyll and GitHub Pages compatibility
225
480
  - **⚡ Performance**: Optimized loading and rendering speed
226
481
  - **🎯 Usability**: Improved setup process and error handling
@@ -230,27 +485,32 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
230
485
  ## [0.2.1] - 2025-09-30
231
486
 
232
487
  ### Added
488
+
233
489
  - Enhanced markdown linting configuration
234
490
  - Improved Jekyll template support for link checking
235
491
  - Better configuration for markdown validation
236
492
 
237
493
  ### Changed
494
+
238
495
  - Updated markdown-link-check configuration with Jekyll-specific patterns
239
496
  - Relaxed line length requirements in markdownlint configuration
240
497
  - Added support for more HTML elements in markdown
241
498
 
242
499
  ### Fixed
500
+
243
501
  - Improved markdown validation for Jekyll projects
244
502
  - Better handling of Liquid templates in link validation
245
503
 
246
504
  ## [0.2.0] - 2025-09-01
247
505
 
248
506
  ### Changed
507
+
249
508
  - Version bump to 0.2.0 with improvements
250
509
 
251
510
  ## [0.1.9] - 2025-01-27
252
511
 
253
512
  ### Added
513
+
254
514
  - **🐳 Docker-First Development Evolution**: Complete transformation to containerized development
255
515
  - AI-powered `init_setup.sh` with intelligent environment detection and auto-healing
256
516
  - Cross-platform Docker Compose configuration with Apple Silicon optimization
@@ -269,12 +529,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
269
529
  - AI-generated documentation and setup instructions
270
530
 
271
531
  ### Changed
532
+
272
533
  - **🔧 Installation Philosophy**: Shifted from traditional Ruby/Jekyll setup to Docker-first approach
273
534
  - Disabled local theme dependencies to avoid gemspec issues
274
535
  - Optimized for containerized development environments
275
536
  - Enhanced cross-platform compatibility and consistency
276
537
 
277
538
  ### Fixed
539
+
278
540
  - **🐛 Theme Dependency Issues**: Resolved Jekyll theme not found errors
279
541
  - Commented out problematic Jekyll includes in README.md
280
542
  - Disabled `remote_theme` in development configuration
@@ -287,6 +549,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
287
549
  ## [0.1.8] - 2025-01-03
288
550
 
289
551
  ### Added
552
+
290
553
  - **Comprehensive Gem Automation System**: Unified automation ecosystem
291
554
  - Zero-click releases with multi-environment testing
292
555
  - Production-ready CI/CD pipeline with GitHub Actions integration
@@ -299,6 +562,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
299
562
  - **Cleanup Functions**: Automatic cleanup of temporary files after remote installation
300
563
 
301
564
  ### Changed
565
+
302
566
  - **Feature Documentation Restructure**: Consolidated redundant automation feature entries
303
567
  - **Simplified Installation Process**: Updated to use single install command
304
568
  - **Azure-Ready Configuration**: Pre-configured directory structure for Azure Static Web Apps
@@ -306,9 +570,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
306
570
  - **Improved Help System**: Added remote installation examples
307
571
 
308
572
  ### Removed
573
+
309
574
  - **Redundant Documentation**: Eliminated duplicate automation documentation files
310
575
 
311
576
  ### Fixed
577
+
312
578
  - **Installation Script Compatibility**: Made compatible with both local and remote execution
313
579
  - **Directory Structure**: Optimized for Azure Static Web Apps deployment
314
580
  - **Markdown Lint Issues**: Fixed all markdown formatting violations
@@ -316,6 +582,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
316
582
  ## [0.1.7] - 2024-12-01
317
583
 
318
584
  ### Added
585
+
319
586
  - Bootstrap Jekyll theme for headless GitHub Pages CMS
320
587
  - Basic theme structure with layouts, includes, and assets
321
588
  - Jekyll compatibility with GitHub Pages
@@ -324,6 +591,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
324
591
  - Makefile for simplified command access
325
592
 
326
593
  ### Changed
594
+
327
595
  - Initial theme implementation and project structure
328
596
 
329
597
  ---
@@ -331,6 +599,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
331
599
  ## Documentation
332
600
 
333
601
  For detailed documentation on features, systems, and configuration:
602
+
334
603
  - **[Documentation Center](docs/README.md)** - Complete documentation overview
335
604
  - **[Release Documentation](docs/releases/README.md)** - Historical release information
336
605
  - **[Feature Documentation](docs/features/README.md)** - Detailed feature guides
@@ -347,4 +616,4 @@ For detailed documentation on features, systems, and configuration:
347
616
  [0.2.0]: https://github.com/bamr87/zer0-mistakes/compare/v0.1.9...v0.2.0
348
617
  [0.1.9]: https://github.com/bamr87/zer0-mistakes/compare/v0.1.8...v0.1.9
349
618
  [0.1.8]: https://github.com/bamr87/zer0-mistakes/compare/v0.1.7...v0.1.8
350
- [0.1.7]: https://github.com/bamr87/zer0-mistakes/releases/tag/v0.1.7
619
+ [0.1.7]: https://github.com/bamr87/zer0-mistakes/releases/tag/v0.1.7