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