VeraCrypt
aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMounir IDRASSI <mounir.idrassi@idrix.fr>2014-06-18 23:17:53 +0200
committerMounir IDRASSI <mounir.idrassi@idrix.fr>2014-11-08 23:20:08 +0100
commita81790329fb2007c86f9c402a12a47c70d1eb835 (patch)
tree0f74998e15ffb070036625d91dbbb19eea90a860 /src
parent4b6594325fdd48ff8fb7793bb54c361e47199650 (diff)
downloadVeraCrypt-a81790329fb2007c86f9c402a12a47c70d1eb835.tar.gz
VeraCrypt-a81790329fb2007c86f9c402a12a47c70d1eb835.zip
Point to the SourceForge website instead of idrix.fr for the application link. Remove OS parameter is URL constructed under Linux/MacOSX
Diffstat (limited to 'src')
-rw-r--r--src/Common/Tcdefs.h4
-rw-r--r--src/Main/GraphicUserInterface.cpp4
2 files changed, 4 insertions, 4 deletions
diff --git a/src/Common/Tcdefs.h b/src/Common/Tcdefs.h
index 0e8fe470..0bf41d79 100644
--- a/src/Common/Tcdefs.h
+++ b/src/Common/Tcdefs.h
@@ -251,10 +251,10 @@ void EraseMemory (void *memory, int size);
#define MAX_URL_LENGTH 2084 /* Internet Explorer limit. Includes the terminating null character. */
#define TC_HOMEPAGE "http://www.idrix.fr/"
-#define TC_APPLINK "http://www.idrix.fr/"
-#define TC_APPLINK_SECURE "https://www.idrix.fr/"
+#define TC_APPLINK "http://sourceforge.net/projects/veracrypt/"
+#define TC_APPLINK_SECURE "https://sourceforge.net/projects/veracrypt/"
enum
{
/* WARNING: ADD ANY NEW CODES AT THE END (DO NOT INSERT THEM BETWEEN EXISTING). DO *NOT* DELETE ANY
diff --git a/src/Main/GraphicUserInterface.cpp b/src/Main/GraphicUserInterface.cpp
index 64e9e4be..dce1a203 100644
--- a/src/Main/GraphicUserInterface.cpp
+++ b/src/Main/GraphicUserInterface.cpp
@@ -1011,9 +1011,9 @@ namespace TrueCrypt
}
wxString GraphicUserInterface::GetHomepageLinkURL (const wxString &linkId, bool secure, const wxString &extraVars) const
{
- wxString url = wxString (StringConverter::ToWide (secure ? TC_APPLINK_SECURE : TC_APPLINK)) + L"&dest=" + linkId;
+ wxString url = wxString (StringConverter::ToWide (secure ? TC_APPLINK_SECURE : TC_APPLINK)); /* + L"&dest=" + linkId;
wxString os, osVersion, architecture;
#ifdef TC_WINDOWS
@@ -1052,9 +1052,9 @@ namespace TrueCrypt
{
url += L"&";
url += extraVars;
}
-
+ */
return url;
}
void GraphicUserInterface::OpenHomepageLink (wxWindow *parent, const wxString &linkId, const wxString &extraVars)