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