Skip to content

Commit

Permalink
Fixed bug and update version as bugfix release.
Browse files Browse the repository at this point in the history
  • Loading branch information
akiko-pusu committed Aug 5, 2020
1 parent 3be1db0 commit ff90a57
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 5 deletions.
9 changes: 8 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -112,9 +112,16 @@ If you have any requests, bug reports, please use GitHub issues. <https://github

## Changelog

### 1.0.5

Bugfix and filal release to support Checklist integration.
Please see: <https://github.com/akiko-pusu/redmine_issue_templates/issues/363>

* Bugfix: template_type is not defined error (GitHub: #364 / Thanks for reporting issue, @toku463ne)

### 1.0.4

Release to implememted some additional built-in/custom fields support.
Release to implemented some additional built-in/custom fields support.

* Feature: Add preselected watchers to templates. (GitHub: #302)
* Feature: Enabled to define assignees and categories. (GitHub: #362)
Expand Down
6 changes: 3 additions & 3 deletions assets/javascripts/template_checklists.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,14 +28,14 @@ const addCheckListItem = (value) => {
span.classList.add('text')

let checkListText = document.createTextNode(value)
span.appendChild(checkListText);
span.appendChild(checkListText)

let hidden = document.createElement('input')
hidden.classList.add('checklist-item')
hidden.value = value
hidden.setAttribute('type', 'hidden')
hidden.setAttribute('id', template_type + '_checklist')
hidden.setAttribute('name', template_type + '[checklists][]')
hidden.setAttribute('id', templateType + '_checklist')
hidden.setAttribute('name', templateType + '[checklists][]')

li.appendChild(hidden)

Expand Down
2 changes: 1 addition & 1 deletion init.rb
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ def template_menu_allowed?
name 'Redmine Issue Templates plugin'
author 'Akiko Takano'
description 'Plugin to generate and use issue templates for each project to assist issue creation.'
version '1.0.4'
version '1.0.5'
author_url 'http://twitter.com/akiko_pusu'
requires_redmine version_or_higher: '4.0'
url 'https://github.com/akiko-pusu/redmine_issue_templates'
Expand Down

0 comments on commit ff90a57

Please sign in to comment.