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