From a090fc38533175c22ec641294084e8d80f5aa6d7 Mon Sep 17 00:00:00 2001 From: Den Date: Thu, 7 Mar 2019 02:37:43 +0100 Subject: [PATCH] Updated readme, bumped version to 1.2 --- README.md | 23 ++++++++++++++++++----- init.rb | 4 ++-- 2 files changed, 20 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 2b0ecf3..71c12fa 100644 --- a/README.md +++ b/README.md @@ -12,24 +12,37 @@ Link to Redmine plugin page: https://www.redmine.org/plugins/redmine_issue_todo_ * Create to-do lists per project * Add individual issues with or without comments per to-do list (also cross project possible) -* Order these issues per drag and drop +* Or create to-do lists with solely text items +* Order these issues / items per drag and drop * Add and remove issues to/from to-do list by context menu (even bulk adding possible) * Autocomplete for issues (as with issue relations) * To-do lists show all configured default columns displayed on the normal issue list * Remove closed issues from to-do list automatically (configurable per to-do list) -## Installation +## Screenshots + +See [screenshots folder](https://github.com/canidas/redmine_issue_todo_lists/tree/master/screenshots) + +## Install * Read the Redmine plugin installation wiki: http://www.redmine.org/wiki/redmine/Plugins -* Run the migration of plugins: `rake redmine:plugins:migrate RAILS_ENV=production` +* Run the migration for database: `bundle exec rake redmine:plugins:migrate NAME=redmine_issue_todo_lists RAILS_ENV=production` * Restart Redmine * Login and configure rights and roles for this plugin * Go to corresponding project settings and active project module *Issue To-do lists* * Click *To-do lists* in project menu -## Screenshots +## Update -See screenshots/ folder +* Update plugin with Git or download sources manually +* Run migration as described above +* Restart Redmine + +## Uninstall + +* Run migration backwards: `bundle exec rake redmine:plugins:migrate NAME=redmine_issue_todo_lists VERSION=0 RAILS_ENV=production` +* Remove plugin folder +* Restart Redmine ## License diff --git a/init.rb b/init.rb index 57c173c..362a3d8 100644 --- a/init.rb +++ b/init.rb @@ -5,9 +5,9 @@ name 'Issue To-do Lists Plugin' author 'Den' description 'Organize issues in to-do lists by manually ordering their priority' - version '1.1.2' + version '1.2' url 'https://github.com/canidas/redmine_issue_todo_lists' - author_url 'http://den.cx' + author_url 'mailto:dev@den.cx' project_module :issue_todo_lists do permission :add_issue_todo_lists, {:issue_todo_lists => [:new, :create]}