Skip to content

Commit b9ccb20

Browse files
committed
v2.7.14
1 parent a64c277 commit b9ccb20

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

client/common/changelog.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
2.7.14 (17/10/2023)
2+
All:
3+
* Fixed OpenVPN not using custom DNS. #762
4+
5+
16
2.7.12 (25/09/2023)
27
All:
38
* Promoted app to beta channel.

client/common/version/windscribe_version.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22

33
#define WINDSCRIBE_MAJOR_VERSION 2
44
#define WINDSCRIBE_MINOR_VERSION 7
5-
#define WINDSCRIBE_BUILD_VERSION 12
5+
#define WINDSCRIBE_BUILD_VERSION 14
66

77
// only one of these should be enabled; neither -> stable
8-
#define WINDSCRIBE_IS_BETA
8+
//#define WINDSCRIBE_IS_BETA
99
//#define WINDSCRIBE_IS_GUINEA_PIG
1010

1111
#define STR_HELPER(x) #x

client/engine/engine/connectionmanager/connectionmanager.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -976,7 +976,7 @@ void ConnectionManager::doConnectPart2()
976976
const bool bOvpnSuccess = makeOVPNFile_->generate(
977977
lastOvpnConfig_, currentConnectionDescr_.ip, currentConnectionDescr_.protocol,
978978
currentConnectionDescr_.port, localPort, mss, defaultAdapterInfo_.gateway(),
979-
currentConnectionDescr_.verifyX509name, "");
979+
currentConnectionDescr_.verifyX509name, connectedDnsInfo_.type == CONNECTED_DNS_TYPE_ROBERT ? "" : ctrldManager_->listenIp());
980980
if (!bOvpnSuccess) {
981981
qCDebug(LOG_CONNECTION) << "Failed create ovpn config";
982982
WS_ASSERT(false);

0 commit comments

Comments
 (0)