31 lines
994 B
Plaintext
31 lines
994 B
Plaintext
<?php
|
|
/* Security release? */
|
|
$notes['security'] = false;
|
|
|
|
/* Mailing list release notes. */
|
|
$notes['changes'] = <<<ML
|
|
The Horde Team is pleased to announce the final release of the Mnemo Note
|
|
Manager version H5 (4.2.14).
|
|
|
|
The Mnemo Note Manager is the Horde notes/memos application. It allows users to
|
|
keep web-based notes and freeform text. Notes may be shared with other users
|
|
via shared notepads. It requires the Horde Application Framework and an SQL
|
|
database or Kolab server for backend storage. For more information on Mnemo,
|
|
visit http://www.horde.org/apps/mnemo.
|
|
|
|
For upgrading instructions, please see
|
|
http://www.horde.org/apps/mnemo/docs/UPGRADING
|
|
|
|
For detailed installation and configuration instructions, please see
|
|
http://www.horde.org/apps/mnemo/docs/INSTALL
|
|
|
|
The major changes compared to the Mnemo version H5 (4.2.13) are:
|
|
* Officially support PHP 7.
|
|
* Small bugfix.
|
|
ML;
|
|
|
|
$notes['name'] = 'Mnemo';
|
|
$notes['list'] = 'horde';
|
|
$notes['branch'] = 'Horde 5';
|
|
return $notes;
|