Skip to content

Commit

Permalink
* Add dchublist.biz hublist by default (RoLex)
Browse files Browse the repository at this point in the history
  • Loading branch information
RoLex committed Mar 7, 2023
1 parent 9f01ba0 commit 9535f8c
Show file tree
Hide file tree
Showing 10 changed files with 11 additions and 8 deletions.
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,11 @@
# New in 1.3.0.0

```
* Update OpenSSL to version 1.1.1t (RoLex)
* Temporarily fix buffer overflow error when receiving large chat messages, needs a complete rewrite (RoLex)
* Add hublist.pwiam.com to list protected against CTM requests (RoLex)
* Remove dchublist.org and hublist.pwiam.com hublists due to user count falsification for own interests (RoLex)
* Add hublist.pwiam.com and dchublist.biz to list protected against CTM requests (RoLex)
* Add dchublist.biz hublist by default (RoLex)
* Remove dchublist.org hublist due to user count falsification for own interests (RoLex)
* $MaxedOut sends queue position parameter on NMDC hubs, thanks to iceman50 (RoLex)
* Missing in all clients - force login timeout after 2 minutes (RoLex)
* Merge with DC++ 0.880 (RoLex)
Expand All @@ -20,7 +22,6 @@
* Update Boost to version 1.79 (RoLex)
* Update MiniUPnPc to version 2.2.3 (RoLex)
* Update GeoIP to version 1.7.0 (RoLex)
* Update OpenSSL to version 1.1.1t (RoLex)
* Add settings to show user IP and country in main and private chats when available (RoLex)
* Add %[extra] variable support to main and private chat log formats when available, this shows user IP and country (RoLex)
* Add global and favorite hub settings to disable TLS NMDC client-client connections, this allows transfers between us and old clients (RoLex)
Expand Down
7 changes: 4 additions & 3 deletions changelog_feardc.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
-- 1.3.0.0 2023-##-## --

* Update OpenSSL to version 1.1.1t (RoLex)
* Temporarily fix buffer overflow error when receiving large chat messages, needs a complete rewrite (RoLex)
* Add hublist.pwiam.com to list protected against CTM requests (RoLex)
* Remove dchublist.org and hublist.pwiam.com hublists due to user count falsification for own interests (RoLex)
* Add hublist.pwiam.com and dchublist.biz to list protected against CTM requests (RoLex)
* Add dchublist.biz hublist by default (RoLex)
* Remove dchublist.org hublist due to user count falsification for own interests (RoLex)
* $MaxedOut sends queue position parameter on NMDC hubs, thanks to iceman50 (RoLex)
* Missing in all clients - force login timeout after 2 minutes (RoLex)
* Merge with DC++ 0.880 (RoLex)
Expand All @@ -14,7 +16,6 @@
* Update Boost to version 1.79 (RoLex)
* Update MiniUPnPc to version 2.2.3 (RoLex)
* Update GeoIP to version 1.7.0 (RoLex)
* Update OpenSSL to version 1.1.1t (RoLex)
* Add settings to show user IP and country in main and private chats when available (RoLex)
* Add %[extra] variable support to main and private chat log formats when available, this shows user IP and country (RoLex)
* Add global and favorite hub settings to disable TLS NMDC client-client connections, this allows transfers between us and old clients (RoLex)
Expand Down
3 changes: 2 additions & 1 deletion dcpp/NmdcHub.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1353,7 +1353,8 @@ void NmdcHub::on(Minute, uint64_t aTick) noexcept {
protectedIPs = {
"dchublist.org",
"hublist.pwiam.com",
"dcbase.org"
"dcbase.org",
"dchublist.biz"
};

for (auto i = protectedIPs.begin(); i != protectedIPs.end();) {
Expand Down
2 changes: 1 addition & 1 deletion dcpp/SettingsManager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ SettingsManager::SettingsManager() {
setDefault(DISABLE_TASKBAR_MENU, false);
setDefault(LIST_DUPES, true);
setDefault(BUFFER_SIZE, 64);
setDefault(HUBLIST_SERVERS, "https://www.te-home.net/?do=hublist&get=hublist.xml.bz2;https://dchublist.ru/hublist.xml.bz2;https://dcnf.github.io/Hublist/hublist.xml.bz2;");
setDefault(HUBLIST_SERVERS, "https://te-home.net/?do=hublist&get=hublist.xml.bz2;https://hublist.pwiam.com/hublist.xml.bz2;https://dchublist.biz/?do=hublist&get=hublist.xml.bz2;https://dchublist.ru/hublist.xml.bz2;https://dcnf.github.io/Hublist/hublist.xml.bz2;");
setDefault(DOWNLOAD_SLOTS, 6);
setDefault(MAX_DOWNLOAD_SPEED, 0);
setDefault(LOG_DIRECTORY, Util::getPath(Util::PATH_USER_LOCAL) + "Logs" PATH_SEPARATOR_STR);
Expand Down
Binary file modified res/Secure.ico
Binary file not shown.
Binary file modified res/Tabs.ico
Binary file not shown.
Binary file modified res/Trusted.ico
Binary file not shown.
Binary file modified res/Users.ico
Binary file not shown.
Binary file modified res/WhatsThis.ico
Binary file not shown.
Binary file modified res/Windows.ico
Binary file not shown.

0 comments on commit 9535f8c

Please sign in to comment.