jekyll-theme-zer0 0.8.1 → 0.10.3
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 +308 -4
- data/README.md +58 -25
- data/_data/README.md +4 -5
- data/_includes/README.md +1 -1
- data/_includes/components/mermaid.html +98 -9
- data/_includes/content/intro.html +13 -1
- data/_includes/core/header.html +1 -1
- data/_includes/stats/README.md +14 -2
- data/_layouts/README.md +3 -3
- data/_layouts/category.html +16 -6
- data/_layouts/collection.html +8 -3
- data/_layouts/journals.html +8 -3
- data/_sass/core/_theme.scss +4 -1
- data/_sass/custom.scss +20 -12
- data/assets/images/previews/10-ai-tools-that-will-transform-your-productivity-.png +0 -0
- data/assets/images/previews/business.png +0 -0
- data/assets/images/previews/css-grid-mastery-build-any-layout-you-can-imagine.png +0 -0
- data/assets/images/previews/development.png +0 -0
- data/assets/images/previews/github-setup-deployment.png +0 -0
- data/assets/images/previews/jekyll-setup.png +0 -0
- data/assets/images/previews/machine-setup.png +0 -0
- data/assets/images/previews/published-documentation-library.png +0 -0
- data/assets/images/previews/quantum-computing-explained-from-qubits-to-quantum.png +0 -0
- data/assets/images/previews/science.png +0 -0
- data/assets/images/previews/technology.png +0 -0
- data/assets/images/previews/the-complete-guide-to-startup-funding-in-2025.png +0 -0
- data/assets/images/previews/the-remote-work-revolution-how-global-teams-are-re.png +0 -0
- data/assets/images/previews/tutorial.png +0 -0
- data/assets/images/previews/world-news.png +0 -0
- data/assets/images/previews/zer0-mistakes-news-network-building-dynamic-news-s.png +0 -0
- data/assets/images/previews/zer0-mistakes-quick-start-guide.png +0 -0
- data/assets/js/auto-hide-nav.js +79 -16
- data/scripts/bin/build +115 -0
- data/scripts/bin/release +240 -0
- data/scripts/bin/test +203 -0
- data/scripts/features/generate-preview-images +846 -0
- data/scripts/features/install-preview-generator +531 -0
- data/scripts/features/preview_generator.py +646 -0
- data/scripts/generate-preview-images.sh +38 -93
- data/scripts/lib/README.md +35 -7
- data/scripts/lib/preview_generator.py +37 -22
- data/scripts/test/integration/auto-version +243 -0
- data/scripts/test/integration/mermaid +252 -0
- data/scripts/test/lib/run_tests.sh +151 -0
- data/scripts/test/lib/test_changelog.sh +90 -0
- data/scripts/test/lib/test_gem.sh +71 -0
- data/scripts/test/lib/test_git.sh +85 -0
- data/scripts/test/lib/test_validation.sh +75 -0
- data/scripts/test/lib/test_version.sh +101 -0
- data/scripts/test/theme/validate +120 -0
- data/scripts/test-mermaid.sh +51 -11
- data/scripts/utils/analyze-commits +300 -0
- data/scripts/utils/fix-markdown +251 -0
- data/scripts/utils/setup +137 -0
- data/scripts/version.sh +26 -0
- metadata +37 -8
- data/scripts/build.sh +0 -33
- data/scripts/build.sh.legacy +0 -174
- data/scripts/gem-publish.sh +0 -42
- data/scripts/gem-publish.sh.legacy +0 -700
- data/scripts/release.sh +0 -33
- data/scripts/release.sh.legacy +0 -342
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d85d69f52f828fb686300bac5c2312c0c8bfbd1eed9059fab3c071073efb003b
|
|
4
|
+
data.tar.gz: dd68d098ec262a62b7ab3c50163830467fdaa36fe3cbba9c00941e6893f334bd
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c352ba15e82dfdeb1945caddbc35fff0dc7c8d26431d1d73f5ba66fb51055fa0ba046bdcde3f4c4e48d5ddcafc8bcdca50ce43b39a656e85ba95af656a274b21
|
|
7
|
+
data.tar.gz: a52ea996e45089efcb33286a86555e6f340d93273e45552455e2b5331564fe0ce3cbc781246372d1fac567f5a974cb4cf6b5613caa9a798eec7d1a69587459a4
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,282 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.10.3] - 2025-11-29
|
|
4
|
+
|
|
5
|
+
### Added
|
|
6
|
+
|
|
7
|
+
- **New: AI-Generated Preview Images** - 17 new preview images for posts and collections
|
|
8
|
+
- Business, Development, Science, Technology, Tutorial, World category index pages
|
|
9
|
+
- Individual post previews: startup funding, quantum computing, AI tools, CSS grid, remote work
|
|
10
|
+
- Quickstart guide previews: GitHub setup, Jekyll setup, machine setup
|
|
11
|
+
- Documentation and blog index previews
|
|
12
|
+
|
|
13
|
+
### Changed
|
|
14
|
+
|
|
15
|
+
- **Improved: Preview Image Path Handling** (`_layouts/journals.html`, `_layouts/category.html`, `_layouts/collection.html`)
|
|
16
|
+
- Layouts now support both absolute paths (`/assets/...`) and relative paths
|
|
17
|
+
- Conditional logic detects path type and constructs URL correctly
|
|
18
|
+
- Eliminates double-slash issues in image URLs
|
|
19
|
+
|
|
20
|
+
- **Improved: Intro Section Preview Image Logic** (`_includes/content/intro.html`)
|
|
21
|
+
- Smart path detection for preview images (absolute vs relative)
|
|
22
|
+
- Handles URLs with `://` schemes, paths starting with `/`, and relative filenames
|
|
23
|
+
- Cleaner Liquid template logic with proper variable assignment
|
|
24
|
+
|
|
25
|
+
- **Improved: Docker Development Setup** (`docker-compose.yml`, `docker/Dockerfile`)
|
|
26
|
+
- Command now runs `bundle install` before Jekyll serve (fixes volume mount overwrites)
|
|
27
|
+
- Dockerfile copies gemspec and lib/ for proper dependency resolution
|
|
28
|
+
- More reliable container startup with dependency installation
|
|
29
|
+
|
|
30
|
+
- **Improved: Preview Image Generator** (`scripts/lib/preview_generator.py`)
|
|
31
|
+
- Switched from OpenAI SDK to direct HTTP API calls
|
|
32
|
+
- Eliminates SDK dependency - only requires `requests` package
|
|
33
|
+
- Better error handling with HTTP status code parsing
|
|
34
|
+
- Added request timeouts (120s for generation, 60s for download)
|
|
35
|
+
|
|
36
|
+
### Fixed
|
|
37
|
+
|
|
38
|
+
- **Fixed: Asset Paths in Config** (`_config.yml`)
|
|
39
|
+
- Corrected `teaser` and `info_banner` paths to use `/assets/images/` prefix
|
|
40
|
+
- Images now load correctly across all pages
|
|
41
|
+
|
|
42
|
+
- **Fixed: Preview Image Double-Slash URLs**
|
|
43
|
+
- Removed extra `/` between `public_folder` and `site.teaser` in fallback images
|
|
44
|
+
- All layouts now generate clean, valid image URLs
|
|
45
|
+
|
|
46
|
+
## [0.10.2] - 2025-11-28
|
|
47
|
+
|
|
48
|
+
### Added
|
|
49
|
+
|
|
50
|
+
- **Enhanced: Navbar Auto-Hide on Scroll** (`assets/js/auto-hide-nav.js`)
|
|
51
|
+
- Navbar hides when scrolling down past 100px threshold
|
|
52
|
+
- Navbar reappears immediately when scrolling up
|
|
53
|
+
- Automatic body padding to prevent content jump under fixed navbar
|
|
54
|
+
- Performance-optimized with `requestAnimationFrame` throttling
|
|
55
|
+
- Respects `prefers-reduced-motion` accessibility setting
|
|
56
|
+
|
|
57
|
+
### Changed
|
|
58
|
+
|
|
59
|
+
- **Improved: Header Positioning** (`_includes/core/header.html`)
|
|
60
|
+
- Changed from `z-1` to Bootstrap's `fixed-top` class
|
|
61
|
+
- Provides proper z-index (1030) and fixed positioning
|
|
62
|
+
|
|
63
|
+
- **Refactored: Navbar CSS** (`_sass/custom.scss`)
|
|
64
|
+
- Replaced broken `.hide-navbar` and `.fixed-navbar` classes
|
|
65
|
+
- New `.navbar-hidden` class with `translateY(-100%)` transform
|
|
66
|
+
- Added `!important` to override Bootstrap's `fixed-top` positioning
|
|
67
|
+
- Added explicit background color for opaque navbar
|
|
68
|
+
- Added `prefers-reduced-motion` media query for accessibility
|
|
69
|
+
|
|
70
|
+
### Fixed
|
|
71
|
+
|
|
72
|
+
- **Fixed: Navbar Blocking Content on Scroll Up**
|
|
73
|
+
- Content no longer obscured when scrolling back to top
|
|
74
|
+
- Body padding dynamically calculated based on navbar height
|
|
75
|
+
|
|
76
|
+
## [0.10.1] - 2025-11-28
|
|
77
|
+
|
|
78
|
+
### Added
|
|
79
|
+
|
|
80
|
+
- **Enhanced: Mermaid v2.1 - GitHub Pages Compatible** (`_includes/components/mermaid.html`)
|
|
81
|
+
- Client-side conversion of native markdown ` ```mermaid ` code blocks to rendered diagrams
|
|
82
|
+
- Full GitHub Pages compatibility without custom plugins (all processing client-side)
|
|
83
|
+
- CSS to hide code blocks during conversion (prevents flash of unstyled content)
|
|
84
|
+
- Print styles and improved responsive design
|
|
85
|
+
- Documented dual syntax support (native markdown and HTML div)
|
|
86
|
+
|
|
87
|
+
### Changed
|
|
88
|
+
|
|
89
|
+
- **Improved: Mermaid Configuration** (`_config.yml`)
|
|
90
|
+
- Added clear comments explaining GitHub Pages compatibility
|
|
91
|
+
- Documented that `jekyll-mermaid` plugin is optional
|
|
92
|
+
- Updated usage instructions for both syntax options
|
|
93
|
+
|
|
94
|
+
- **Improved: Mermaid Documentation**
|
|
95
|
+
- `docs/jekyll/mermaid.md`: Added native markdown syntax as recommended option
|
|
96
|
+
- `docs/jekyll/mermaid-native-markdown.md`: Fixed documentation about front matter requirements
|
|
97
|
+
- Added GitHub Pages compatibility badges to documentation
|
|
98
|
+
|
|
99
|
+
### Fixed
|
|
100
|
+
|
|
101
|
+
- **Fixed: Native Markdown Mermaid Syntax Not Rendering**
|
|
102
|
+
- ` ```mermaid ` code blocks now properly convert to diagrams via JavaScript
|
|
103
|
+
- Works with GitHub Pages remote_theme deployment
|
|
104
|
+
|
|
105
|
+
- **Fixed: Mermaid Test Script** (`scripts/test-mermaid.sh`)
|
|
106
|
+
- Corrected file path references from `pages/_docs/jekyll/` to `docs/jekyll/`
|
|
107
|
+
- Fixed SIGPIPE issues with `curl | grep` pipelines causing false test failures
|
|
108
|
+
- All 21 tests now pass successfully
|
|
109
|
+
|
|
110
|
+
## [0.10.0] - 2025-11-28
|
|
111
|
+
|
|
112
|
+
### Added
|
|
113
|
+
|
|
114
|
+
- **New: Zero Version Pin Strategy** - Enterprise-grade dependency management paradigm
|
|
115
|
+
- Always use latest compatible versions with zero pins anywhere
|
|
116
|
+
- Fail fast in CI if incompatible → caught early, not in production
|
|
117
|
+
- Production uses immutable image tags (date+commit hash), never `:latest`
|
|
118
|
+
- Full documentation in `docs/systems/ZERO_PIN_STRATEGY.md`
|
|
119
|
+
|
|
120
|
+
- **New: Docker Multi-Stage Dockerfile** (`docker/Dockerfile`)
|
|
121
|
+
- `base` stage: Ruby slim + build dependencies
|
|
122
|
+
- `dev-test` stage: Full dev/test gems for CI validation
|
|
123
|
+
- `build` stage: Production Jekyll build
|
|
124
|
+
- `production` stage: Minimal runtime for serving
|
|
125
|
+
|
|
126
|
+
- **New: Docker Compose Configurations**
|
|
127
|
+
- `docker-compose.yml`: Development environment with live reload
|
|
128
|
+
- `docker-compose.test.yml`: CI testing overlay with validation
|
|
129
|
+
- `docker-compose.prod.yml`: Production with immutable tags only
|
|
130
|
+
|
|
131
|
+
- **New: CI Workflow for Zero Pin Strategy** (`.github/workflows/test-latest.yml`)
|
|
132
|
+
- Builds with `--no-cache` for latest dependencies
|
|
133
|
+
- Documents resolved versions in workflow summary
|
|
134
|
+
- Tags and publishes immutable images on success
|
|
135
|
+
- Debug information on failure
|
|
136
|
+
|
|
137
|
+
- **New: `.dockerignore`** - Optimized Docker build context
|
|
138
|
+
- Excludes development files, tests, logs, and build artifacts
|
|
139
|
+
- Keeps only files needed for container builds
|
|
140
|
+
|
|
141
|
+
- **New: VS Code Workspace Configuration** (`zer0-mistakes.code-workspace`)
|
|
142
|
+
- Copilot settings for all file types
|
|
143
|
+
- File associations for Jekyll/Liquid
|
|
144
|
+
- Terminal environment variables for Docker
|
|
145
|
+
|
|
146
|
+
### Changed
|
|
147
|
+
|
|
148
|
+
- **Improved: `Gemfile`** - Refactored for zero version pin strategy
|
|
149
|
+
- Removed all version constraints
|
|
150
|
+
- Added development/test group with html-proofer, rspec, rake, rubocop
|
|
151
|
+
- Added platform-specific dependencies for Windows
|
|
152
|
+
- Comprehensive documentation comments
|
|
153
|
+
|
|
154
|
+
- **Improved: `docker-compose.yml`** - Enhanced for zero pin strategy
|
|
155
|
+
- Uses custom Dockerfile instead of jekyll/jekyll image
|
|
156
|
+
- Added bundle cache volume for faster rebuilds
|
|
157
|
+
- LiveReload port (35729) exposed
|
|
158
|
+
- TTY enabled for interactive commands
|
|
159
|
+
|
|
160
|
+
- **Improved: `jekyll-theme-zer0.gemspec`** - Compatibility updates
|
|
161
|
+
- Ruby requirement lowered to >= 2.7.0 (from 3.0.0) for broader compatibility
|
|
162
|
+
- Bundler dependency changed to ~> 2.3 (from >= 2.3)
|
|
163
|
+
|
|
164
|
+
- **Improved: CI Workflow** (`.github/workflows/ci.yml`)
|
|
165
|
+
- Added documentation comments explaining version strategy
|
|
166
|
+
- Clarified that explicit versions are for backwards compatibility testing
|
|
167
|
+
|
|
168
|
+
### Fixed
|
|
169
|
+
|
|
170
|
+
- **Fixed: `scripts/generate-preview-images.sh`** - Reverted to simpler collection handling
|
|
171
|
+
- Removed dynamic collection reading (caused issues in some environments)
|
|
172
|
+
- Restored hardcoded collection list for reliability
|
|
173
|
+
- Fixed yq vs sed front matter update logic
|
|
174
|
+
|
|
175
|
+
## [0.9.2] - 2025-11-28
|
|
176
|
+
|
|
177
|
+
### Changed
|
|
178
|
+
- Version bump: patch release
|
|
179
|
+
|
|
180
|
+
### Commits in this release
|
|
181
|
+
- 509d705 fix(ci): fix false positive failure detection in test report validation
|
|
182
|
+
- 77dc04b fix(ci): fix shell syntax error in test-suite validation step
|
|
183
|
+
|
|
184
|
+
|
|
185
|
+
## [0.9.1] - 2025-11-27
|
|
186
|
+
|
|
187
|
+
### Fixed
|
|
188
|
+
|
|
189
|
+
- **CI: Test suite failures across Ruby versions** - Resolved issues causing CI failures
|
|
190
|
+
- Fixed `--skip-docker` option error by only passing it to deployment tests (not quality tests)
|
|
191
|
+
- Fixed bash arithmetic syntax error in Liquid tag validation by sanitizing grep output
|
|
192
|
+
- Added bundler 2.5 requirement to setup-ruby action for Ruby 3.0 compatibility
|
|
193
|
+
|
|
194
|
+
## [0.9.0] - 2025-06-30
|
|
195
|
+
|
|
196
|
+
### Changed
|
|
197
|
+
|
|
198
|
+
- **Refactored: Scripts Directory Structure** - Complete reorganization for better maintainability
|
|
199
|
+
- New `bin/` directory for main entry points (`release`, `build`, `test`)
|
|
200
|
+
- New `utils/` directory for utility scripts (`setup`, `analyze-commits`, `fix-markdown`)
|
|
201
|
+
- New `features/` directory for feature-specific scripts (`generate-preview-images`, `install-preview-generator`)
|
|
202
|
+
- New `test/` directory hierarchy with `lib/`, `theme/`, and `integration/` subdirectories
|
|
203
|
+
- Unified test runner in `bin/test` that runs all test suites with single command
|
|
204
|
+
|
|
205
|
+
- **Improved: Script Library Integration** - All scripts now use shared `lib/common.sh`
|
|
206
|
+
- Consistent logging functions (`log`, `info`, `success`, `warn`, `error`, `debug`)
|
|
207
|
+
- Standardized color output and formatting
|
|
208
|
+
- Removed duplicate code from individual scripts
|
|
209
|
+
|
|
210
|
+
- **Updated: Documentation** - Complete rewrite of `scripts/README.md`
|
|
211
|
+
- Clear directory structure overview
|
|
212
|
+
- Quick start guide for common operations
|
|
213
|
+
- Migration table from legacy to new script locations
|
|
214
|
+
- Dependency graph for library modules
|
|
215
|
+
|
|
216
|
+
### Added
|
|
217
|
+
|
|
218
|
+
- **New: `bin/test` Unified Test Runner** - Single command to run all tests
|
|
219
|
+
- Supports running specific test suites (`lib`, `theme`, `integration`, `all`)
|
|
220
|
+
- Verbose output mode with `--verbose` flag
|
|
221
|
+
- Summary of passed/failed test suites
|
|
222
|
+
|
|
223
|
+
- **New: `test/theme/validate`** - Theme structure validation tests
|
|
224
|
+
- Validates layouts, includes, and assets directories
|
|
225
|
+
- Sources shared library for consistent output
|
|
226
|
+
|
|
227
|
+
- **New: `test/integration/auto-version`** - Auto-version integration tests
|
|
228
|
+
- Moved from `tests/` directory with updated library paths
|
|
229
|
+
|
|
230
|
+
### Deprecated
|
|
231
|
+
|
|
232
|
+
- **Deprecated: `scripts/version.sh`** - Now displays deprecation warning
|
|
233
|
+
- Recommends using `bin/release` for full workflow
|
|
234
|
+
- Will be removed in future release
|
|
235
|
+
|
|
236
|
+
### Migration Guide
|
|
237
|
+
|
|
238
|
+
| Legacy Script | New Location |
|
|
239
|
+
|--------------|--------------|
|
|
240
|
+
| `version.sh` | `bin/release` |
|
|
241
|
+
| `setup.sh` | `utils/setup` |
|
|
242
|
+
| `test.sh` | `bin/test` or `test/theme/validate` |
|
|
243
|
+
| `analyze-commits.sh` | `utils/analyze-commits` |
|
|
244
|
+
| `fix-markdown-format.sh` | `utils/fix-markdown` |
|
|
245
|
+
| `generate-preview-images.sh` | `features/generate-preview-images` |
|
|
246
|
+
| `install-preview-generator.sh` | `features/install-preview-generator` |
|
|
247
|
+
|
|
248
|
+
## [0.8.2] - 2025-11-27
|
|
249
|
+
|
|
250
|
+
### Changed
|
|
251
|
+
|
|
252
|
+
- **Refactored: GitHub Actions Workflows** - Consolidated 5 workflows into 3 streamlined workflows
|
|
253
|
+
- Merged `auto-version-bump.yml` into `version-bump.yml` with both automatic and manual triggers
|
|
254
|
+
- Merged `gem-release.yml` and `github-release.yml` into unified `release.yml`
|
|
255
|
+
- Removed duplicate `quality` job from `ci.yml` (functionality retained in `quality-checks` job)
|
|
256
|
+
- Updated `ci.yml` build job to use `scripts/build` instead of deprecated `build.sh`
|
|
257
|
+
|
|
258
|
+
- **Updated: Composite Action `prepare-release`** - Now uses `scripts/build` instead of deprecated `build.sh`
|
|
259
|
+
|
|
260
|
+
### Added
|
|
261
|
+
|
|
262
|
+
- **New Documentation: `.github/workflows/README.md`** - Comprehensive workflow documentation
|
|
263
|
+
- Workflow trigger flow diagram
|
|
264
|
+
- Job descriptions and timeout configurations
|
|
265
|
+
- Manual dispatch options and troubleshooting guide
|
|
266
|
+
|
|
267
|
+
- **New Documentation: `.github/actions/README.md`** - Composite actions documentation
|
|
268
|
+
- Input/output specifications for all 5 actions
|
|
269
|
+
- Usage examples and best practices
|
|
270
|
+
- Action creation guide and troubleshooting
|
|
271
|
+
|
|
272
|
+
### Removed
|
|
273
|
+
|
|
274
|
+
- **Deleted: `auto-version-bump.yml`** - Functionality merged into `version-bump.yml`
|
|
275
|
+
- **Deleted: `gem-release.yml`** - Functionality merged into `release.yml`
|
|
276
|
+
- **Deleted: `github-release.yml`** - Functionality merged into `release.yml`
|
|
277
|
+
- **Deleted: Deprecated wrapper scripts** - `build.sh`, `gem-publish.sh`, `release.sh` and their `.legacy` versions
|
|
278
|
+
- These were deprecated redirects to the new modular commands (`scripts/build`, `scripts/release`)
|
|
279
|
+
|
|
3
280
|
## [0.8.1] - 2025-11-27
|
|
4
281
|
|
|
5
282
|
### Added
|
|
@@ -48,7 +325,7 @@
|
|
|
48
325
|
- One-command remote installation for other Jekyll sites
|
|
49
326
|
- **New Plugin: `_plugins/preview_image_generator.rb`** - Jekyll integration with:
|
|
50
327
|
- Liquid filters: `has_preview_image`, `preview_image_path`, `preview_filename`
|
|
51
|
-
- Liquid tags: `{% preview_image_status %}`, `{% preview_images_missing %}`
|
|
328
|
+
- Liquid tags: {% raw %}`{% preview_image_status %}`, `{% preview_images_missing %}`{% endraw %}
|
|
52
329
|
- Build hook that reports missing preview images during Jekyll build
|
|
53
330
|
- **New Script: `scripts/generate-preview-images.sh`** - Main CLI for image generation
|
|
54
331
|
- `--list-missing` to find posts without preview images
|
|
@@ -145,6 +422,7 @@
|
|
|
145
422
|
## [0.6.0] - 2025-11-22
|
|
146
423
|
|
|
147
424
|
### Added
|
|
425
|
+
|
|
148
426
|
- Implement PostHog analytics and cookie consent
|
|
149
427
|
- Add code copy functionality and enhance documentation structure
|
|
150
428
|
- Revise copilot instructions and add comprehensive Jekyll include development guidelines
|
|
@@ -154,6 +432,7 @@
|
|
|
154
432
|
- Enhance CI/CD testing framework with comprehensive documentation and automated workflows
|
|
155
433
|
|
|
156
434
|
### Changed
|
|
435
|
+
|
|
157
436
|
- Ignore .frontmatter directory
|
|
158
437
|
- Update VS Code settings
|
|
159
438
|
- Documentation: Update README with new features and architecture
|
|
@@ -162,6 +441,7 @@
|
|
|
162
441
|
- Update version control instructions and add feature documentation
|
|
163
442
|
|
|
164
443
|
### Other
|
|
444
|
+
|
|
165
445
|
- Revert "Merge pull request #10 from bamr87/copilot/plan-mdx-file-handling"
|
|
166
446
|
- Add Mermaid documentation and test suite, enhance site structure
|
|
167
447
|
- Merge pull request #9 from bamr87/copilot/setup-copilot-instructions
|
|
@@ -173,8 +453,6 @@
|
|
|
173
453
|
- Initial plan
|
|
174
454
|
- Initial plan
|
|
175
455
|
|
|
176
|
-
|
|
177
|
-
|
|
178
456
|
All notable changes to this project will be documented in this file.
|
|
179
457
|
|
|
180
458
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
@@ -183,17 +461,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
183
461
|
## [Unreleased]
|
|
184
462
|
|
|
185
463
|
### Added
|
|
464
|
+
|
|
186
465
|
- Comprehensive documentation organization system in `/docs/` directory
|
|
187
466
|
- Standardized templates for feature documentation, release notes, and change tracking
|
|
188
467
|
- Organized directory structure for releases, features, systems, and configuration documentation
|
|
189
468
|
|
|
190
469
|
### Changed
|
|
470
|
+
|
|
191
471
|
- Migrated scattered documentation files to organized structure
|
|
192
472
|
- Improved documentation discoverability and maintenance
|
|
193
473
|
|
|
194
474
|
## [0.5.0] - 2025-10-25
|
|
195
475
|
|
|
196
476
|
### Added
|
|
477
|
+
|
|
197
478
|
- **📊 Comprehensive Sitemap Integration**: Unified layout combining collections, statistics, and navigation
|
|
198
479
|
- Real-time site statistics dashboard with 6 key performance indicators
|
|
199
480
|
- Interactive search and filtering across all content types
|
|
@@ -208,16 +489,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
208
489
|
- Comprehensive documentation and implementation guides
|
|
209
490
|
|
|
210
491
|
### Changed
|
|
492
|
+
|
|
211
493
|
- **🏗️ Navigation System**: Consolidated duplicate sitemap entries into unified comprehensive view
|
|
212
494
|
- **🎨 Visual Design**: Updated to modern card-based layout with smooth transitions
|
|
213
495
|
- **📱 Mobile Experience**: Enhanced mobile responsiveness and touch interactions
|
|
214
496
|
|
|
215
497
|
### Fixed
|
|
498
|
+
|
|
216
499
|
- **🐛 Dark Mode Compatibility**: Resolved background color issues in dark theme
|
|
217
500
|
- **🔧 Collection Filtering**: Fixed functionality for dynamic content filtering
|
|
218
501
|
- **🔗 Link Navigation**: Corrected internal link behavior and navigation flow
|
|
219
502
|
|
|
220
503
|
### Technical Details
|
|
504
|
+
|
|
221
505
|
- **Files Added**: `_layouts/sitemap-collection.html`, enhanced navigation data files
|
|
222
506
|
- **Files Modified**: Main navigation configuration, sitemap pages
|
|
223
507
|
- **Performance**: Optimized DOM manipulation and content rendering
|
|
@@ -228,6 +512,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
228
512
|
## [0.4.0] - 2025-10-10
|
|
229
513
|
|
|
230
514
|
### Added
|
|
515
|
+
|
|
231
516
|
- **📊 Comprehensive Site Statistics Dashboard**: Complete analytics system for content insights
|
|
232
517
|
- Dynamic statistics generation from site content using Ruby script
|
|
233
518
|
- Real-time analytics showing content pieces, categories, tags, and word counts
|
|
@@ -249,6 +534,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
249
534
|
- Smooth scroll navigation and fade-in animations for modern UX
|
|
250
535
|
|
|
251
536
|
### Changed
|
|
537
|
+
|
|
252
538
|
- **📈 Activity Level Intelligence**: Dynamic threshold calculation replacing static values
|
|
253
539
|
- Categories: High activity (≥70% of max), Medium (≥40% of max), Low (remainder)
|
|
254
540
|
- Tags: Frequently used (≥60% of max), Moderately used (≥20% of max), Occasionally used (remainder)
|
|
@@ -259,6 +545,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
259
545
|
- Optimized data processing without complex sorting operations
|
|
260
546
|
|
|
261
547
|
### Fixed
|
|
548
|
+
|
|
262
549
|
- **🐛 Data Display Issues**: Resolved template rendering and data access problems
|
|
263
550
|
- Fixed Liquid template syntax errors causing empty displays
|
|
264
551
|
- Corrected data structure references across all components
|
|
@@ -270,6 +557,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
270
557
|
## [0.3.0] - 2025-01-27
|
|
271
558
|
|
|
272
559
|
### Added
|
|
560
|
+
|
|
273
561
|
- **🎨 Mermaid Diagram Integration v2.0**: Comprehensive diagramming system
|
|
274
562
|
- Complete diagram support: flowcharts, sequence diagrams, class diagrams, state diagrams, ER diagrams, Gantt charts, pie charts, git graphs, journey diagrams, and mindmaps
|
|
275
563
|
- GitHub Pages compatibility with both local development and deployment
|
|
@@ -288,11 +576,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
288
576
|
- Performance validation and benchmarking
|
|
289
577
|
|
|
290
578
|
### Changed
|
|
579
|
+
|
|
291
580
|
- **📁 File Organization**: 53% reduction from 15 to 7 Mermaid-related files
|
|
292
581
|
- **🏗️ Architecture**: Modular include system with clear responsibilities
|
|
293
582
|
- **📖 Documentation**: Consolidated and improved documentation structure
|
|
294
583
|
|
|
295
584
|
### Fixed
|
|
585
|
+
|
|
296
586
|
- **🔧 Configuration**: Enhanced Jekyll and GitHub Pages compatibility
|
|
297
587
|
- **⚡ Performance**: Optimized loading and rendering speed
|
|
298
588
|
- **🎯 Usability**: Improved setup process and error handling
|
|
@@ -302,27 +592,32 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
302
592
|
## [0.2.1] - 2025-09-30
|
|
303
593
|
|
|
304
594
|
### Added
|
|
595
|
+
|
|
305
596
|
- Enhanced markdown linting configuration
|
|
306
597
|
- Improved Jekyll template support for link checking
|
|
307
598
|
- Better configuration for markdown validation
|
|
308
599
|
|
|
309
600
|
### Changed
|
|
601
|
+
|
|
310
602
|
- Updated markdown-link-check configuration with Jekyll-specific patterns
|
|
311
603
|
- Relaxed line length requirements in markdownlint configuration
|
|
312
604
|
- Added support for more HTML elements in markdown
|
|
313
605
|
|
|
314
606
|
### Fixed
|
|
607
|
+
|
|
315
608
|
- Improved markdown validation for Jekyll projects
|
|
316
609
|
- Better handling of Liquid templates in link validation
|
|
317
610
|
|
|
318
611
|
## [0.2.0] - 2025-09-01
|
|
319
612
|
|
|
320
613
|
### Changed
|
|
614
|
+
|
|
321
615
|
- Version bump to 0.2.0 with improvements
|
|
322
616
|
|
|
323
617
|
## [0.1.9] - 2025-01-27
|
|
324
618
|
|
|
325
619
|
### Added
|
|
620
|
+
|
|
326
621
|
- **🐳 Docker-First Development Evolution**: Complete transformation to containerized development
|
|
327
622
|
- AI-powered `init_setup.sh` with intelligent environment detection and auto-healing
|
|
328
623
|
- Cross-platform Docker Compose configuration with Apple Silicon optimization
|
|
@@ -341,12 +636,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
341
636
|
- AI-generated documentation and setup instructions
|
|
342
637
|
|
|
343
638
|
### Changed
|
|
639
|
+
|
|
344
640
|
- **🔧 Installation Philosophy**: Shifted from traditional Ruby/Jekyll setup to Docker-first approach
|
|
345
641
|
- Disabled local theme dependencies to avoid gemspec issues
|
|
346
642
|
- Optimized for containerized development environments
|
|
347
643
|
- Enhanced cross-platform compatibility and consistency
|
|
348
644
|
|
|
349
645
|
### Fixed
|
|
646
|
+
|
|
350
647
|
- **🐛 Theme Dependency Issues**: Resolved Jekyll theme not found errors
|
|
351
648
|
- Commented out problematic Jekyll includes in README.md
|
|
352
649
|
- Disabled `remote_theme` in development configuration
|
|
@@ -359,6 +656,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
359
656
|
## [0.1.8] - 2025-01-03
|
|
360
657
|
|
|
361
658
|
### Added
|
|
659
|
+
|
|
362
660
|
- **Comprehensive Gem Automation System**: Unified automation ecosystem
|
|
363
661
|
- Zero-click releases with multi-environment testing
|
|
364
662
|
- Production-ready CI/CD pipeline with GitHub Actions integration
|
|
@@ -371,6 +669,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
371
669
|
- **Cleanup Functions**: Automatic cleanup of temporary files after remote installation
|
|
372
670
|
|
|
373
671
|
### Changed
|
|
672
|
+
|
|
374
673
|
- **Feature Documentation Restructure**: Consolidated redundant automation feature entries
|
|
375
674
|
- **Simplified Installation Process**: Updated to use single install command
|
|
376
675
|
- **Azure-Ready Configuration**: Pre-configured directory structure for Azure Static Web Apps
|
|
@@ -378,9 +677,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
378
677
|
- **Improved Help System**: Added remote installation examples
|
|
379
678
|
|
|
380
679
|
### Removed
|
|
680
|
+
|
|
381
681
|
- **Redundant Documentation**: Eliminated duplicate automation documentation files
|
|
382
682
|
|
|
383
683
|
### Fixed
|
|
684
|
+
|
|
384
685
|
- **Installation Script Compatibility**: Made compatible with both local and remote execution
|
|
385
686
|
- **Directory Structure**: Optimized for Azure Static Web Apps deployment
|
|
386
687
|
- **Markdown Lint Issues**: Fixed all markdown formatting violations
|
|
@@ -388,6 +689,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
388
689
|
## [0.1.7] - 2024-12-01
|
|
389
690
|
|
|
390
691
|
### Added
|
|
692
|
+
|
|
391
693
|
- Bootstrap Jekyll theme for headless GitHub Pages CMS
|
|
392
694
|
- Basic theme structure with layouts, includes, and assets
|
|
393
695
|
- Jekyll compatibility with GitHub Pages
|
|
@@ -396,6 +698,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
396
698
|
- Makefile for simplified command access
|
|
397
699
|
|
|
398
700
|
### Changed
|
|
701
|
+
|
|
399
702
|
- Initial theme implementation and project structure
|
|
400
703
|
|
|
401
704
|
---
|
|
@@ -403,6 +706,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
403
706
|
## Documentation
|
|
404
707
|
|
|
405
708
|
For detailed documentation on features, systems, and configuration:
|
|
709
|
+
|
|
406
710
|
- **[Documentation Center](docs/README.md)** - Complete documentation overview
|
|
407
711
|
- **[Release Documentation](docs/releases/README.md)** - Historical release information
|
|
408
712
|
- **[Feature Documentation](docs/features/README.md)** - Detailed feature guides
|
|
@@ -419,4 +723,4 @@ For detailed documentation on features, systems, and configuration:
|
|
|
419
723
|
[0.2.0]: https://github.com/bamr87/zer0-mistakes/compare/v0.1.9...v0.2.0
|
|
420
724
|
[0.1.9]: https://github.com/bamr87/zer0-mistakes/compare/v0.1.8...v0.1.9
|
|
421
725
|
[0.1.8]: https://github.com/bamr87/zer0-mistakes/compare/v0.1.7...v0.1.8
|
|
422
|
-
[0.1.7]: https://github.com/bamr87/zer0-mistakes/releases/tag/v0.1.7
|
|
726
|
+
[0.1.7]: https://github.com/bamr87/zer0-mistakes/releases/tag/v0.1.7
|