]> git.phdru.name Git - mimedecode.git/blob - ChangeLog
Version 2.5.0
[mimedecode.git] / ChangeLog
1 Version 2.5.0 (2014-03-18)
2
3    Add option --set-header=header:value to set header's value (only at the top
4 level).
5
6    Add option --set-param=header:param=value to set header parameter's value
7 (only at the top level). The header must exist.
8
9    Add option -B to skip content-transfer-decoding binary attachments.
10
11    Add options --save-headers, --save-body and --save-message to save decoded
12 headers/bodies/messages to files.
13
14    Add option -O to set the destination directory for output files.
15
16    Fix a minor bug: if a multipart message (or a subpart) lacks any textual
17 content - avoid putting an excessive newline.
18
19 Version 2.4.0 (2014-03-08)
20
21    Change option -d to accept a comma-separated list of headers:
22 -d h1,h2,h3,...
23
24    Change option -d to decode all headers and accept a list of exceptions:
25 -d *,-h1,-h2,...
26
27    Change option -p to accept lists of headers and parameters:
28 -p h1,h2,h3,..:p1,p2,p3,..
29
30    Allow * and exceptions for -p in the headers and parameters lists:
31 -p *,-h1,-h2,-h3:p1,p2,p3
32 -p h1,h2,h3:*,-p1,-p2,-p3
33 -p *,-h1,-h2,-h3:*,-p1,-p2,-p3
34
35    Change option -r to accept a list of headers: -r h1,h2,h3,...
36
37    Change option -r to remove all headers and accept a list of exceptions:
38 -r *,-h1,-h2,...
39
40    Change option -R to accept lists of headers and parameters:
41 -R h1,h2,h3:p1,p2,p3
42 -R h1,h2,h3:*,-p1,-p2,-p3
43 -R *,-h1,-h2,-h3:p1,p2,p3
44 -R *,-h1,-h2,-h3:*,-p1,-p2,-p3
45
46    Publish docs in html format.
47
48    Add ChangeLog.
49
50 Version 2.3.8 (2014-02-26)
51
52    Add option --remove-params=header to remove all parameters from the header.
53
54 Version 2.3.7 (2014-02-23)
55
56    Add option -r to remove headers and option -R to remove header's parameters.
57
58 Version 2.3.6 (2014-02-19)
59
60    Decode "To", "Cc", "Reply-To" and "Mail-Followup-To" headers by default.
61
62    Report test progress and success.
63
64    Add tests for headers and parameters decoding.
65
66    Add tests for passing (-b) and skipping (-i) message bodies.
67
68 Version 2.3.4 (2014-02-11)
69
70    Optimize recursive decoding.
71
72    Fix a bug - decode message/rfc822 subparts.
73
74 Version 2.3.3 (2014-02-02)
75
76    Forbid filtering from console. When the program runs with stdin
77    connected to the console it shows usage help.
78
79    Fix a bug - option -o and no parameters.
80
81 Version 2.3.2 (2014-02-01)
82
83    Fix a bug - do not generate 'From ' headers in subparts.
84
85    Add option --host.
86
87    Add tests.
88
89 Version 2.3.1 (2014-01-31)
90
91    Update documentation.
92
93 Version 2.3.0 (2014-01-30)
94
95    Add option -o and output_file argument.
96
97 Version 2.2.2 (2014-01-23)
98
99    Upgrade docbook-xsl.
100
101 Version 2.2.1 (2013-12-24)
102
103    Add mk-distr helper.
104
105 Version 2.2.0 (2013-12-21)
106
107    Rename __version__.py to mimedecode_version.py.
108
109    Use setuptools.
110
111 Version 2.1.5 (2013-12-18)
112
113    Move __version__ out of mimedecode.py to __version__.py
114    to allow installation without m_lib.
115
116 Version 2.1.4 (2013-12-11)
117
118    Add installation instruction in INSTALL.txt.
119
120 Version 2.1.3 (2013-12-10)
121
122    Minor bugfix.
123
124 Version 2.1.2 (2013-07-26)
125
126    Minor fix in Makefile. Switched to git.
127
128 Version 2.1.1 (2012-04-15)
129
130    Removed svn:keywords.
131
132 Version 2.1.0 (2006-04-27)
133
134    A patch by Bogdan Maryniuk <bogdan.maryniuk@gmail.com>: portable way to get
135 the default charset.
136
137 Version 2.0.0
138
139    Major rewrite to use python email package.