1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
|
<?php
/**
* Release focus. Possible values:
* 0 - N/A
* 1 - Initial freshmeat announcement
* 2 - Documentation
* 3 - Code cleanup
* 4 - Minor feature enhancements
* 5 - Major feature enhancements
* 6 - Minor bugfixes
* 7 - Major bugfixes
* 8 - Minor security fixes
* 9 - Major security fixes
*/
$this->notes['fm']['focus'] = 8;
/* Mailing list release notes. */
$this->notes['ml']['changes'] = <<<ML
The Horde Team is pleased to announce the final release of the Horde
Application Framework version 2.2.8.
The Horde Application Framework is a general-purpose web application
framework in PHP, providing classes for dealing with preferences,
compression, browser detection, connection tracking, MIME handling and
more.
Changes in this release:
* Fixed two XSS vulnerabilities.
* Updated German and Traditional Chinese translations.
ML;
/* Freshmeat release notes. */
$this->notes['fm']['changes'] = <<<FM
Two XSS vulnerabilities have been fixed.
The German and Traditional Chinese translations have been updated.
FM;
$this->notes['name'] = 'Horde';
$this->notes['fm']['project'] = 'horde';
$this->notes['fm']['branch'] = 'Stable 2.x';
|