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