From f9e41826247d066c47567975076a138a688d212a Mon Sep 17 00:00:00 2001 From: orignal Date: Wed, 18 May 2016 09:22:11 -0400 Subject: [PATCH 1/2] temporary disable 'reload config' item --- HTTPServer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/HTTPServer.cpp b/HTTPServer.cpp index 19ccecb5..81515105 100644 --- a/HTTPServer.cpp +++ b/HTTPServer.cpp @@ -510,7 +510,7 @@ namespace http { /* commands */ s << "Router Commands
\r\n"; s << " Run peer test
\r\n"; - s << " Reload config
\r\n"; + //s << " Reload config
\r\n"; if (i2p::context.AcceptsTunnels ()) s << " Stop accepting tunnels
\r\n"; else From 90ea714e486f857d8b667f7f14bfc1ec08a1a7b6 Mon Sep 17 00:00:00 2001 From: orignal Date: Wed, 18 May 2016 09:22:48 -0400 Subject: [PATCH 2/2] version 2.7.0 --- version.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/version.h b/version.h index c5177d30..bee17044 100644 --- a/version.h +++ b/version.h @@ -1,13 +1,13 @@ #ifndef _VERSION_H_ #define _VERSION_H_ -#define CODENAME "Bora Bora" +#define CODENAME "Purple" #define STRINGIZE(x) #x #define MAKE_VERSION(a,b,c) STRINGIZE(a) "." STRINGIZE(b) "." STRINGIZE(c) #define I2PD_VERSION_MAJOR 2 -#define I2PD_VERSION_MINOR 6 +#define I2PD_VERSION_MINOR 7 #define I2PD_VERSION_MICRO 0 #define I2PD_VERSION_PATCH 0 #define I2PD_VERSION MAKE_VERSION(I2PD_VERSION_MAJOR, I2PD_VERSION_MINOR, I2PD_VERSION_MICRO)