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