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