Merge pull request #86 from finnlabs/release/5.0

Release/5.0
pull/6827/head
meeee 11 years ago
commit 18e1d85ebe
  1. 8
      README.md
  2. 3
      doc/CHANGELOG.md
  3. 2
      lib/open_project/costs/engine.rb
  4. 2
      lib/open_project/costs/version.rb
  5. 2
      openproject-costs.gemspec

@ -9,7 +9,7 @@ A more detailed description can be found on [OpenProject.org](https://www.openpr
Requirements
------------
The OpenProject Costs plug-in requires the [OpenProject Core](https://github.com/opf/openproject/) in version greater or equal to *3.0.0pre42*.
The OpenProject Costs plug-in requires the [OpenProject Core](https://github.com/opf/openproject/) in version greater or equal to *3.0.0*.
Installation
@ -17,11 +17,11 @@ Installation
OpenProject Costs depends on OpenProject Plugins. Thus, if you haven't done it already, add the following line to the `Gemfile.plugins` in your OpenProject installation:
`gem "openproject-plugins", git: "https://github.com/opf/openproject-plugins.git", :branch => "dev"`
`gem "openproject-plugins", git: "https://github.com/opf/openproject-plugins.git", :branch => "stable"`
For OpenProject Costs itself you need to add the following line to the `Gemfile.plugins` of OpenProject:
`gem "openproject-costs", git: "https://github.com/finnlabs/openproject-costs.git", :branch => "dev"`
`gem "openproject-costs", git: "https://github.com/finnlabs/openproject-costs.git", :branch => "stable"`
Afterwards, run:
@ -37,7 +37,7 @@ Deinstallation
Remove the line
`gem "openproject-costs", git: "https://github.com/finnlabs/openproject-costs.git"`, :branch => "dev"`
`gem "openproject-costs", git: "https://github.com/finnlabs/openproject-costs.git"`, :branch => "stable"`
from the file `Gemfile.plugins` and run:

@ -20,7 +20,10 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
# Changelog
## 5.0.4
* `#4024` Fix: Subpages have no unique page titles
* `#5357` Adapt released plugins to base on plugins functionality
* Fix: Edit accesskey for budget
* Adapted setting registration to changes in plugins plugin

@ -25,7 +25,7 @@ module OpenProject::Costs
register 'openproject-costs',
:author_url => 'http://finn.de',
:requires_openproject => '>= 3.0.0pre49',
:requires_openproject => '>= 3.0.0',
:settings => { :default => { 'costs_currency' => 'EUR','costs_currency_format' => '%n %u' },
:partial => 'settings/openproject_costs' } do

@ -19,6 +19,6 @@
module OpenProject
module Costs
VERSION = "5.0.3"
VERSION = "5.0.4"
end
end

@ -10,7 +10,7 @@ Gem::Specification.new do |s|
s.authors = "Finn GmbH"
s.email = "info@finn.de"
s.homepage = "https://www.openproject.org/projects/costs-plugin"
s.summary = "An OpenProject plugin to manage project costs"
s.summary = "OpenProject Costs"
s.description = "This Plugin adds features for planning and tracking costs of projects."
s.license = "GPLv3"

Loading…
Cancel
Save