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