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