From 4df680d331e05b8f4c6a9d0f6eacc5ed6144cbb3 Mon Sep 17 00:00:00 2001
From: Jeffrey Phillips Freeman <jeffrey.freeman@syncleus.com>
Date: Fri, 30 Dec 2016 11:57:47 -0500
Subject: [PATCH] Updating website for version 1.3.4 release.

---
 source/index.html.haml                      | 2 +-
 source/introduction/getting-started.html.md | 9 +++++----
 2 files changed, 6 insertions(+), 5 deletions(-)

diff --git a/source/index.html.haml b/source/index.html.haml
index 0f5b4c5..0bc5a10 100644
--- a/source/index.html.haml
+++ b/source/index.html.haml
@@ -7,7 +7,7 @@ description: Open-source framework for executing native Java code on the GPU.
   .row.center
     %a#download-button.btn-large.waves-effect.waves-light{:href => "/introduction/getting-started.html"} Get Started
   .row.center
-    %a.red-text.text-lighten-4{:href => "https://github.com/Syncleus/aparapi"} Release v1.3.3
+    %a.red-text.text-lighten-4{:href => "https://github.com/Syncleus/aparapi"} Release v1.3.4
   %br/
 
 - content_for :banner do
diff --git a/source/introduction/getting-started.html.md b/source/introduction/getting-started.html.md
index 3f0dc40..1908504 100644
--- a/source/introduction/getting-started.html.md
+++ b/source/introduction/getting-started.html.md
@@ -2,6 +2,7 @@
 title: Getting Started
 description: A framework for executing native Java code on the GPU.
 ---
+
 **Licensed under the Apache Software License v2**
 
 Aparapi allows developers to write native Java code capable of being executed directly on a graphics card GPU by converting Java byte code to an OpenCL kernel dynamically at runtime. Because it is backed by OpenCL Aparapi is compatible with all OpenCL compatible Graphics Cards.
@@ -16,7 +17,7 @@ Below you will find two side-by-side comparisons for the nbody problem on a CPU
 
 ## Support and Documentation
 
-Aparapi Javadocs: [latest](http://www.javadoc.io/doc/com.aparapi/aparapi) - [1.3.3](http://www.javadoc.io/doc/com.aparapi/aparapi/1.3.3) - [1.3.2](http://www.javadoc.io/doc/com.aparapi/aparapi/1.3.2) - [1.3.1](http://www.javadoc.io/doc/com.aparapi/aparapi/1.3.1) - [1.3.0](http://www.javadoc.io/doc/com.aparapi/aparapi/1.3.0) - [1.2.0](http://www.javadoc.io/doc/com.aparapi/aparapi/1.2.0) - [1.1.2](http://www.javadoc.io/doc/com.aparapi/aparapi/1.1.2) - [1.1.1](http://www.javadoc.io/doc/com.aparapi/aparapi/1.1.1) - [1.1.0](http://www.javadoc.io/doc/com.aparapi/aparapi/1.1.0) - [1.0.0](http://www.javadoc.io/doc/com.syncleus.aparapi/aparapi/1.0.0)
+Aparapi Javadocs: [latest](http://www.javadoc.io/doc/com.aparapi/aparapi) - [1.3.4](http://www.javadoc.io/doc/com.aparapi/aparapi/1.3.4) - [1.3.3](http://www.javadoc.io/doc/com.aparapi/aparapi/1.3.3) - [1.3.2](http://www.javadoc.io/doc/com.aparapi/aparapi/1.3.2) - [1.3.1](http://www.javadoc.io/doc/com.aparapi/aparapi/1.3.1) - [1.3.0](http://www.javadoc.io/doc/com.aparapi/aparapi/1.3.0) - [1.2.0](http://www.javadoc.io/doc/com.aparapi/aparapi/1.2.0) - [1.1.2](http://www.javadoc.io/doc/com.aparapi/aparapi/1.1.2) - [1.1.1](http://www.javadoc.io/doc/com.aparapi/aparapi/1.1.1) - [1.1.0](http://www.javadoc.io/doc/com.aparapi/aparapi/1.1.0) - [1.0.0](http://www.javadoc.io/doc/com.syncleus.aparapi/aparapi/1.0.0)
 
 For detailed documentation see [Aparapi.com](http://Aparapi.com) or check out the [latest Javadocs](http://www.javadoc.io/doc/com.aparapi/aparapi).
 
@@ -40,7 +41,7 @@ This particular repository only represents the core Java library. There are seve
 
 Aparapi will run as-is on the CPU, however in order to access the GPU it requires OpenCL to be installed on the local system. If OpenCL isnt found then the library will just fallback to CPU mode. Aparapi supports, and has been tested on, both OpenCL 1.2 and OpenCL 2.0.
 
-**Aparapi runs on all operating systems and platforms, however GPU acceleration support is currently provided for the following platforms: Windows 64bit, Mac OSX 64bit, Linux 64bit, and Linux 32bit.**
+**Aparapi runs on all operating systems and platforms, however GPU acceleration support is currently provided for the following platforms: Windows 64bit, Windows 32bit, Mac OSX 64bit, Linux 64bit, and Linux 32bit.**
 
 Note: It is no longer required to manually install the [Aparapi JNI native interface](https://github.com/Syncleus/aparapi-native), this is now done automatically through maven as a dependency on Aparapi.
 
@@ -53,7 +54,7 @@ To include Aparapi in your project of choice include the following Maven depende
 <dependency>
     <groupId>com.aparapi</groupId>
     <artifactId>aparapi</artifactId>
-    <version>1.3.3</version>
+    <version>1.3.4</version>
 </dependency>
 ```
 
@@ -97,4 +98,4 @@ Kernel kernel = new Kernel() {
 
 Range range = Range.create(result.length);
 kernel.execute(range);
-```
\ No newline at end of file
+`````
\ No newline at end of file
-- 
GitLab