/[axel]/branches/2.x/CHANGES
ViewVC logotype

Contents of /branches/2.x/CHANGES

Parent Directory Parent Directory | Revision Log Revision Log


Revision 108 - (show annotations) (download)
Mon Apr 27 13:51:32 2009 UTC (4 years ago) by appaji
File size: 11507 byte(s)
Add MimeType and fix Categories in the desktop file
1 Version 2.4
2
3 - Fix a buffer overflow caused by wrong size limits when copying strings (Closes: #311569), thanks Michael Schwendt and the Fedora project members
4 - Fix thread hangups due to incorrect synchronization (Closes: #311469), thanks Yao Shi
5 - Removed Fedora packaging file. axel will be available in the Fedora repositories soon.
6 - Use /etc/ instead of /usr/etc/ as the default system-wide configuration location.
7 - Respect environment CFLAGS in configure.
8 - Allow special characters in arguments to configure.
9 - Add MimeType and fix Categories in the desktop file.
10
11 Version 2.3
12
13 - Wait for thread termination in axel.c:axel_do (Closes: #311255), thanks John Ripa
14 - New Chinese translation and manpage, thanks Shuge Lee
15 - Fix LFS support for FTP (Closes: #311320)
16 - Fix LFS support (Closes: #311324), thanks Rodrigue Le Bayon
17
18 Version 2.2:
19
20 - Fix a buffer overflow in http.c:http_encode.
21
22 Version 2.1:
23
24 - Fix version string. 2.0 still reported 1.1, thanks Ajay R Ramjatan
25 - Fix new MB/s display (was showing B/s). Thanks Philipp Hagemeister
26
27 Version 2.0:
28
29 - Large file support thanks thanks David Turnbull
30 - Custom Header Support thanks Eli Yukelzon
31 - New russian translation thanks newhren
32 - Fix segfault in -H option thanks Philipp Hagemeister
33 - Honour http_proxy and prefer it over HTTP_PROXY
34 - Add new RPM spec file thanks bbbush
35
36 Finished Sep 12 2008
37
38 Version 1.1:
39
40 - Compilation for GNU/kFreeBSD, thanks to Cyril Brulebois
41 - Use simple pop-ups for Help and Bug Report buttons
42 - Use strncpy instead of strcpy for length sensitive copies
43 - Always compile with -g, disable -O3
44 - Translation updates: de.po thanks Hermann J. Beckers
45 - Update manpages axel.1 and axel-kapt.1
46 - Prevent crash and raise error if FTP CWD fails
47 - Prevent crash on long URLs and increase max length of URL to 1024
48 - Fix segfaults on HTTP404 and HTTP401 responses
49
50 Finished Jan 18 2008
51
52 Version 1.0b:
53 - Removed spaces between -S[x] in man-pages, etc. They mess things up.
54 - Fixed configure for OpenBSD.
55 - Fixed configuration bug: s/alternate_interface/alternate_output/ in
56 axelrc.example, thanks to CLOTILDE Guy Daniel for the bug report!
57 - Fixed weird behaviour when downloading from an unsupported server.
58 - Fixed buffer overflow in conn.c. (CAN-2005-0390)
59
60 Finished Apr 06 2005
61
62
63 Version 1.0a:
64 - gstrip on Solaris/SPARC breaks the binary, so stripping is made optional
65 (but enabled by default!) and /usr/ccs/bin/strip is used instead of
66 gstrip.
67 - Fixed a small (not harmful) errorcode interpretation bug in the ftp_size
68 code.
69 - Downloading from unsupported sites works better now.
70 - Added support for downloading using more than one local network interface.
71 - Fixed a potential SIGSEGV bug. Would only happen with about more than 64
72 connections usually. Still strange things can happen with too many
73 connections when using Linux..
74 - Hopefully fixed the problem with downloading from forwarding URL's.
75 - HTTP %-escapes are handled now.
76 - Alternate progress indicator with estimation of remaining download time
77 - Changed the return-code a bit, see man-page for details.
78
79 Finished Feb 19 2002
80
81
82 Version 1.0:
83 - Fixed a reconnect problem: Check for stalled connections was skipped by
84 previous versions if there is no active connection.
85 - Solaris does not have www in /etc/services which confused Axel. Fixed.
86 - Created a new build system.
87 - install utility not used anymore: Solaris' install does weird things.
88 - Added support for Cygwin and Solaris.
89 - Corrected a little problem in de.po.
90 - Thrown out the packaging stuff.
91
92 Finished Dec 6 2001
93
94
95 Version 0.99b brings you:
96 - Debian package bugfix.
97 - Restored i18n support.
98
99 Finished Nov 16 2001
100
101
102 Version 0.99a brings you:
103 - Small bugfix for dumb HTTP bug.
104
105 Finished Nov 10 2001
106
107
108 Version 0.99 brings you:
109 - Improved speed limiter. (For low speeds a smaller buffer works better,
110 so the buffer is resized automatically for low speeds.)
111 - Some FTP servers don't ask for a password which confused ftp.c. Fixed.
112 - Some HTTP servers send chunked data when using HTTP/1.1. So I went back
113 to HTTP/1.0.. (This also fixes the occasional filesearching.com problem)
114 - Even more problems with FTP server reply codes, but they must be fixed
115 now, Axel's RFC compliant.
116 - For HTTP downloads a Range: header is not sent when downloading starting
117 at byte 0. This is just a work-around for a problem with a weird webserver
118 which sends corrupted data when a Range: header is sent. It's just a
119 work-around for a rare problem, it does not really fix anything.
120 - RPM package for axel-kapt added.
121
122 Finished Nov 9 2001
123
124
125 Version 0.98 brings you:
126 - Fixed the weird percentage indicator bug. (Was buggy for large files,
127 did not affect the downloaded data.)
128 - For single connection downloads from Apache: Apache returns a 200 result
129 code when the specified file range is the complete file. Axel handles
130 this correctly now.
131 - Roxen FTP servers return the address and port number without brackets
132 after a passive command. This is RFC-compliant but quite unique. But now
133 handled correctly.
134 - Fixed some things to make it work on Darwin again.
135 - 'Upgraded' HTTP requests to HTTP/1.1. Tried this to fix a download
136 corruption bug for downloads from archive.progeny.com, but it did not
137 work. wget's resume has exactly the same problem. But using HTTP/1.1 is
138 more compliant (because in fact HTTP/1.0 does not support Ranges) so I'll
139 keep it this way..
140 - Previous version used to delete the statefile in some cases. Fixed.
141
142 Finished Nov 3 2001
143
144
145 Version 0.97 (Bitcrusher) brings you:
146 - Major redesign: Moved a lot of code from main() to separate functions,
147 it should make it easier to create different interfaces for the program.
148 - All those ifdefs were a mess, they don't exist anymore. Separate threads
149 for setting up connections are used by default now. Version 0.96 will not
150 disappear, by the way.
151 - HTTP HEAD request not used anymore: Squid's headers are incorrect when
152 using the HEAD request.
153 - conn_disconnect did not work for FTP connections through HTTP proxies.
154 - Documentation fix, sort of: The example configuration file still said
155 proxies are unsupported. But they are supported for quite some time
156 already.
157 - Wrote a small (Small? Larger than any other doc.. :-) description of the
158 Axel API.
159 - Added finish_time code. (Credits to sjoerd@huiswerkservice.nl)
160 - Calling conn_setup without calling conn_init first also works when using
161 a proxy now.
162 - A client for filesearching.com. You can use it to search for mirrors and
163 download from more than mirror at once.
164 - Fixed another segfault bug which did not show up on my own system...
165 Also fixed by 0.96a.
166 - Global error string is gone. Unusable in threaded programs.
167 - The -V switch stopped working some time ago because I forgot to put it
168 in the getopt string. Now it's back, alive and kickin'...
169 - TYPE I should be done quite early. Some servers return weird file sizes
170 when still in ASCII mode.
171 - ftp.c (ftp_wait) sometimes resized conn->message to below MAX_STRING
172 which is Not Good(tm).
173 - I18N support is a bit broken at this time, it'll be fixed later.
174 - Tidied up the man-page a bit.
175 - Removed config.h file, -D flags used again.
176 - Added axel-kapt interface.
177 - Changed syntax: Local file must be specified using the -o option now.
178 This allows the user to specify more than one URL and all of them will
179 be used for the download. A local directory can be passed as well, the
180 program will append the correct filename.
181 - Fixed a bug which caused the program not to be able to download files
182 for which only one byte has to be downloaded for one of the connections.
183 - Why bitcrusher? Just because I liked to have a code name for this
184 release... Bit crusher is a name of a musical group here in the
185 Netherlands, and it's a nice name for a downloader as well, I hope...
186
187 Finished Oct 25 2001
188
189
190 Version 0.96 brings you:
191 - Fixed a terrible bug which caused any FTP download to corrupt. I promise
192 I will test the program before any next release. :-(( HTTP did work in
193 0.95.
194
195 Finished Aug 14 2001 (Why is this fix so late? Because the actual release
196 of version 0.95 was only last Friday/Saturday...)
197
198 And yes, I tested it now. It works now. HTTP and FTP.
199
200
201 Version 0.95 brings you:
202 - An important bugfix: When bringing up the connection failed, the program
203 used to be unable to reconnect. :(
204 - Small changes to make the program compile on FreeBSD and Darwin.
205 - Support check for FTP servers is done only once now.
206 - SIZE command is really used now.
207 - Fixed a SIGINT-does-not-abort problem. Btw: Ctrl-\ (SIGQUIT) always works!
208 - Connection status messages are not displayed by default. You can enable
209 them with the verbose-option.
210
211 Finished Aug 7 2001
212
213
214 Version 0.94 brings you:
215 - 'make install' uses install instead of mkdir/cp now.
216 - Added 'make uninstall' option.
217 - Added more explanations to axelrc.example.
218 - It uses the HTTP HEAD request now. Didn't know that one before. :)
219 - Debian packaging stuff and RPM .spec file included by default.
220 - select() problem now really understood... The real point was, that
221 sometimes select() was called with an empty fd set. Now I solved the
222 problem in a more 'useful' way.
223
224 Finished Jun 26 2001
225
226
227 Version 0.93 brings you:
228 - A compile-time option to remove all the multi-connection stuff. Program
229 works without state files then, and it's a bit smaller, just in case you
230 need a very small program and if you don't believe in acceleration. :)
231 - The SIZE command is now used as long as the URL does not contain wildcards.
232 Because FTP servers are just too different. :(
233 - You can do FTP downloads through HTTP proxies now.
234 - The weird initial 1-second delay which happened sometimes does not exist
235 anymore: It was because of select(), which does not return immediately
236 if there's data on a socket before the call starts. My first solution
237 is using a lower timeout, I hope there's a better solution available...
238 - Local file existence check.
239 - Small bug fixed in conf.c.
240
241 Finished May 22 2001
242
243
244 Version 0.92 brings you:
245 - A credits file!! ;)
246 - A German translation. Herrman J. Beckers: Thanks a lot!
247 - ftp.c should understand weird Macintosh FTP servers too, now.
248 - Connections are initialized in a different thread because then the program
249 can go on downloading data from other connections while setting up. Quick
250 hack, but it works.
251 - config.h contains the configuration definitions now.
252 - A URL - can be specified. The program will read a URL from stdin. Might
253 be useful if you don't want other people to see the URL in the 'ps aux'
254 output. (Think about passwords in URLs...)
255
256 Finished May 11 2001
257
258
259 Version 0.91 brings you:
260 - A man page.
261 - A quiet mode.
262 - A Debian package. (0.9 .deb exists too, but that was after the 'official'
263 0.9 release..)
264 - Made the sizes/times displayed after downloading more human-readable.
265 - Corrected some stupid things in the nl.po file.
266 - No bug in ftp_wait anymore, (or at least one bug less ;) the program was a
267 bit too late with the realloc() sometimes. I just hate those multi-line
268 replies.. :(
269 - HTTP proxy support. no_proxy configuration flag also in use.
270 - Support for empty configuration strings.
271 - URL parser understands wrongly formatted URLs like slashdot.org. (instead
272 of the correct http://slashdot.org/)
273
274 Finished Apr 30 2001
275
276
277 Version 0.9 brings you:
278 - See the README for all the old features.
279 - Internationalization support.
280 - Clearer error messages.
281 - Probably some bug fixes too.
282 - A highly sophisticated Makefile.. ;)
283
284 Finished Apr 22 2001

  ViewVC Help
Powered by ViewVC 1.1.5