From: <ul...@us...> - 2008-02-10 21:35:57
|
Revision: 1002 http://dcplusplus.svn.sourceforge.net/dcplusplus/?rev=1002&view=rev Author: ullner Date: 2008-02-10 13:35:52 -0800 (Sun, 10 Feb 2008) Log Message: ----------- version.xml use Coral; fixed todo for quick connect/nick missing; removed non-coral'd hub lists Modified Paths: -------------- dcplusplus/trunk/changelog.txt dcplusplus/trunk/dcpp/SettingsManager.cpp dcplusplus/trunk/win32/AboutDlg.cpp dcplusplus/trunk/win32/MainWindow.cpp Modified: dcplusplus/trunk/changelog.txt =================================================================== --- dcplusplus/trunk/changelog.txt 2008-02-10 19:19:16 UTC (rev 1001) +++ dcplusplus/trunk/changelog.txt 2008-02-10 21:35:52 UTC (rev 1002) @@ -13,7 +13,7 @@ * Added tab drag/drop (thanks poy) * Changed Pothead to mikejj * Fixed search spy crash -* Upgraded to bzip 1.0.4 (thanks pothead) +* Upgraded to bzip 1.0.4 (thanks mikejj) * Tab tooltips (thanks poy) * Allow spaces in the description field (poy) * [ADC] Handle third person formatting (thanks poy) @@ -29,6 +29,7 @@ * Fixed issues with scrolling (thanks poy) * Fixed re-add sources showing wrong sources (thanks poy) * Partially fixed kick message filtering (thanks mikejj) +* version.xml now use Coral (ullner) -- 0.704 2007-12-14 -- * Hub lists added to utilize Coral's distributed network (ullner) Modified: dcplusplus/trunk/dcpp/SettingsManager.cpp =================================================================== --- dcplusplus/trunk/dcpp/SettingsManager.cpp 2008-02-10 19:19:16 UTC (rev 1001) +++ dcplusplus/trunk/dcpp/SettingsManager.cpp 2008-02-10 21:35:52 UTC (rev 1002) @@ -136,7 +136,7 @@ setDefault(IGNORE_BOT_PMS, false); setDefault(LIST_DUPES, true); setDefault(BUFFER_SIZE, 64); - setDefault(HUBLIST_SERVERS, "http://hublist.hubtracker.com/hublist.xml.bz2;http://dchublist.com/hublist.xml.bz2;http://adchublist.com/hublist.xml.bz2;http://www.hublist.org/PublicHubList.xml.bz2;http://dclist.eu/hublist.xml.bz2;http://download.hublist.cz/hublist.xml.bz2;http://hublist.awenet.info/PublicHubList.xml.bz2;http://hublist.hubtracker.com.nyud.net/hublist.xml.bz2;http://dchublist.com.nyud.net/hublist.xml.bz2;http://adchublist.com.nyud.net/hublist.xml.bz2;http://www.hublist.org.nyud.net/PublicHubList.xml.bz2;http://dclist.eu.nyud.net/hublist.xml.bz2;http://download.hublist.cz.nyud.net/hublist.xml.bz2;http://hublist.awenet.info.nyud.net/PublicHubList.xml.bz2"); + setDefault(HUBLIST_SERVERS, "http://hublist.hubtracker.com.nyud.net/hublist.xml.bz2;http://dchublist.com.nyud.net/hublist.xml.bz2;http://adchublist.com.nyud.net/hublist.xml.bz2;http://www.hublist.org.nyud.net/PublicHubList.xml.bz2;http://dclist.eu.nyud.net/hublist.xml.bz2;http://download.hublist.cz.nyud.net/hublist.xml.bz2;http://hublist.awenet.info.nyud.net/PublicHubList.xml.bz2"); setDefault(DOWNLOAD_SLOTS, 3); setDefault(MAX_DOWNLOAD_SPEED, 0); setDefault(LOG_DIRECTORY, Util::getConfigPath() + "Logs" PATH_SEPARATOR_STR); Modified: dcplusplus/trunk/win32/AboutDlg.cpp =================================================================== --- dcplusplus/trunk/win32/AboutDlg.cpp 2008-02-10 19:19:16 UTC (rev 1001) +++ dcplusplus/trunk/win32/AboutDlg.cpp 2008-02-10 21:35:52 UTC (rev 1002) @@ -67,7 +67,7 @@ centerWindow(); c.addListener(this); - c.downloadFile("http://dcplusplus.sourceforge.net/version.xml"); + c.downloadFile("http://dcplusplus.sourceforge.net.nyud.net/version.xml"); return false; } Modified: dcplusplus/trunk/win32/MainWindow.cpp =================================================================== --- dcplusplus/trunk/win32/MainWindow.cpp 2008-02-10 19:19:16 UTC (rev 1001) +++ dcplusplus/trunk/win32/MainWindow.cpp 2008-02-10 21:35:52 UTC (rev 1002) @@ -106,7 +106,7 @@ c = new HttpConnection; c->addListener(this); - c->downloadFile("http://dcplusplus.sourceforge.net/version.xml"); + c->downloadFile("http://dcplusplus.sourceforge.net.nyud.net/version.xml"); File::ensureDirectory(SETTING(LOG_DIRECTORY)); startSocket(); @@ -348,9 +348,10 @@ } void MainWindow::handleQuickConnect() { - ///@todo send user to settings - if (SETTING(NICK).empty()) + if (SETTING(NICK).empty()) { + postMessage(WM_COMMAND, IDC_SETTINGS); return; + } LineDlg dlg(this, T_("Quick Connect"), T_("Address")); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |