From: <sir...@us...> - 2003-03-09 12:11:57
|
Update of /cvsroot/btplusplus/BT++/dist In directory sc8-pr-cvs1:/tmp/cvs-serv18349/dist Modified Files: BT++.nsi Added Files: CHANGELOG.txt Log Message: Added Changelog. --- NEW FILE: CHANGELOG.txt --- [0.5.0 (alpha)] - Fixed bug when downloading multi-file torrents. - Now uses a toolbar for switching between tabs; no notebook anymore - The whole window is now resizable. - Nice icons for the tabs. - Help button within the toolbar. - Images and icons are embedded in the distribution ('src/Images.py') - Improved about dialog. Now with more text and nice image. - Vastly improved grid, especially the look; highlighted rows, progress bar, no more flickering. - Fixed flaw in the Add Torrent dialog. - Tasbbar icon now shows the number of open connections. - Nice images for the toolbar. - Grid is now handmade completly in Python to reduce refresh-flicker. - Added a history tab that shows all finished downloads. [0.4.0 (alpha)] - associate BT++ with .torrent files - new preference options - improvements of the tray icon - refreshing of torrent folder - added incoming and history folder - about dialog - new, much better looking icons - context-sensitive help - configurable background hashing - improved handling of not valid/damaged torrents - grid right click menu improvements - add torrent from url / local file - global upload rate restriction settings - extremly simple progress bars - many, many bugfixes [0.3.0 (alpha)] - now uses a grid instead of a tree for transfers - many cosmetic changes and improvements - file priority - some major rewrites and code cleanups - new important features, like up/down speed coming soon (fundation has been set through rewrites) - some fixes, but rewrite will surely have introduced new bugs [0.2.1 (alpha)] - bugfix for torrents containing multiple files - validator for the preference window - log window now read only [0.2.0 (alpha)] - Linux compatibility - Added: Preference dialog. - Added: Class for reading and wiriting to the config file. - Buttons for preference window, collaps/expand all. - Respect preferences from config file when starting download - Fixes for some bugs introduced with the latest features. - Cosmetic changes. - Tree: Right click menu implemented(only pause/resume). - Colors in log window(not yet used). [0.1.0 (alpha)] - first public release - first set of functions works - tool is usable - there ARE bugs and problems Index: BT++.nsi =================================================================== RCS file: /cvsroot/btplusplus/BT++/dist/BT++.nsi,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** BT++.nsi 9 Mar 2003 11:51:34 -0000 1.8 --- BT++.nsi 9 Mar 2003 12:11:55 -0000 1.9 *************** *** 48,51 **** --- 48,52 ---- File "..\build\BT++\zlib.pyd" File "README.txt" + File "CHANGELOG.txt" File "LICENSE.rtf" SectionEnd *************** *** 61,64 **** --- 62,66 ---- CreateShortCut "$SMPROGRAMS\BitTorrent++\BitTorrent++.lnk" "$INSTDIR\BT++.exe" CreateShortCut "$SMPROGRAMS\BitTorrent++\Readme.lnk" "$INSTDIR\README.txt" + CreateShortCut "$SMPROGRAMS\BitTorrent++\Changelog.lnk" "$INSTDIR\CHANGELOG.txt" CreateShortCut "$SMPROGRAMS\BitTorrent++\License.lnk" "$INSTDIR\LICENSE.rtf" IfFileExists "$INSTDIR\Uninstall.exe" "" +2 *************** *** 108,111 **** --- 110,114 ---- Delete "$INSTDIR\zlib.pyd" Delete "$INSTDIR\README.txt" + Delete "$INSTDIR\CHANGELOG.txt" Delete "$INSTDIR\LICENSE.rtf" Delete "$INSTDIR\Uninstall.exe" |