File tree Expand file tree Collapse file tree 4 files changed +14
-2
lines changed Expand file tree Collapse file tree 4 files changed +14
-2
lines changed Original file line number Diff line number Diff line change @@ -151,6 +151,7 @@ subject_process = (strip |
151
151
ReSub(r'^([cC]hg|[fF]ix|[nN]ew)\s*:\s*((dev|use?r|pkg|test|doc)\s*:\s*)?(.*)$', r'\4') |
152
152
ReSub(r' @\d+(h|m|min)?', r'') |
153
153
ReSub(r'pkg changed', r'changed') |
154
+ ReSub(r'To fix mail sending error', r'fix mail sending error') |
154
155
ucfirst | final_dot)
155
156
156
157
Original file line number Diff line number Diff line change 3
3
4
4
## development (unreleased)
5
5
6
+ ### v1.4.5 (2022-12-09)
7
+
8
+ * Fix mail sending error. [ Hunt Lin]
9
+
10
+
11
+ ## v1.4.4 (2022-09-13)
12
+
6
13
### Changes
7
14
15
+ * Updated the changelog. [ Michele Tessaro]
16
+
8
17
* Changed version for the new release. [ Michele Tessaro]
9
18
10
19
### Fix
Original file line number Diff line number Diff line change 4
4
name 'Redmine Drawio plugin'
5
5
author 'Michele Tessaro'
6
6
description 'Wiki macro plugin for inserting drawio diagrams into Wiki pages and Issues'
7
- version '1.4.4 '
7
+ version '1.4.5 '
8
8
url 'https://github.com/mikitex70/redmine_drawio'
9
9
author_url 'https://github.com/mikitex70'
10
10
Original file line number Diff line number Diff line change @@ -462,7 +462,9 @@ def svg_enabled?
462
462
end
463
463
464
464
def pdf? ( controller )
465
- controller . params [ :format ] == "pdf"
465
+ return false if controller . is_a? ( Mailer )
466
+
467
+ controller . params [ :format ]
466
468
end
467
469
468
470
end
You can’t perform that action at this time.
0 commit comments