Page 1 of 1

IMPROVE the ChangeLog please -- (1) SIZE

Posted: 03 Nov 2006, 19:10
by ruslan_zasukhin
Hi All,

1) SIZE of produced ChangeLog.

we use mantis about 2 years, for dozen projects, and now our changelog is quite big, even for single project.

What will be 2-3 years later? Even longer longer longer changeLog ?

I think this should be somehow improved...may be split on few pages, so older releases go to next pages...like google do..and of course link SHOW ALL if I will NEED to see all that

changelog ordering

Posted: 17 Nov 2006, 20:03
by beatportdan
I have version 1.0.3. This won't solve your problem completely, but I've found it extremely useful to place the following line in core/version_api.php in the version_get_all_rows and the version_get_all_rows_with_subs functions right before the return. It will sort the versions as a human would in reverse order.

Code: Select all

uasort($rows, create_function('$aLeft, $aRight', 'return -1 * strnatcmp($aLeft[\'version\'], $aRight[\'version\']);'));