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