Compare commits

...

5 Commits
0.4.0 ... 0.4.1

Author SHA1 Message Date
Jean-Philippe Lang
38aeb2746c tagged version 0.4.1
git-svn-id: http://redmine.rubyforge.org/svn/tags/0.4.1@149 e93f8b46-1217-0410-a6f0-8f06a7374b81
2007-01-03 18:44:55 +00:00
Jean-Philippe Lang
28ea323791 updated RDM_APP_VERSION for 0.4.1
git-svn-id: http://redmine.rubyforge.org/svn/trunk@148 e93f8b46-1217-0410-a6f0-8f06a7374b81
2007-01-03 18:38:08 +00:00
Jean-Philippe Lang
18787caab9 0.4.1 release
git-svn-id: http://redmine.rubyforge.org/svn/trunk@147 e93f8b46-1217-0410-a6f0-8f06a7374b81
2007-01-03 18:32:03 +00:00
Jean-Philippe Lang
390d6023c6 * added calendar.png removed by accident
* removed resizer background style for textareas

git-svn-id: http://redmine.rubyforge.org/svn/trunk@146 e93f8b46-1217-0410-a6f0-8f06a7374b81
2007-01-03 18:29:16 +00:00
Jean-Philippe Lang
e1ef9a5c72 fixed: no recipient if one of the members of the project has disabled mail notifications
git-svn-id: http://redmine.rubyforge.org/svn/trunk@145 e93f8b46-1217-0410-a6f0-8f06a7374b81
2007-01-03 18:26:45 +00:00
5 changed files with 9 additions and 4 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 }
@recipients = issue.project.members.collect { |m| m.user.mail if m.user.mail_notification }.compact
@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 }
@recipients = issue.project.members.collect { |m| m.user.mail if m.user.mail_notification }.compact
@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.0"
RDM_APP_VERSION = "0.4.1"
ActiveRecord::Errors.default_error_messages = {
:inclusion => "activerecord_error_inclusion",

View File

@@ -5,6 +5,11 @@ 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)

BIN
public/images/calendar.png Normal file

Binary file not shown.

After

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 {