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 41
|
<?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 official release of the Accounts
User Manager version 2.1.2.
Accounts is a simple application based on the Horde Application Framework that
provides a way of grouping the related forwards, vacation, and passwd modules
and displays information about the currently logged in user.
Changes in this release:
* Fixed an XSS vulnerability.
* Added Polish translation.
* Updated German translation.
ML;
/* Freshmeat release notes. */
$this->notes['fm']['changes'] = <<<FM
An XSS vulnerability has been fixed.
A Polish translation has been added and the German translation has been
updated.
FM;
$this->notes['name'] = 'Accounts';
$this->notes['fm']['project'] = 'accounts';
$this->notes['fm']['branch'] = 'Default';
|