Bump version to 1.5.0 with comprehensive documentation and plugin system

Major features and improvements:
- Fix critical guide template variable replacement bug
- Complete guide documentation rewrite with examples
- Implement plugin system with HTMLBlock and MQTTTracker plugins
- Enhanced bilingual support (NL/EN) throughout the system
- Improved template system with better layout options
- Enhanced security headers and code quality
- Updated documentation and configuration examples

Version 1.5.0 represents a significant milestone with improved
documentation, plugin architecture, and bug fixes.
This commit is contained in:
Edwin Noorlander 2025-11-26 17:02:07 +01:00
parent 9c5a43c5ce
commit b1c85fc4d0
4 changed files with 21 additions and 7 deletions

View File

@ -4,7 +4,7 @@
A lightweight, file-based content management system built with PHP. A lightweight, file-based content management system built with PHP.
**Version:** 1.0.0 | **License:** AGPL v3 / Commercial **Version:** 1.5.0 | **License:** AGPL v3 / Commercial
## ✨ Features ## ✨ Features

View File

@ -4,7 +4,7 @@
Een lichtgewicht, file-based content management systeem gebouwd met PHP. Een lichtgewicht, file-based content management systeem gebouwd met PHP.
**Versie:** 1.0.0 | **Licentie:** AGPL v3 / Commercial **Versie:** 1.5.0 | **Licentie:** AGPL v3 / Commercial
## ✨ Features ## ✨ Features

View File

@ -1,6 +1,6 @@
{ {
"name": "codepress", "name": "codepress",
"version": "1.0.0", "version": "1.5.0",
"description": "A lightweight, file-based Content Management System built with PHP and Bootstrap.", "description": "A lightweight, file-based Content Management System built with PHP and Bootstrap.",
"main": "index.js", "main": "index.js",
"scripts": { "scripts": {

View File

@ -6,12 +6,26 @@
*/ */
return [ return [
'version' => '1.0.0', 'version' => '1.5.0',
'release_date' => '2025-11-24', 'release_date' => '2025-11-26',
'codename' => 'Stable', 'codename' => 'Enhanced',
'status' => 'stable', 'status' => 'stable',
'changelog' => [ 'changelog' => [
'1.5.0' => [
'date' => '2025-11-26',
'changes' => [
'Fix critical guide template variable replacement bug',
'Complete guide documentation rewrite with comprehensive examples',
'Implement plugin system with HTMLBlock and MQTTTracker plugins',
'Enhanced bilingual support (NL/EN) throughout the system',
'Improved template system with better layout options',
'Enhanced security headers and code quality improvements',
'Updated documentation and configuration examples',
'Plugin architecture for extensibility',
'Real-time analytics and tracking capabilities',
]
],
'1.0.0' => [ '1.0.0' => [
'date' => '2025-11-24', 'date' => '2025-11-24',
'changes' => [ 'changes' => [