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
|
<?php
/**
* Release focus. Possible values (multiple possible with arrays):
* Horde_Release::FOCUS_INITIAL - Initial announcement
* Horde_Release::FOCUS_MINORFEATURE - Minor feature enhancement
* Horde_Release::FOCUS_MAJORFEATURE - Major feature enhancement
* Horde_Release::FOCUS_MINORBUG - Minor bugfixes
* Horde_Release::FOCUS_MAJORBUG - Major bugfixes
* Horde_Release::FOCUS_MINORSECURITY - Minor security fixes
* Horde_Release::FOCUS_MAJORSECURITY - Major security fixes
* Horde_Release::FOCUS_DOCS - Documentation improvements
*/
$this->notes['fm']['focus'] = Horde_Release::FOCUS_MINORBUG;
/* Mailing list release notes. */
$this->notes['ml']['changes'] = <<<ML
The Horde Team is pleased to announce the final release of the Chora
Repository Viewer version H3 (2.1.1).
Chora is built upon the Horde Application Framework and provides a read-only
browser interface to any number of version control repositories. Advanced
features include a visual branch view of the repository's history,
pretty-printed output, annotation, patchsets and basic statistics.
The major changes compared to the Chora H3 (2.1) version are:
* Minor bug fixes.
ML;
/* Freshmeat release notes. */
$this->notes['fm']['changes'] = <<<FM
Minor bugs have been fixed.
FM;
$this->notes['name'] = 'Chora';
$this->notes['fm']['project'] = 'chora';
$this->notes['fm']['branch'] = 'Horde 3';
|