From f679a95841653f96c8143eaf18011395f58fecaf Mon Sep 17 00:00:00 2001 From: floriansegginger Date: Wed, 7 Oct 2015 15:42:18 +0200 Subject: [PATCH 1/3] Added a bit of info to the README --- README.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/README.md b/README.md index 88566fe..d56a757 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,13 @@ # Woopsa The Woopsa libraries for creating servers and clients + +## I just want the freaking library! +The latest release is part of the git repository, in the well-named **Release** directory. It contains the .NET and JavaScript versions of the Woopsa library, as well as a few examples to get started! + +## Getting started +All the information you need is available on www.woopsa.org + +## Building / Making a release +If you want to make a release for Woopsa, it's simple! + * **Windows**: simply run the make-release-windows.bat file + * **Linux/MacOS**: a release script is coming soon! From f73693b4afd9f30e43d94cac604c79b424737466 Mon Sep 17 00:00:00 2001 From: floriansegginger Date: Wed, 7 Oct 2015 15:42:54 +0200 Subject: [PATCH 2/3] Corrected getting started link --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d56a757..b7e0485 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ The Woopsa libraries for creating servers and clients The latest release is part of the git repository, in the well-named **Release** directory. It contains the .NET and JavaScript versions of the Woopsa library, as well as a few examples to get started! ## Getting started -All the information you need is available on www.woopsa.org +All the information you need is available on www.woopsa.org/get-started ## Building / Making a release If you want to make a release for Woopsa, it's simple! From 1993d542f48543b5935f321c25e8c7ca243964a9 Mon Sep 17 00:00:00 2001 From: floriansegginger Date: Wed, 7 Oct 2015 16:04:26 +0200 Subject: [PATCH 3/3] Improved explanation for Windows build --- README.md | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index b7e0485..299f8fd 100644 --- a/README.md +++ b/README.md @@ -8,6 +8,16 @@ The latest release is part of the git repository, in the well-named **Release** All the information you need is available on www.woopsa.org/get-started ## Building / Making a release -If you want to make a release for Woopsa, it's simple! - * **Windows**: simply run the make-release-windows.bat file - * **Linux/MacOS**: a release script is coming soon! +### Windows +Run the make-release-windows.bat file. This will + * Build the .NET library + * Build the WoopsaDemo server + * Minify/uglify the JavaScript library + * Copy all those things in the ``Release`` directory + +System requirements: + * Visual Studio Professional 2013 or newer (requires devenv to be in your ``PATH`` variable) + * Uglifyjs (requires nodejs) + +### Linux/MacOS +A build/release script is coming soon!