jekyll-theme-zer0 0.1.8 → 0.2.1
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 +144 -0
- data/README.md +504 -316
- data/_data/navigation/main.yml +15 -11
- data/_data/navigation/quickstart.yml +12 -0
- data/_includes/README.md +97 -0
- data/_includes/{info-section.html → components/info-section.html} +4 -4
- data/_includes/content/giscus.html +60 -0
- data/_includes/content/intro.html +66 -0
- data/_includes/{sitemap.html → content/sitemap.html} +1 -1
- data/_includes/{toc.html → content/toc.html} +1 -1
- data/_includes/{branding.html → core/branding.html} +2 -2
- data/_includes/core/footer.html +167 -0
- data/_includes/core/head.html +158 -0
- data/_includes/core/header.html +125 -0
- data/_includes/landing/landing-install-cards.html +52 -0
- data/_includes/landing/landing-quick-links.html +28 -0
- data/_includes/navigation/navbar.html +96 -0
- data/_includes/navigation/sidebar-left.html +83 -0
- data/_includes/{sidebar-right.html → navigation/sidebar-right.html} +3 -10
- data/_layouts/README.md +198 -0
- data/_layouts/blog.html +252 -143
- data/_layouts/collection.html +108 -27
- data/_layouts/default.html +74 -26
- data/_layouts/home.html +59 -9
- data/_layouts/index.html +47 -1
- data/_layouts/journals.html +11 -19
- data/_layouts/landing.html +148 -12
- data/_layouts/root.html +65 -30
- data/assets/js/back-to-top.js +16 -19
- metadata +65 -41
- data/_includes/footer.html +0 -57
- data/_includes/giscus.html +0 -16
- data/_includes/head.html +0 -95
- data/_includes/header.html +0 -79
- data/_includes/intro.html +0 -68
- data/_includes/navbar.html +0 -34
- data/_includes/sidebar-left.html +0 -41
- data/_includes/toc +0 -7
- data/_layouts/javascript.html +0 -8
- /data/_includes/{google-analytics.html → analytics/google-analytics.html} +0 -0
- /data/_includes/{google-tag-manager-body.html → analytics/google-tag-manager-body.html} +0 -0
- /data/_includes/{google-tag-manager-head.html → analytics/google-tag-manager-head.html} +0 -0
- /data/_includes/{dev-shortcuts.html → components/dev-shortcuts.html} +0 -0
- /data/_includes/{halfmoon.html → components/halfmoon.html} +0 -0
- /data/_includes/{js-cdn.html → components/js-cdn.html} +0 -0
- /data/_includes/{powered-by.html → components/powered-by.html} +0 -0
- /data/_includes/{quick-index.html → components/quick-index.html} +0 -0
- /data/_includes/{searchbar.html → components/searchbar.html} +0 -0
- /data/_includes/{svg.html → components/svg.html} +0 -0
- /data/_includes/{zer0-env-var.html → components/zer0-env-var.html} +0 -0
- /data/_includes/{seo.html → content/seo.html} +0 -0
- /data/_includes/{style.html → docs/bootstrap-docs.html} +0 -0
- /data/_includes/{breadcrumbs.html → navigation/breadcrumbs.html} +0 -0
- /data/_includes/{nav_list.html → navigation/nav_list.html} +0 -0
- /data/_includes/{sidebar-categories.html → navigation/sidebar-categories.html} +0 -0
- /data/_includes/{sidebar-folders.html → navigation/sidebar-folders.html} +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d3fd790a2d2dae62a4f192d6d7c5f83b63fe18196a5799e3feafe5de7add9256
|
|
4
|
+
data.tar.gz: 823b0d8f597bdde5333b2abfa40a93fb524a68a44ef4d0c1dd8b74a16f02cbba
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 62f9564650a8d6f8d43cae9945fc6e617e7f18de851ecbd7a361fa5c627e3ff1e08fe1725c9c72f13df1d8bb2931264f85b7802a13e565141b723a2406a4b640
|
|
7
|
+
data.tar.gz: c99393717b7180983fc6a07656871a535b34a2bc17e4bf8eff322ed042c9b074820bafbf5a7d536867904c4102c06817015d132a8daf7816240b179a6b8288dc
|
data/CHANGELOG.md
ADDED
|
@@ -0,0 +1,144 @@
|
|
|
1
|
+
## [0.2.1] - 2025-09-30
|
|
2
|
+
|
|
3
|
+
### Added
|
|
4
|
+
- Enhanced markdown linting configuration
|
|
5
|
+
- Improved Jekyll template support for link checking
|
|
6
|
+
- Better configuration for markdown validation
|
|
7
|
+
|
|
8
|
+
### Changed
|
|
9
|
+
- Updated markdown-link-check configuration with Jekyll-specific patterns
|
|
10
|
+
- Relaxed line length requirements in markdownlint configuration
|
|
11
|
+
- Added support for more HTML elements in markdown
|
|
12
|
+
|
|
13
|
+
### Fixed
|
|
14
|
+
- Improved markdown validation for Jekyll projects
|
|
15
|
+
- Better handling of Liquid templates in link validation
|
|
16
|
+
|
|
17
|
+
## [0.2.0] - 2025-09-01
|
|
18
|
+
|
|
19
|
+
### Changed
|
|
20
|
+
- Version bump to 0.2.0
|
|
21
|
+
|
|
22
|
+
# Changelog
|
|
23
|
+
|
|
24
|
+
All notable changes to this project will be documented in this file.
|
|
25
|
+
|
|
26
|
+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
27
|
+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
28
|
+
|
|
29
|
+
## [Unreleased]
|
|
30
|
+
|
|
31
|
+
### Added
|
|
32
|
+
- Version control best practices implementation
|
|
33
|
+
- Ruby-standard version management with `lib/jekyll-theme-zer0/version.rb`
|
|
34
|
+
- Enhanced gemspec with proper metadata and security settings
|
|
35
|
+
- Comprehensive version control instructions file
|
|
36
|
+
|
|
37
|
+
### Changed
|
|
38
|
+
- Migrated from package.json to Ruby version file for version management
|
|
39
|
+
- Updated GitHub Actions workflows to use Ruby version file
|
|
40
|
+
- Enhanced gemspec with proper metadata and constraints
|
|
41
|
+
- Improved version bump script to follow Ruby standards
|
|
42
|
+
|
|
43
|
+
### Fixed
|
|
44
|
+
- Version management now follows Ruby gem conventions
|
|
45
|
+
- Gemspec security and metadata improvements
|
|
46
|
+
|
|
47
|
+
## [0.1.9] - 2025-01-27
|
|
48
|
+
|
|
49
|
+
### Added
|
|
50
|
+
- **🐳 Docker-First Development Evolution**: Complete transformation to containerized development
|
|
51
|
+
- AI-powered `init_setup.sh` with intelligent environment detection and auto-healing
|
|
52
|
+
- Cross-platform Docker Compose configuration with Apple Silicon optimization
|
|
53
|
+
- Self-healing `_config_dev.yml` generation for Docker compatibility
|
|
54
|
+
- Enhanced `install.sh` with Docker-first optimization functions
|
|
55
|
+
- Comprehensive Docker troubleshooting and platform detection
|
|
56
|
+
|
|
57
|
+
- **🧠 AI-Powered Self-Healing Configuration**: Intelligent automation and error recovery
|
|
58
|
+
- Auto-detection and resolution of Jekyll theme dependency issues
|
|
59
|
+
- Intelligent platform-specific optimizations (Intel/Apple Silicon)
|
|
60
|
+
- Automatic generation of Docker-compatible development configurations
|
|
61
|
+
- Smart error recovery with detailed logging and guidance
|
|
62
|
+
|
|
63
|
+
- **🚀 Enhanced Installation System**: Robust, error-tolerant setup process
|
|
64
|
+
- `optimize_development_config()` function for Docker-friendly configs
|
|
65
|
+
- `fix_content_issues()` function to resolve Jekyll include problems
|
|
66
|
+
- Comprehensive error handling with actionable troubleshooting steps
|
|
67
|
+
- AI-generated documentation and setup instructions
|
|
68
|
+
|
|
69
|
+
### Changed
|
|
70
|
+
- **🔧 Installation Philosophy**: Shifted from traditional Ruby/Jekyll setup to Docker-first approach
|
|
71
|
+
- Disabled local theme dependencies to avoid gemspec issues
|
|
72
|
+
- Optimized for containerized development environments
|
|
73
|
+
- Enhanced cross-platform compatibility and consistency
|
|
74
|
+
|
|
75
|
+
### Fixed
|
|
76
|
+
- **🐛 Theme Dependency Issues**: Resolved Jekyll theme not found errors
|
|
77
|
+
- Commented out problematic Jekyll includes in README.md
|
|
78
|
+
- Disabled `remote_theme` in development configuration
|
|
79
|
+
- Added essential Jekyll plugins for Docker compatibility
|
|
80
|
+
|
|
81
|
+
- **🍎 Apple Silicon Compatibility**: Fixed Docker platform issues
|
|
82
|
+
- Added `platform: linux/amd64` for Apple Silicon compatibility
|
|
83
|
+
- Automatic platform detection and optimization
|
|
84
|
+
- Cross-architecture Docker image support
|
|
85
|
+
|
|
86
|
+
## [0.1.8] - 2025-01-03
|
|
87
|
+
|
|
88
|
+
### Added
|
|
89
|
+
- **Comprehensive Gem Automation System**: Unified automation ecosystem merging all automation features
|
|
90
|
+
- Complete documentation consolidation following IT-Journey principles (DFF, DRY, KIS, AIPD)
|
|
91
|
+
- Zero-click releases with multi-environment testing
|
|
92
|
+
- Production-ready CI/CD pipeline with GitHub Actions integration
|
|
93
|
+
- Semantic versioning, building, testing, and publishing automation
|
|
94
|
+
|
|
95
|
+
- **Remote Installation Support**: Direct installation from GitHub using `curl -fsSL https://raw.githubusercontent.com/bamr87/zer0-mistakes/main/install.sh | bash`
|
|
96
|
+
- **Azure Static Web Apps Integration**: Automatic workflow creation for Azure deployment
|
|
97
|
+
- **Build Directory Structure**: Added `build/` directory for logs and temporary files
|
|
98
|
+
- **Enhanced Error Handling**: Comprehensive error handling with colored output
|
|
99
|
+
- **Cleanup Functions**: Automatic cleanup of temporary files after remote installation
|
|
100
|
+
|
|
101
|
+
### Changed
|
|
102
|
+
- **Feature Documentation Restructure**: Consolidated redundant automation feature entries
|
|
103
|
+
- Merged `AUTOMATION_SUMMARY.md` and `automated-version-build-system.md`
|
|
104
|
+
- Created unified `comprehensive-gem-automation-system.md` feature page
|
|
105
|
+
- Updated features index to eliminate redundancies
|
|
106
|
+
|
|
107
|
+
- **Simplified Installation Process**: Updated `zer0.md` to use single install command instead of complex manual setup
|
|
108
|
+
- **Azure-Ready Configuration**: Pre-configured directory structure for Azure Static Web Apps (app location: `.`, api location: `api/`, output location: `_site/`)
|
|
109
|
+
- **Enhanced Documentation**: Updated `INSTALLATION.md` with Azure deployment instructions
|
|
110
|
+
- **Improved Help System**: Added remote installation examples to help output
|
|
111
|
+
|
|
112
|
+
### Removed
|
|
113
|
+
- **Redundant Documentation**: Eliminated duplicate automation documentation files
|
|
114
|
+
- Removed `AUTOMATION_SUMMARY.md` (content merged into comprehensive feature)
|
|
115
|
+
- Removed `automated-version-build-system.md` (superseded by comprehensive version)
|
|
116
|
+
- Consolidated 6 separate automation entries into 1 comprehensive feature
|
|
117
|
+
|
|
118
|
+
### Fixed
|
|
119
|
+
- **Installation Script Compatibility**: Made `install.sh` compatible with both local and remote execution
|
|
120
|
+
- **Directory Structure**: Optimized for Azure Static Web Apps deployment requirements
|
|
121
|
+
- **Markdown Lint Issues**: Fixed all markdown formatting violations
|
|
122
|
+
- Proper heading spacing and structure
|
|
123
|
+
- Fixed bare URLs with angle bracket notation
|
|
124
|
+
- Removed trailing spaces and improved table formatting
|
|
125
|
+
|
|
126
|
+
## [0.1.7] - 2024-12-01
|
|
127
|
+
|
|
128
|
+
### Added
|
|
129
|
+
- Bootstrap Jekyll theme for headless Github Pages CMS
|
|
130
|
+
- Basic theme structure with layouts, includes, and assets
|
|
131
|
+
- Jekyll compatibility with GitHub Pages
|
|
132
|
+
- Scripts for version management, build, and test automation
|
|
133
|
+
- GitHub Actions workflows for CI/CD
|
|
134
|
+
- Makefile for simplified command access
|
|
135
|
+
|
|
136
|
+
### Changed
|
|
137
|
+
- Initial theme implementation and project structure
|
|
138
|
+
|
|
139
|
+
---
|
|
140
|
+
|
|
141
|
+
[Unreleased]: https://github.com/bamr87/zer0-mistakes/compare/v0.1.9...HEAD
|
|
142
|
+
[0.1.9]: https://github.com/bamr87/zer0-mistakes/compare/v0.1.8...v0.1.9
|
|
143
|
+
[0.1.8]: https://github.com/bamr87/zer0-mistakes/compare/v0.1.7...v0.1.8
|
|
144
|
+
[0.1.7]: https://github.com/bamr87/zer0-mistakes/releases/tag/v0.1.7
|