2007-07-11 22:34:37 +02:00
|
|
|
--- ./src/FinishedList.cpp.orig Mon Mar 12 01:45:24 2007
|
|
|
|
+++ ./src/FinishedList.cpp Sun Jun 24 23:27:13 2007
|
|
|
|
@@ -203,7 +203,7 @@
|
wxDownload Fast (also known as wxDFast) is an open source download manager. It
is multi-platform and builds on Windows(2k,XP), Linux and Mac OS X. Besides
that, it is a multi-threaded download manager. This means that it can split a
file into several pieces and download the pieces simultaneously.
Features:
* Faster downloads (with Segmented/Multi-threaded/Accelerated transfers).
* Download resuming (Pause and restart where you stopped).
* Download scheduling.
* Organizes files you have already downloaded.
* View server messages (HTTP, FTP, file://). No HTTPS support.
* Available in multiple languages and easily translated. Now available in
Portuguese [Brazil], Spanish, English, German, Russian, Hungarian, Armenian
and Indonesian.
* Connection to FTP servers which require a password.
* Calculates the MD5 checksum of downloaded files so they can be easily.
verified.
* Metalink support.
WWW: http://dfast.sourceforge.net/
2006-12-07 18:52:07 +01:00
|
|
|
wxDateTime date;
|
|
|
|
value = 0;
|
|
|
|
config->Read(START_REG,&value);
|
|
|
|
- date.Set(value);
|
|
|
|
+ date.Set((time_t)value);
|
|
|
|
infolist->SetItem(5,1,date.Format());
|
|
|
|
}
|
|
|
|
|
2007-07-11 22:34:37 +02:00
|
|
|
@@ -211,7 +211,7 @@
|
wxDownload Fast (also known as wxDFast) is an open source download manager. It
is multi-platform and builds on Windows(2k,XP), Linux and Mac OS X. Besides
that, it is a multi-threaded download manager. This means that it can split a
file into several pieces and download the pieces simultaneously.
Features:
* Faster downloads (with Segmented/Multi-threaded/Accelerated transfers).
* Download resuming (Pause and restart where you stopped).
* Download scheduling.
* Organizes files you have already downloaded.
* View server messages (HTTP, FTP, file://). No HTTPS support.
* Available in multiple languages and easily translated. Now available in
Portuguese [Brazil], Spanish, English, German, Russian, Hungarian, Armenian
and Indonesian.
* Connection to FTP servers which require a password.
* Calculates the MD5 checksum of downloaded files so they can be easily.
verified.
* Metalink support.
WWW: http://dfast.sourceforge.net/
2006-12-07 18:52:07 +01:00
|
|
|
wxDateTime date;
|
|
|
|
value = 0;
|
|
|
|
config->Read(END_REG,&value);
|
|
|
|
- date.Set(value);
|
|
|
|
+ date.Set((time_t)value);
|
|
|
|
infolist->SetItem(6,1,date.Format());
|
|
|
|
}
|
|
|
|
|