IMPROVE the ChangeLog please -- (1) SIZE

Post about your customizations to share with others.

Moderators: Developer, Contributor

Post Reply
ruslan_zasukhin
Posts: 13
Joined: 24 Oct 2006, 19:05

IMPROVE the ChangeLog please -- (1) SIZE

Post 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
beatportdan
Posts: 1
Joined: 17 Nov 2006, 19:58

changelog ordering

Post 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\']);'));
Post Reply