Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/SoftEtherVPN/SoftEtherVPN_Stable.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src/Cedar
diff options
context:
space:
mode:
authordnobori <da.git@softether.co.jp>2018-04-21 05:25:19 +0300
committerdnobori <da.git@softether.co.jp>2018-04-21 05:25:19 +0300
commit6f19de577d36dee9b0adeff4ae4e07cc43e1349a (patch)
treea6ef88ea412fcd92a49c14f864b25ce40376046c /src/Cedar
parentafa436626920fbbe73738e70b97ae6a50dd96dc5 (diff)
v4.27-9665-betav4.27-9665-beta
Diffstat (limited to 'src/Cedar')
-rw-r--r--src/Cedar/CM.c9
-rw-r--r--src/Cedar/Cedar.h10
2 files changed, 14 insertions, 5 deletions
diff --git a/src/Cedar/CM.c b/src/Cedar/CM.c
index cd3d2d69..8a2dc133 100644
--- a/src/Cedar/CM.c
+++ b/src/Cedar/CM.c
@@ -5718,6 +5718,15 @@ void CmMainWindowOnCommandEx(HWND hWnd, WPARAM wParam, LPARAM lParam, bool easy)
// Installation is prohibited
break;
}
+ // Warning message
+ if (MsIsWindows10())
+ {
+ if (MsgBox(hWnd, MB_ICONINFORMATION | MB_OKCANCEL, _UU("CM_VLAN_REINSTALL_MSG")) == IDCANCEL)
+ {
+ // Cancel
+ break;
+ }
+ }
index = LvGetSelected(hWnd, L_VLAN);
if (index != INFINITE)
{
diff --git a/src/Cedar/Cedar.h b/src/Cedar/Cedar.h
index 432324ad..2be48125 100644
--- a/src/Cedar/Cedar.h
+++ b/src/Cedar/Cedar.h
@@ -138,7 +138,7 @@
#define CEDAR_VER 427
// Build Number
-#define CEDAR_BUILD 9664
+#define CEDAR_BUILD 9665
// Beta number
//#define BETA_NUMBER 3
@@ -159,10 +159,10 @@
// Specifies the build date
#define BUILD_DATE_Y 2018
#define BUILD_DATE_M 4
-#define BUILD_DATE_D 20
-#define BUILD_DATE_HO 16
-#define BUILD_DATE_MI 26
-#define BUILD_DATE_SE 40
+#define BUILD_DATE_D 21
+#define BUILD_DATE_HO 0
+#define BUILD_DATE_MI 54
+#define BUILD_DATE_SE 23
// Tolerable time difference
#define ALLOW_TIMESTAMP_DIFF (UINT64)(3 * 24 * 60 * 60 * 1000)