diff --git a/README.md b/README.md
index 8b6f1012dd22d361940fb14dca77169a0acaccef..bba917a42cd026261000259247e01bbc29921cdd 100644
--- a/README.md
+++ b/README.md
@@ -1,3 +1,4 @@
+NT5+: [![Build Status](https://nt-build-bot.rvx86.net:7421/job/netrunner-winnt-i686/badge/icon)](https://nt-build-bot.rvx86.net:7421/job/netrunner-winnt-i686/)
 # Netrunner
 
 is an implementation of a new web browser engine written in C++ utilizing OpenGL.
@@ -49,8 +50,9 @@ GyroNinja.net is back online
 [2017-08-19 binary package](https://my.mixtape.moe/mjvzts.zip)
 
 ### Windows
-[2017-08-19 binary package](https://my.mixtape.moe/qnrbqa.zip)
+[2017-08-20 binary package](https://rvx86.net/files/netrunner_ssl.zip)
 [Jenkins](https://nt-build-bot.rvx86.net:7421/job/netrunner-winnt-i686/)
+[nightly binary pkg](https://nt-build-bot.rvx86.net:7421/job/netrunner-winnt-i686/lastSuccessfulBuild/artifact/*zip*/archive.zip)
 
 ## Milestones
 - Browse 4chan /g/ board
@@ -106,6 +108,10 @@ I don't think one on here could ever say they know what their doing without bein
   - did an early links repo
   - contributed README clean up
 
+- despair
+  - TLS 1.2 support
+  - (in-progress) TUI text output
+
 - anons that are making the /g/ threads
   - Your threads keep us motivated
   - Drop by irc/discord and say hi to us
diff --git a/deps/lib/glew32.dll b/deps/lib/glew32.dll
deleted file mode 100644
index 62e14621a5d6bd62a75fdef4a8f12a9e44b9dff5..0000000000000000000000000000000000000000
Binary files a/deps/lib/glew32.dll and /dev/null differ
diff --git a/deps/lib/libbz2.a b/deps/lib/libbz2.a
deleted file mode 100644
index 46720c1231e954a33fcff22305e734c1cc5d4e33..0000000000000000000000000000000000000000
Binary files a/deps/lib/libbz2.a and /dev/null differ
diff --git a/deps/lib/libfreetype.a b/deps/lib/libfreetype.a
deleted file mode 100644
index a4cd9bd5d2975875cd0d69527a619ebe33c39aca..0000000000000000000000000000000000000000
Binary files a/deps/lib/libfreetype.a and /dev/null differ
diff --git a/deps/lib/libglfw.a b/deps/lib/libglfw.a
deleted file mode 100644
index 1963925eb1afd00dc774963f84a0b6bd4f3df71b..0000000000000000000000000000000000000000
Binary files a/deps/lib/libglfw.a and /dev/null differ
diff --git a/deps/lib/libharfbuzz.a b/deps/lib/libharfbuzz.a
deleted file mode 100644
index 08d78b5160cb847d8e4ec585045d8df3bd07980b..0000000000000000000000000000000000000000
Binary files a/deps/lib/libharfbuzz.a and /dev/null differ
diff --git a/deps/lib/libpng.a b/deps/lib/libpng.a
deleted file mode 100644
index 683afae7acc005767ea41f33de28d4bc33556b55..0000000000000000000000000000000000000000
Binary files a/deps/lib/libpng.a and /dev/null differ
diff --git a/deps/lib/libpolarssl.a b/deps/lib/libpolarssl.a
deleted file mode 100644
index 882d15f6ee9fec5590f65b575ba83e0dd495f2aa..0000000000000000000000000000000000000000
Binary files a/deps/lib/libpolarssl.a and /dev/null differ
diff --git a/deps/lib/libz.a b/deps/lib/libz.a
deleted file mode 100644
index a3684f31e2403aa084516a6ae3607a66ff3fbec1..0000000000000000000000000000000000000000
Binary files a/deps/lib/libz.a and /dev/null differ
diff --git a/netrunner.zip b/netrunner.zip
deleted file mode 100644
index 6df15da7aa1ac30f0501cfa0cf0385e366710d12..0000000000000000000000000000000000000000
Binary files a/netrunner.zip and /dev/null differ
diff --git a/netrunner_ssl.zip b/netrunner_ssl.zip
deleted file mode 100644
index 291530d141eb9dd84a1157e0fa94717496e4947d..0000000000000000000000000000000000000000
Binary files a/netrunner_ssl.zip and /dev/null differ
diff --git a/src/networking/HTTPSRequest.cpp b/src/networking/HTTPSRequest.cpp
index fe7d84f79bc7127b89b591b13ebc881e4a2466c9..472dcf7eb5d833bf3de7327f5485cc8e00e34917 100644
--- a/src/networking/HTTPSRequest.cpp
+++ b/src/networking/HTTPSRequest.cpp
@@ -135,7 +135,7 @@ bool HTTPSRequest::initTLS()
 	mbedtls_x509_crt_init( &cacert );
 	mbedtls_ctr_drbg_init( &ctr_drbg );
 
-	const char *seed = "netrunner_ssl_seed$%?rvx86_despair^^%$#@";
+	const char *seed = "!@netrunner_ssl_seed$%?rvx86_despair##^^%$#@";
 	mbedtls_entropy_init( &entropy );
 	if(mbedtls_ctr_drbg_seed( &ctr_drbg, mbedtls_entropy_func, &entropy, reinterpret_cast<const unsigned char*>(seed), strlen(seed) ) != 0 )
 	{
diff --git a/src/networking/HTTPSRequest.h b/src/networking/HTTPSRequest.h
index 0e5b8937a1ba7561e56f24639d4202214922bff7..51a944ad09bbd7d28788b6f1aeae641dad9a510c 100644
--- a/src/networking/HTTPSRequest.h
+++ b/src/networking/HTTPSRequest.h
@@ -6,6 +6,10 @@
 #include "../URL.h"
 #include <functional>
 #include <string>
+#ifdef NULL
+#undef NULL
+#define NULL nullptr
+#endif
 // PolarSSL
 #include <mbedtls/net.h>
 #include <mbedtls/ssl.h>