This module allows for the category lists within projects to act as trees instead of a single flat list. This uses the awesome_nested_set contained within Redmine to maintain the tree structure.
- Categories can have child categories
- Categories are now sortable
- Clone the repository
- Place in <redmine_root>/plugins
- Compile your assets (to get style changes)
- Follow normal Redmine plugin installation commands
Add a category as you normally would. There will be a new dropdown labeled "Child category of" with a listing of all other categories available for that project.
NOTE: If you are editing an existing category, since it cannot be a child of itself, that option will be disabled in the "Child category of" dropdown.
If the category module is selected for display, it will display the full category tree instead of just the selected category for those that are children.
Changes to categories are tracked and will show up in the history as the full tree.
The category listing will show in a tree format similar to the projects listing in the admin panel. You are presented with four separate options for ordering the categories.
- Move to Top
- Move Up
- Move Down
- Move to Bottom
NOTE: If a category is unable to move in a particular fashion, that link will not be shown.
This will move the selected category to the top of the list for that project
This will move the selected category up one slot so it will now show before the category (at the same level) above it.
This will move the selected category down one slot so it will now show after the category (at the same level) below it.
This will move the selected category to the bottom of the list for that project
- Add support for Rails >= 5
- Updated to work with Redmine 3.2.1
- Clarify a couple items in the readme
- Add awesome_nested_set gem dependency (for use with Redmine 3.x)
- Add support for context menus
- Add Russian translation of plugin (#7). Thanks to AndreyBronin for the translation.
- Fix copying project with sub-categories causes error (#9)
- Fix IssueHelper patch not allowing for deletion of category with tickets assigned to it (#8)
- Adjusting default value(s) on nested set columns
- Fixing issue when adding new category of a "Comaprison of Fixnum with nil failed" error
- Merging KappaNossi's fix for 500 errors
- Fixing other 500 errors
Initial release of plugin