Plugins Directory » Full text search
|
Author: | okkez _ |
---|---|---|
Website: | https://github.com/clear-code/redmine_full_text_search | |
Code repository: | https://github.com/clear-code/redmine_full_text_search | |
Registered on: | 2016-04-08 (over 8 years ago) | |
Current version: | 0.7.2 | |
Compatible with: | Redmine 3.4.x | |
User ratings: |
Installation notes
Install PGroonga or Mroonga¶
See Mroonga document
Install this plugin¶
$ cd redmine/plugins $ git clone https://github.com/clear-code/redmine_full_text_search.git full_text_search
Set up this plugin¶
$ cd redmine $ ./bin/rake redmine:plugins:migrate RAILS_ENV=production
And restart Redmine.
Changelog
0.7.2 (2018-03-20)
Compatible with Redmine 3.4.x.
Bug fix release for 0.7.1.
- Fix bug that handle original_type for CustomValue and WikiPage properly https://github.com/clear-code/redmine_full_text_search/issues/48
0.7.1 (2018-03-12)
Compatible with Redmine 3.4.x.
Fix bugs as following
- Add missing parenthesis to search result same as Redmine
- Ensure removing existing records before copying data in migration
- Display original_updated_on in search result if original_type is Issue
- Sort search result properly when sort by updated_on
- Handle normalized original_type properly when backend is PGroonga
0.7.0 (2017-11-22)
Compatible with Redmine 3.4.x.
Squash migrations to use PGroonga 2.x by default and drop PGroonga 1.x support.
Also drop Mroonga 7.04 or earlier support.
How to upgrade from 0.6.3 or earlier.
- Stop your Redmine
- Backup your database
- Upgrade to 0.6.3
- Rollback all migrations:
bin/rake redmine:plugins:migrate RAILS_ENV=production NAME=full_text_search VERSION=0
- You can not rollback all migrations using 0.6.2 or earlier
- Upgrade to 0.7.0 and apply all migrations
bin/rake redmine:plugins:migrate RAILS_ENV=production NAME=full_text_search
- Restart your Redmine
0.6.0 (2017-08-23)
Compatible with Redmine 3.4.x.
Add the feature to display similar issues on a issue page.
This version is compatible with 0.5.0.
This version supports Redmine 3.4.x.
0.5.0 (2017-08-04)
Compatible with Redmine 3.4.x.
Totally rewrite to use Groonga features such as drilldown and so on.
This version is not compatible with 0.4.x or earlier.
You can upgrade this plugin by following sequence:
- Stop your Redmine
- Back up your database
- Install new version of this plugin under plugins directory
- Run `bundle install`
- Run `bin/rake redmine:plugins:migrate RAILS_ENV=production`
- Restart your Redmine
0.4.0 (2017-04-14)
Compatible with Redmine 3.3.x.
- Unify duplicated records when sort by rank(score)
0.3.0 (2017-03-01)
Compatible with Redmine 3.3.x.
- Sort search result properly
- Improve score
- Display score in search result (disable by default)
0.2.1 (2016-12-20)
Compatible with Redmine 3.3.x.
Add new functionality to sort search result by date (updated_on or created_on).
This feature uses new view hook that have been added since Redmine 3.3.0.
0.1.0 (2016-04-06)
Compatible with Redmine 3.2.x.