Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

change nzbget.net to nzbget.com part 2 #21

Merged
merged 2 commits into from
Sep 21, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -71,4 +71,5 @@ code_revision.cpp
*.temp
*.pyc
pytest.ini
.cache
.cache
/.idea
6 changes: 3 additions & 3 deletions ChangeLog
Original file line number Diff line number Diff line change
Expand Up @@ -1476,7 +1476,7 @@ nzbget-13.0:
work well with hibernation mode on synology);
- pp-script "EMail.py" now takes the status of previous pp-scripts
into account and report a failure if any of the scripts has failed;
- updated all links to go to new domain (nzbget.net);
- updated all links to go to new domain (nzbget.com);
- impoved error reporting if unpacker or par-renamer fail to move files;
- removed libpar2-patches from NZBGet source tree; the documentation
now suggests to use the libpar2 version maintained by Debian/Ubuntu
Expand Down Expand Up @@ -1630,7 +1630,7 @@ nzbget-12.0:
- duplicate properties (dupekey, dupescore and dupemode) can now
be viewed and changed in download-edit-dialog and
history-edit-dialog via new button "Dupe";
- for full documentation see http://nzbget.net/RSS#Duplicates;
- for full documentation see https://nzbget.com/documentation/rss/#duplicates;
- created NZBGet.app - NZBGet is now a user friendly Mac OS X application
with easy installation and seamless integration into OS UI:
works in background, is controlled from a web-browser, few
Expand Down Expand Up @@ -1666,7 +1666,7 @@ nzbget-12.0:
for platform;
- the script is then called by NZBGet when user clicks on install-button;
- the script must download and install new version;
- for more info visit http://nzbget.net/Packaging;
- for more info visit https://nzbget.com/documentation/packaging/;
- news servers can now be temporarily disabled via speed limit dialog
without reloading of the program:
- new option "ServerX.Active" to disable servers via settings;
Expand Down
2 changes: 1 addition & 1 deletion Makefile.am
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# This file is part of nzbget. See <http://nzbget.net>.
# This file is part of nzbget. See <https://nzbget.com>.
#
# Copyright (C) 2008-2019 Andrey Prygunkov <hugbug@users.sourceforge.net>
#
Expand Down
2 changes: 1 addition & 1 deletion Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
@SET_MAKE@

#
# This file is part of nzbget. See <http://nzbget.net>.
# This file is part of nzbget. See <https://nzbget.com>.
#
# Copyright (C) 2008-2019 Andrey Prygunkov <hugbug@users.sourceforge.net>
#
Expand Down
4 changes: 2 additions & 2 deletions README
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

This is a short documentation. For more information please
visit NZBGet home page at
http://nzbget.net
https://nzbget.com

Contents
--------
Expand Down Expand Up @@ -501,7 +501,7 @@ Additional exemption: compiling, linking, and/or using OpenSSL is allowed.

If you encounter any problem, feel free to use the forum

nzbget.net/forum
nzbget.com/forum

or contact me at

Expand Down
2 changes: 1 addition & 1 deletion configure
Original file line number Diff line number Diff line change
Expand Up @@ -5367,7 +5367,7 @@ $as_echo "#define HAVE_CXX14 1" >>confdefs.h
fi

if test "$HAVE_CXX14" != "1"; then
as_fn_error $? "\"A compiler with support for C++14 language features is required. For details visit http://nzbget.net/cpp14\"" "$LINENO" 5
as_fn_error $? "\"A compiler with support for C++14 language features is required. For details visit http://nzbget.com/cpp14\"" "$LINENO" 5
fi
fi

Expand Down
4 changes: 2 additions & 2 deletions configure.ac
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# This file is part of nzbget. See <http://nzbget.com>.
# This file is part of nzbget. See <https://nzbget.com>.
#
# Copyright (C) 2008-2021 Andrey Prygunkov <hugbug@users.sourceforge.net>
#
Expand Down Expand Up @@ -58,7 +58,7 @@ AC_MSG_RESULT($ENABLECPPCHECK)
if test "$ENABLECPPCHECK" = "yes"; then
AX_CXX_COMPILE_STDCXX(14,,[optional])
if test "$HAVE_CXX14" != "1"; then
AC_MSG_ERROR("A compiler with support for C++14 language features is required. For details visit http://nzbget.net/cpp14")
AC_MSG_ERROR("A compiler with support for C++14 language features is required. For details visit https://nzbget.com/documentation/prerequisites-for-c++-compiler/")
fi
fi

Expand Down
2 changes: 1 addition & 1 deletion daemon/connect/Connection.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* This file is part of nzbget. See <http://nzbget.com>.
* This file is part of nzbget. See <https://nzbget.com>.
*
* Copyright (C) 2004 Sven Henkel <sidddy@users.sourceforge.net>
* Copyright (C) 2007-2019 Andrey Prygunkov <hugbug@users.sourceforge.net>
Expand Down
2 changes: 1 addition & 1 deletion daemon/connect/Connection.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* This file is part of nzbget. See <http://nzbget.com>.
* This file is part of nzbget. See <https://nzbget.com>.
*
* Copyright (C) 2004 Sven Henkel <sidddy@users.sourceforge.net>
* Copyright (C) 2007-2017 Andrey Prygunkov <hugbug@users.sourceforge.net>
Expand Down
14 changes: 7 additions & 7 deletions daemon/connect/TlsSocket.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* This file is part of nzbget. See <http://nzbget.com>.
* This file is part of nzbget. See <https://nzbget.com>.
*
* Copyright (C) 2008-2017 Andrey Prygunkov <hugbug@users.sourceforge.net>
*
Expand Down Expand Up @@ -459,7 +459,7 @@ bool TlsSocket::Start()
if (verifyRes != X509_V_OK)
{
PrintError(BString<1024>("TLS certificate verification failed for %s: %s."
" For more info visit http://nzbget.com/certificate-verification",
" For more info visit https://nzbget.com/documentation/certificate-verification/",
*m_host, X509_verify_cert_error_string(verifyRes)));
}
else
Expand Down Expand Up @@ -529,7 +529,7 @@ bool TlsSocket::ValidateCert()
if (gnutls_x509_crt_get_dn_by_oid(cert, GNUTLS_OID_X520_COMMON_NAME, 0, 0, dn, &size) == 0)
{
PrintError(BString<1024>("TLS certificate verification failed for %s: certificate hostname mismatch (%s)."
" For more info visit http://nzbget.com/certificate-verification", *m_host, dn));
" For more info visit https://nzbget.com/documentation/certificate-verification/", *m_host, dn));
gnutls_x509_crt_deinit(cert);
return false;
}
Expand All @@ -541,13 +541,13 @@ bool TlsSocket::ValidateCert()
if (gnutls_certificate_verification_status_print(status, GNUTLS_CRT_X509, &msgdata, 0) == 0)
{
PrintError(BString<1024>("TLS certificate verification failed for %s: %s."
" For more info visit http://nzbget.com/certificate-verification", *m_host, msgdata.data));
" For more info visit https://nzbget.com/documentation/certificate-verification/", *m_host, msgdata.data));
gnutls_free(&msgdata);
}
else
{
ReportError(BString<1024>("TLS certificate verification failed for %s."
" For more info visit http://nzbget.com/certificate-verification", *m_host));
" For more info visit https://nzbget.com/documentation/certificate-verification/", *m_host));
}
return false;
}
Expand All @@ -561,7 +561,7 @@ bool TlsSocket::ValidateCert()
if (!cert)
{
PrintError(BString<1024>("TLS certificate verification failed for %s: no certificate provided by server."
" For more info visit http://nzbget.com/certificate-verification", *m_host));
" For more info visit https://nzbget.com/documentation/certificate-verification/", *m_host));
return false;
}

Expand Down Expand Up @@ -592,7 +592,7 @@ bool TlsSocket::ValidateCert()
}

PrintError(BString<1024>("TLS certificate verification failed for %s: certificate hostname mismatch (%s)."
" For more info visit http://nzbget.com/certificate-verification", *m_host, certHost));
" For more info visit https://nzbget.com/documentation/certificate-verification/", *m_host, certHost));
X509_free(cert);
return false;
}
Expand Down
2 changes: 1 addition & 1 deletion daemon/connect/TlsSocket.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* This file is part of nzbget. See <http://nzbget.com>.
* This file is part of nzbget. See <https://nzbget.com>.
*
* Copyright (C) 2008-2016 Andrey Prygunkov <hugbug@users.sourceforge.net>
*
Expand Down
2 changes: 1 addition & 1 deletion daemon/connect/WebDownloader.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* This file is part of nzbget. See <http://nzbget.com>.
* This file is part of nzbget. See <https://nzbget.com>.
*
* Copyright (C) 2012-2019 Andrey Prygunkov <hugbug@users.sourceforge.net>
*
Expand Down
2 changes: 1 addition & 1 deletion daemon/connect/WebDownloader.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* This file is part of nzbget. See <http://nzbget.com>.
* This file is part of nzbget. See <https://nzbget.com>.
*
* Copyright (C) 2012-2016 Andrey Prygunkov <hugbug@users.sourceforge.net>
*
Expand Down
2 changes: 1 addition & 1 deletion daemon/extension/CommandScript.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* This file is part of nzbget. See <http://nzbget.com>.
* This file is part of nzbget. See <https://nzbget.com>.
*
* Copyright (C) 2017 Andrey Prygunkov <hugbug@users.sourceforge.net>
*
Expand Down
2 changes: 1 addition & 1 deletion daemon/extension/CommandScript.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* This file is part of nzbget. See <http://nzbget.com>.
* This file is part of nzbget. See <https://nzbget.com>.
*
* Copyright (C) 2017 Andrey Prygunkov <hugbug@users.sourceforge.net>
*
Expand Down
2 changes: 1 addition & 1 deletion daemon/extension/FeedScript.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* This file is part of nzbget. See <http://nzbget.com>.
* This file is part of nzbget. See <https://nzbget.com>.
*
* Copyright (C) 2015-2016 Andrey Prygunkov <hugbug@users.sourceforge.net>
*
Expand Down
2 changes: 1 addition & 1 deletion daemon/extension/FeedScript.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* This file is part of nzbget. See <http://nzbget.com>.
* This file is part of nzbget. See <https://nzbget.com>.
*
* Copyright (C) 2015-2016 Andrey Prygunkov <hugbug@users.sourceforge.net>
*
Expand Down
2 changes: 1 addition & 1 deletion daemon/extension/NzbScript.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* This file is part of nzbget. See <http://nzbget.com>.
* This file is part of nzbget. See <https://nzbget.com>.
*
* Copyright (C) 2007-2016 Andrey Prygunkov <hugbug@users.sourceforge.net>
*
Expand Down
2 changes: 1 addition & 1 deletion daemon/extension/NzbScript.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* This file is part of nzbget. See <http://nzbget.com>.
* This file is part of nzbget. See <https://nzbget.com>.
*
* Copyright (C) 2007-2016 Andrey Prygunkov <hugbug@users.sourceforge.net>
*
Expand Down
2 changes: 1 addition & 1 deletion daemon/extension/PostScript.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* This file is part of nzbget. See <http://nzbget.com>.
* This file is part of nzbget. See <https://nzbget.com>.
*
* Copyright (C) 2007-2019 Andrey Prygunkov <hugbug@users.sourceforge.net>
*
Expand Down
2 changes: 1 addition & 1 deletion daemon/extension/PostScript.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* This file is part of nzbget. See <http://nzbget.com>.
* This file is part of nzbget. See <https://nzbget.com>.
*
* Copyright (C) 2007-2016 Andrey Prygunkov <hugbug@users.sourceforge.net>
*
Expand Down
2 changes: 1 addition & 1 deletion daemon/extension/QueueScript.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* This file is part of nzbget. See <http://nzbget.com>.
* This file is part of nzbget. See <https://nzbget.com>.
*
* Copyright (C) 2007-2017 Andrey Prygunkov <hugbug@users.sourceforge.net>
*
Expand Down
2 changes: 1 addition & 1 deletion daemon/extension/QueueScript.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* This file is part of nzbget. See <http://nzbget.com>.
* This file is part of nzbget. See <https://nzbget.com>.
*
* Copyright (C) 2007-2017 Andrey Prygunkov <hugbug@users.sourceforge.net>
*
Expand Down
2 changes: 1 addition & 1 deletion daemon/extension/ScanScript.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* This file is part of nzbget. See <http://nzbget.com>.
* This file is part of nzbget. See <https://nzbget.com>.
*
* Copyright (C) 2007-2016 Andrey Prygunkov <hugbug@users.sourceforge.net>
*
Expand Down
2 changes: 1 addition & 1 deletion daemon/extension/ScanScript.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* This file is part of nzbget. See <http://nzbget.com>.
* This file is part of nzbget. See <https://nzbget.com>.
*
* Copyright (C) 2007-2016 Andrey Prygunkov <hugbug@users.sourceforge.net>
*
Expand Down
2 changes: 1 addition & 1 deletion daemon/extension/SchedulerScript.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* This file is part of nzbget. See <http://nzbget.com>.
* This file is part of nzbget. See <https://nzbget.com>.
*
* Copyright (C) 2007-2016 Andrey Prygunkov <hugbug@users.sourceforge.net>
*
Expand Down
2 changes: 1 addition & 1 deletion daemon/extension/SchedulerScript.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* This file is part of nzbget. See <http://nzbget.com>.
* This file is part of nzbget. See <https://nzbget.com>.
*
* Copyright (C) 2007-2016 Andrey Prygunkov <hugbug@users.sourceforge.net>
*
Expand Down
2 changes: 1 addition & 1 deletion daemon/extension/ScriptConfig.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* This file is part of nzbget. See <http://nzbget.com>.
* This file is part of nzbget. See <https://nzbget.com>.
*
* Copyright (C) 2013-2016 Andrey Prygunkov <hugbug@users.sourceforge.net>
*
Expand Down
2 changes: 1 addition & 1 deletion daemon/extension/ScriptConfig.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* This file is part of nzbget. See <http://nzbget.com>.
* This file is part of nzbget. See <https://nzbget.com>.
*
* Copyright (C) 2013-2016 Andrey Prygunkov <hugbug@users.sourceforge.net>
*
Expand Down
2 changes: 1 addition & 1 deletion daemon/feed/FeedCoordinator.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* This file is part of nzbget. See <http://nzbget.com>.
* This file is part of nzbget. See <https://nzbget.com>.
*
* Copyright (C) 2013-2019 Andrey Prygunkov <hugbug@users.sourceforge.net>
*
Expand Down
2 changes: 1 addition & 1 deletion daemon/feed/FeedCoordinator.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* This file is part of nzbget. See <http://nzbget.com>.
* This file is part of nzbget. See <https://nzbget.com>.
*
* Copyright (C) 2013-2019 Andrey Prygunkov <hugbug@users.sourceforge.net>
*
Expand Down
2 changes: 1 addition & 1 deletion daemon/feed/FeedFile.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* This file is part of nzbget. See <http://nzbget.com>.
* This file is part of nzbget. See <https://nzbget.com>.
*
* Copyright (C) 2013-2016 Andrey Prygunkov <hugbug@users.sourceforge.net>
*
Expand Down
2 changes: 1 addition & 1 deletion daemon/feed/FeedFile.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* This file is part of nzbget. See <http://nzbget.com>.
* This file is part of nzbget. See <https://nzbget.com>.
*
* Copyright (C) 2013-2016 Andrey Prygunkov <hugbug@users.sourceforge.net>
*
Expand Down
2 changes: 1 addition & 1 deletion daemon/feed/FeedFilter.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* This file is part of nzbget. See <http://nzbget.com>.
* This file is part of nzbget. See <https://nzbget.com>.
*
* Copyright (C) 2013-2016 Andrey Prygunkov <hugbug@users.sourceforge.net>
*
Expand Down
2 changes: 1 addition & 1 deletion daemon/feed/FeedFilter.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* This file is part of nzbget. See <http://nzbget.com>.
* This file is part of nzbget. See <https://nzbget.com>.
*
* Copyright (C) 2013-2016 Andrey Prygunkov <hugbug@users.sourceforge.net>
*
Expand Down
2 changes: 1 addition & 1 deletion daemon/feed/FeedInfo.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* This file is part of nzbget. See <http://nzbget.com>.
* This file is part of nzbget. See <https://nzbget.com>.
*
* Copyright (C) 2013-2016 Andrey Prygunkov <hugbug@users.sourceforge.net>
*
Expand Down
2 changes: 1 addition & 1 deletion daemon/feed/FeedInfo.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* This file is part of nzbget. See <http://nzbget.com>.
* This file is part of nzbget. See <https://nzbget.com>.
*
* Copyright (C) 2013-2016 Andrey Prygunkov <hugbug@users.sourceforge.net>
*
Expand Down
2 changes: 1 addition & 1 deletion daemon/frontend/ColoredFrontend.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* This file is part of nzbget. See <http://nzbget.com>.
* This file is part of nzbget. See <https://nzbget.com>.
*
* Copyright (C) 2004 Sven Henkel <sidddy@users.sourceforge.net>
* Copyright (C) 2007-2016 Andrey Prygunkov <hugbug@users.sourceforge.net>
Expand Down
2 changes: 1 addition & 1 deletion daemon/frontend/ColoredFrontend.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* This file is part of nzbget. See <http://nzbget.com>.
* This file is part of nzbget. See <https://nzbget.com>.
*
* Copyright (C) 2004 Sven Henkel <sidddy@users.sourceforge.net>
* Copyright (C) 2007-2016 Andrey Prygunkov <hugbug@users.sourceforge.net>
Expand Down
2 changes: 1 addition & 1 deletion daemon/frontend/Frontend.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* This file is part of nzbget. See <http://nzbget.com>.
* This file is part of nzbget. See <https://nzbget.com>.
*
* Copyright (C) 2004 Sven Henkel <sidddy@users.sourceforge.net>
* Copyright (C) 2007-2019 Andrey Prygunkov <hugbug@users.sourceforge.net>
Expand Down
2 changes: 1 addition & 1 deletion daemon/frontend/Frontend.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* This file is part of nzbget. See <http://nzbget.com>.
* This file is part of nzbget. See <https://nzbget.com>.
*
* Copyright (C) 2004 Sven Henkel <sidddy@users.sourceforge.net>
* Copyright (C) 2007-2016 Andrey Prygunkov <hugbug@users.sourceforge.net>
Expand Down
2 changes: 1 addition & 1 deletion daemon/frontend/LoggableFrontend.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* This file is part of nzbget. See <http://nzbget.com>.
* This file is part of nzbget. See <https://nzbget.com>.
*
* Copyright (C) 2004 Sven Henkel <sidddy@users.sourceforge.net>
* Copyright (C) 2007-2016 Andrey Prygunkov <hugbug@users.sourceforge.net>
Expand Down
2 changes: 1 addition & 1 deletion daemon/frontend/LoggableFrontend.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* This file is part of nzbget. See <http://nzbget.com>.
* This file is part of nzbget. See <https://nzbget.com>.
*
* Copyright (C) 2004 Sven Henkel <sidddy@users.sourceforge.net>
* Copyright (C) 2007-2016 Andrey Prygunkov <hugbug@users.sourceforge.net>
Expand Down
Loading