------------------------------------------------------------ revno: 2174 committer: eMTee <emte...@gmail.com> branch nick: dcplusplus timestamp: Sat 2010-07-03 10:37:49 +0200 message: Add a few more predefined extensions modified: changelog.txt dcpp/SettingsManager.cpp
-- lp:dcplusplus https://code.launchpad.net/~dcplusplus-team/dcplusplus/trunk Your team Dcplusplus-team is subscribed to branch lp:dcplusplus. To unsubscribe from this branch go to https://code.launchpad.net/~dcplusplus-team/dcplusplus/trunk/+edit-subscription
=== modified file 'changelog.txt' --- changelog.txt 2010-06-30 14:40:00 +0000 +++ changelog.txt 2010-07-03 08:37:49 +0000 @@ -1,10 +1,12 @@ * [L#550300] Catch more potential file corruptions (thanks bigmuscle) +* Fix socket resolve in *nix systems (thanks razzloss) * [ADC] NAT traversal to allow passive-passive connections (thanks cologic) * Reduce donwload reconnect attempts after connection failures (poy) * Fix crashes related to file lists (poy) * [L#230973] Add MiniUPnPc for UPnP mappings and make it threaded (poy) * Be stricter when parsing list-looking %[line:] params (poy) -* [L#326541] [ADC] Customizable search type extensions (emtee) +* [L#326541] [ADC] Customizable search type extensions (emtee, poy) +* Help updates (poy) -- 0.762 2010-05-16 -- * Stability improvement related to menus (poy) === modified file 'dcpp/SettingsManager.cpp' --- dcpp/SettingsManager.cpp 2010-06-30 14:40:00 +0000 +++ dcpp/SettingsManager.cpp 2010-07-03 08:37:49 +0000 @@ -562,13 +562,13 @@ l.push_back("xlsx"); l.push_back("pptx"); l.push_back("odf"); l.push_back("odt"); l.push_back("ods"); l.push_back("odp"); l.push_back("pdf"); l.push_back("xps"); l.push_back("htm"); l.push_back("html"); l.push_back("xml"); l.push_back("txt"); - l.push_back("nfo"); + l.push_back("nfo"); l.push_back("rtf"); } { StringList& l = searchTypes.insert(make_pair(string(1, '0' + SearchManager::TYPE_EXECUTABLE), StringList())).first->second; l.push_back("exe"); l.push_back("com"); l.push_back("bat"); l.push_back("cmd"); - l.push_back("dll"); l.push_back("vbs"); l.push_back("ps1"); + l.push_back("dll"); l.push_back("vbs"); l.push_back("ps1"); l.push_back("msi"); } { @@ -586,7 +586,7 @@ l.push_back("mov"); l.push_back("mp4"); l.push_back("3gp"); l.push_back("qt"); l.push_back("asx"); l.push_back("divx"); l.push_back("asf"); l.push_back("pxp"); l.push_back("ogm"); l.push_back("flv"); l.push_back("rm"); l.push_back("rmvb"); - l.push_back("webm"); + l.push_back("webm"); l.push_back("mpeg"); } fire(SettingsManagerListener::SearchTypesChanged());
_______________________________________________ Mailing list: https://launchpad.net/~linuxdcpp-team Post to : linuxdcpp-team@lists.launchpad.net Unsubscribe : https://launchpad.net/~linuxdcpp-team More help : https://help.launchpad.net/ListHelp