Skip to content
This repository was archived by the owner on Apr 13, 2021. It is now read-only.

Commit 26819ed

Browse files
committed
Redmine 3.4.x support
1 parent ab27a9b commit 26819ed

File tree

4 files changed

+16
-11
lines changed

4 files changed

+16
-11
lines changed

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ gemfile:
77
- $REDMINE_PATH/Gemfile
88

99
env:
10+
- REDMINE_VER=3.4-stable
1011
- REDMINE_VER=3.3-stable
1112
- REDMINE_VER=3.2-stable
1213
- REDMINE_VER=3.1-stable

CHANGELOG.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Change Log
22

3+
## [1.0.6](https://github.com/annikoff/redmine_plugin_computed_custom_field/releases/tag/v1.0.6) - 2017-07-18
4+
### Added
5+
- Redmine 3.4.x support.
6+
37
## [1.0.5](https://github.com/annikoff/redmine_plugin_computed_custom_field/releases/tag/v1.0.5) - 2017-03-21
48
### Changed
59
- PluginGemfile
@@ -107,15 +111,15 @@
107111
- Formula validation.
108112

109113
### Changed
110-
- List of classes for a patch.
114+
- List of classes for a patch.
111115
- README.
112116
- Excluded CF own id from available fields list.
113117

114118
### Removed
115119
- Groups of custom fields from creation form.
116120

117121
### Fixed
118-
- Conversion error when formula computation
122+
- Conversion error when formula computation
119123

120124
## [0.0.1](https://github.com/annikoff/redmine_plugin_computed_custom_field/releases/tag/v0.0.1) - 2015-08-13
121125
### Added

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@
55

66
### Description:
77

8-
This plugin provides a possibility to create a computed custom field.
9-
The value of computed field can be set by formula.
10-
In formula constructions like `cfs[cf_id]` are replaced by IDs of custom fields.
11-
Valid formula is a valid Ruby code executed when customized object is updated.
8+
This plugin provides a possibility to create a computed custom field.
9+
The value of computed field can be set by formula.
10+
In formula constructions like `cfs[cf_id]` are replaced by IDs of custom fields.
11+
Valid formula is a valid Ruby code executed when customized object is updated.
1212
To put a field ID in the formula, double-click on an item in the list of available fields.
1313

1414

@@ -53,12 +53,12 @@ rake redmine:plugins:migrate
5353

5454
### Compatibility
5555

56-
The plugins supports the following Redmine versions: 3.3.x, 3.2.x, 3.1.x, 3.0.x, 2.6.x, 2.5.x.
56+
The plugins supports the following Redmine versions: 3.4.x, 3.3.x, 3.2.x, 3.1.x, 3.0.x, 2.6.x, 2.5.x.
5757

5858
### Examples:
5959
```ruby
6060
cfs[1]*2+cfs[2]
61-
# means
61+
# means
6262
# custom_field_value(1) * 2 + custom_field_value(2)
6363
```
6464

@@ -75,12 +75,12 @@ end
7575
```
7676

7777
```ruby
78-
# For IssueCustomField
78+
# For IssueCustomField
7979
(self.estimated_hours || 0) * 2
8080
```
8181

8282
```ruby
83-
# For ProjectCustomField
83+
# For ProjectCustomField
8484
self.parent_id == 2
8585
```
8686

init.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
author 'Yakov Annikov'
44
url 'https://github.com/annikoff/redmine_plugin_computed_custom_field'
55
description ''
6-
version '1.0.5'
6+
version '1.0.6'
77
settings default: {}
88
end
99

0 commit comments

Comments
 (0)