Vote #72781
完了Redmine version requirement improvements (in plugins)
0%
説明
Currently Redmine supports @#requires_redmine@ with @:version_or_higher@ and just @:version@, the latter requires exact versions to be specified.
My suggestion:
- Allow to specify only major and minor version numbers for @:version@.
- Introduce @:version_between@, which will support the lowest and the highest versions.
The @:version_or_higher@ option is useless now... As usually new version of Redmine requires fixing plugins anyway.
journals
Feature added.
Rather than adding a @:version_between@ option, the @:version@ option now accepts a Range of versions. Here is the ruby syntax:
<pre><code class="ruby">
requires_redmine :version => '0.7.3'..'0.9.1'
</code></pre>
Versions with major.minor only are now also supported:
<pre><code class="ruby">
requires_redmine :version => '0.7'
requires_redmine :version => '0.7'..'0.9'
</code></pre>
--------------------------------------------------------------------------------