Skip to content

Commit

Permalink
v2.7.14
Browse files Browse the repository at this point in the history
  • Loading branch information
bernerdad committed Nov 20, 2023
1 parent a64c277 commit b9ccb20
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions client/common/changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
2.7.14 (17/10/2023)
All:
* Fixed OpenVPN not using custom DNS. #762


2.7.12 (25/09/2023)
All:
* Promoted app to beta channel.
Expand Down
4 changes: 2 additions & 2 deletions client/common/version/windscribe_version.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@

#define WINDSCRIBE_MAJOR_VERSION 2
#define WINDSCRIBE_MINOR_VERSION 7
#define WINDSCRIBE_BUILD_VERSION 12
#define WINDSCRIBE_BUILD_VERSION 14

// only one of these should be enabled; neither -> stable
#define WINDSCRIBE_IS_BETA
//#define WINDSCRIBE_IS_BETA
//#define WINDSCRIBE_IS_GUINEA_PIG

#define STR_HELPER(x) #x
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -976,7 +976,7 @@ void ConnectionManager::doConnectPart2()
const bool bOvpnSuccess = makeOVPNFile_->generate(
lastOvpnConfig_, currentConnectionDescr_.ip, currentConnectionDescr_.protocol,
currentConnectionDescr_.port, localPort, mss, defaultAdapterInfo_.gateway(),
currentConnectionDescr_.verifyX509name, "");
currentConnectionDescr_.verifyX509name, connectedDnsInfo_.type == CONNECTED_DNS_TYPE_ROBERT ? "" : ctrldManager_->listenIp());
if (!bOvpnSuccess) {
qCDebug(LOG_CONNECTION) << "Failed create ovpn config";
WS_ASSERT(false);
Expand Down

0 comments on commit b9ccb20

Please sign in to comment.