From 64240d3394fc11354392b8cb15e8759a3f05155e Mon Sep 17 00:00:00 2001 From: Thijs Wenker Date: Wed, 1 Mar 2017 21:31:43 +0100 Subject: [PATCH 1/4] use https in readme/build documentation rather than http --- BUILD.md | 4 ++-- BUILD_OSX.md | 6 +++--- BUILD_WIN.md | 6 +++--- README.md | 4 ++-- 4 files changed, 10 insertions(+), 10 deletions(-) diff --git a/BUILD.md b/BUILD.md index 9c56574cbb..d7fdadf8c7 100644 --- a/BUILD.md +++ b/BUILD.md @@ -12,13 +12,13 @@ * [Bullet Physics Engine](https://code.google.com/p/bullet/downloads/list) ~> 2.82 * [Faceshift](http://www.faceshift.com/) ~> 4.3 * [GLEW](http://glew.sourceforge.net/) -* [glm](http://glm.g-truc.net/0.9.5/index.html) ~> 0.9.5.4 +* [glm](https://glm.g-truc.net/0.9.5/index.html) ~> 0.9.5.4 * [gverb](https://github.com/highfidelity/gverb) * [Oculus SDK](https://developer.oculus.com/downloads/) ~> 0.6 (Win32) / 0.5 (Mac / Linux) * [oglplus](http://oglplus.org/) ~> 0.63 * [OpenVR](https://github.com/ValveSoftware/openvr) ~> 0.91 (Win32 only) * [Polyvox](http://www.volumesoffun.com/) ~> 0.2.1 -* [QuaZip](http://sourceforge.net/projects/quazip/files/quazip/) ~> 0.7.1 +* [QuaZip](https://sourceforge.net/projects/quazip/files/quazip/) ~> 0.7.1 * [SDL2](https://www.libsdl.org/download-2.0.php) ~> 2.0.3 * [soxr](http://soxr.sourceforge.net) ~> 0.1.1 * [Intel Threading Building Blocks](https://www.threadingbuildingblocks.org/) ~> 4.3 diff --git a/BUILD_OSX.md b/BUILD_OSX.md index 55d4276aa0..980263cbbc 100644 --- a/BUILD_OSX.md +++ b/BUILD_OSX.md @@ -1,7 +1,7 @@ Please read the [general build guide](BUILD.md) for information on dependencies required for all platforms. Only OS X specific instructions are found in this file. ###Homebrew -[Homebrew](http://brew.sh/) is an excellent package manager for OS X. It makes install of some High Fidelity dependencies very simple. +[Homebrew](https://brew.sh/) is an excellent package manager for OS X. It makes install of some High Fidelity dependencies very simple. brew tap homebrew/versions brew install cmake openssl @@ -18,11 +18,11 @@ Note that this uses the version from the homebrew formula at the time of this wr ###Qt You can use the online installer or the offline installer. -* [Download the online installer](http://www.qt.io/download-open-source/#section-2) +* [Download the online installer](https://www.qt.io/download-open-source/#section-2) * When it asks you to select components, select the following: * Qt > Qt 5.6 -* [Download the offline installer](http://download.qt.io/official_releases/qt/5.6/5.6.1-1/qt-opensource-mac-x64-clang-5.6.1-1.dmg) +* [Download the offline installer](https://download.qt.io/official_releases/qt/5.6/5.6.1-1/qt-opensource-mac-x64-clang-5.6.1-1.dmg) Once Qt is installed, you need to manually configure the following: * Set the QT_CMAKE_PREFIX_PATH environment variable to your `Qt5.6.1/5.6/clang_64/lib/cmake/` directory. diff --git a/BUILD_WIN.md b/BUILD_WIN.md index b8adaad8d1..45373d3093 100644 --- a/BUILD_WIN.md +++ b/BUILD_WIN.md @@ -33,8 +33,8 @@ You can use the online installer or the offline installer. If you use the offlin * Qt > Qt 5.6.1 > **msvc2013 64-bit** * Download the offline installer, 32- or 64-bit to match your build preference: - * [32-bit](http://download.qt.io/official_releases/qt/5.6/5.6.1-1/qt-opensource-windows-x86-msvc2013-5.6.1-1.exe) - * [64-bit](http://download.qt.io/official_releases/qt/5.6/5.6.1-1/qt-opensource-windows-x86-msvc2013_64-5.6.1-1.exe) + * [32-bit](https://download.qt.io/official_releases/qt/5.6/5.6.1-1/qt-opensource-windows-x86-msvc2013-5.6.1-1.exe) + * [64-bit](https://download.qt.io/official_releases/qt/5.6/5.6.1-1/qt-opensource-windows-x86-msvc2013_64-5.6.1-1.exe) Once Qt is installed, you need to manually configure the following: * Set the QT_CMAKE_PREFIX_PATH environment variable to your `Qt\5.6.1\msvc2013\lib\cmake` or `Qt\5.6.1\msvc2013_64\lib\cmake` directory. @@ -72,7 +72,7 @@ Your system may already have several versions of the OpenSSL DLL's (ssleay32.dll QSslSocket: cannot resolve SSL_CTX_set_next_proto_select_cb QSslSocket: cannot resolve SSL_get0_next_proto_negotiated -To prevent these problems, install OpenSSL yourself. Download one of the following binary packages [from this website](http://slproweb.com/products/Win32OpenSSL.html): +To prevent these problems, install OpenSSL yourself. Download one of the following binary packages [from this website](https://slproweb.com/products/Win32OpenSSL.html): * Win32 OpenSSL v1.0.1q * Win64 OpenSSL v1.0.1q diff --git a/README.md b/README.md index 44bfb94634..00e7cbc45b 100644 --- a/README.md +++ b/README.md @@ -11,11 +11,11 @@ We're hiring! We're looking for skilled developers; send your resume to hiring@highfidelity.com ##### Chat with us -Come chat with us in [our Gitter](http://gitter.im/highfidelity/hifi) if you have any questions or just want to say hi! +Come chat with us in [our Gitter](https://gitter.im/highfidelity/hifi) if you have any questions or just want to say hi! Documentation ========= -Documentation is available at [docs.highfidelity.com](http://docs.highfidelity.com), if something is missing, please suggest it via a new job on Worklist (add to the hifi-docs project). +Documentation is available at [docs.highfidelity.com](https://docs.highfidelity.com), if something is missing, please suggest it via a new job on Worklist (add to the hifi-docs project). Build Instructions ========= From 1d3be1607d7160c4add337a0a7f20f053f02c259 Mon Sep 17 00:00:00 2001 From: Thijs Wenker Date: Wed, 1 Mar 2017 21:35:35 +0100 Subject: [PATCH 2/4] removed broken Faceshift domain from Build manual --- BUILD.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/BUILD.md b/BUILD.md index d7fdadf8c7..5abd8e246e 100644 --- a/BUILD.md +++ b/BUILD.md @@ -10,7 +10,6 @@ * [boostconfig](https://github.com/boostorg/config) ~> 1.58 * [Bullet Physics Engine](https://code.google.com/p/bullet/downloads/list) ~> 2.82 -* [Faceshift](http://www.faceshift.com/) ~> 4.3 * [GLEW](http://glew.sourceforge.net/) * [glm](https://glm.g-truc.net/0.9.5/index.html) ~> 0.9.5.4 * [gverb](https://github.com/highfidelity/gverb) @@ -20,7 +19,7 @@ * [Polyvox](http://www.volumesoffun.com/) ~> 0.2.1 * [QuaZip](https://sourceforge.net/projects/quazip/files/quazip/) ~> 0.7.1 * [SDL2](https://www.libsdl.org/download-2.0.php) ~> 2.0.3 -* [soxr](http://soxr.sourceforge.net) ~> 0.1.1 +* [soxr](https://sourceforge.net/p/soxr/wiki/Home/) ~> 0.1.1 * [Intel Threading Building Blocks](https://www.threadingbuildingblocks.org/) ~> 4.3 * [Sixense](http://sixense.com/) ~> 071615 * [zlib](http://www.zlib.net/) ~> 1.28 (Win32 only) From c8911d14e622931c27fea6093b4e6269458781ae Mon Sep 17 00:00:00 2001 From: Thijs Wenker Date: Wed, 1 Mar 2017 22:04:51 +0100 Subject: [PATCH 3/4] http->https --- BUILD.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/BUILD.md b/BUILD.md index 5abd8e246e..644a6690db 100644 --- a/BUILD.md +++ b/BUILD.md @@ -1,7 +1,7 @@ ###Dependencies -* [cmake](http://www.cmake.org/cmake/resources/software.html) ~> 3.3.2 -* [Qt](http://www.qt.io/download-open-source) ~> 5.6.1 +* [cmake](https://cmake.org/download/) ~> 3.3.2 +* [Qt](https://www.qt.io/download-open-source) ~> 5.6.1 * [OpenSSL](https://www.openssl.org/community/binaries.html) * IMPORTANT: Use the latest available version of OpenSSL to avoid security vulnerabilities. * [VHACD](https://github.com/virneo/v-hacd)(clone this repository)(Optional) From f42f8cf6025c646447974203a3745ae541a9ceea Mon Sep 17 00:00:00 2001 From: Thijs Wenker Date: Thu, 2 Mar 2017 02:39:34 +0100 Subject: [PATCH 4/4] bullet moved --- BUILD.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BUILD.md b/BUILD.md index 644a6690db..547b79cb08 100644 --- a/BUILD.md +++ b/BUILD.md @@ -9,7 +9,7 @@ ####CMake External Project Dependencies * [boostconfig](https://github.com/boostorg/config) ~> 1.58 -* [Bullet Physics Engine](https://code.google.com/p/bullet/downloads/list) ~> 2.82 +* [Bullet Physics Engine](https://github.com/bulletphysics/bullet3/releases) ~> 2.83 * [GLEW](http://glew.sourceforge.net/) * [glm](https://glm.g-truc.net/0.9.5/index.html) ~> 0.9.5.4 * [gverb](https://github.com/highfidelity/gverb)