CodePress/version.php
Edwin Noorlander b1c85fc4d0 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.
2025-11-26 17:02:07 +01:00

61 lines
2.3 KiB
PHP

<?php
/**
* CodePress CMS Version Information
*
* This file contains version information and changelog for CodePress CMS.
*/
return [
'version' => '1.5.0',
'release_date' => '2025-11-26',
'codename' => 'Enhanced',
'status' => 'stable',
'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' => [
'date' => '2025-11-24',
'changes' => [
'Initial stable release',
'Complete security hardening (100/100 pentest score)',
'Multi-language support (NL/EN)',
'Responsive design with Bootstrap 5',
'Automatic navigation and breadcrumbs',
'Search functionality',
'Markdown, HTML, and PHP content support',
'Mustache templating system',
'Comprehensive security headers',
'XSS and path traversal protection',
'Automated penetration test suite',
'Functional test coverage',
]
]
],
'system_requirements' => [
'php' => '>=8.0',
'extensions' => ['json', 'mbstring'],
'optional' => ['opcache' => 'Recommended for performance']
],
'credits' => [
'author' => 'E.Noorlander / CodePress Development Team',
'license' => 'AGPL v3 / Commercial',
'license_info' => 'Dual-licensed: AGPL v3 for open-source, Commercial license for proprietary use',
'repository' => 'https://git.noorlander.info/E.Noorlander/CodePress.git',
'contact' => 'commercial@noorlander.info'
]
];