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