Compare commits

..

1 Commits
0.4.1 ... 0.4.0

Author SHA1 Message Date
Jean-Philippe Lang
597bb81774 tagged version 0.4.0
git-svn-id: http://redmine.rubyforge.org/svn/tags/0.4.0@144 e93f8b46-1217-0410-a6f0-8f06a7374b81
2007-01-02 18:02:29 +00:00
5 changed files with 4 additions and 9 deletions

View File

@@ -21,7 +21,7 @@ class Mailer < ActionMailer::Base
def issue_add(issue)
# Sends to all project members
@recipients = issue.project.members.collect { |m| m.user.mail if m.user.mail_notification }.compact
@recipients = issue.project.members.collect { |m| m.user.mail if m.user.mail_notification }
@from = $RDM_MAIL_FROM
@subject = "[#{issue.project.name} - #{issue.tracker.name} ##{issue.id}] #{issue.status.name} - #{issue.subject}"
@body['issue'] = issue
@@ -30,7 +30,7 @@ class Mailer < ActionMailer::Base
def issue_edit(journal)
# Sends to all project members
issue = journal.journalized
@recipients = issue.project.members.collect { |m| m.user.mail if m.user.mail_notification }.compact
@recipients = issue.project.members.collect { |m| m.user.mail if m.user.mail_notification }
@from = $RDM_MAIL_FROM
@subject = "[#{issue.project.name} - #{issue.tracker.name} ##{issue.id}] #{issue.status.name} - #{issue.subject}"
@body['issue'] = issue

View File

@@ -112,7 +112,7 @@ $RDM_TEXTILE_DISABLED = true unless ActionView::Helpers::TextHelper.method_defin
# application name
RDM_APP_NAME = "redMine"
# application version
RDM_APP_VERSION = "0.4.1"
RDM_APP_VERSION = "0.4.0"
ActiveRecord::Errors.default_error_messages = {
:inclusion => "activerecord_error_inclusion",

View File

@@ -5,11 +5,6 @@ Copyright (C) 2006-2007 Jean-Philippe Lang
http://redmine.rubyforge.org/
== 03/02/2006 v0.4.1
* fixed: emails have no recipient when one of the project members has notifications disabled
== 01/02/2006 v0.4.0
* simple SVN browser added (just needs svn binaries in PATH)

Binary file not shown.

Before

Width:  |  Height:  |  Size: 196 B

View File

@@ -9,7 +9,7 @@
height: 16px;
font-size: 0.1em;
cursor: s-resize;
/*background: transparent url(img/resizer.png) no-repeat 45% 50%;*/
background: transparent url(img/resizer.png) no-repeat 45% 50%;
}
.jstElements {