diff --git a/index.html b/index.html
index ecc9b1b92759ced83245aa6f85b8e4b6d7a578af..df6674a5fb099b0b864ef3140b42fb23ba1a9322 100644
--- a/index.html
+++ b/index.html
@@ -56,7 +56,7 @@
             <a class='btn-large waves-effect waves-light' href='/introduction/getting-started.html' id='download-button'>Get Started</a>
           </div>
           <div class='row center'>
-            <a class='red-text text-lighten-4' href='https://github.com/Syncleus/aparapi'>Release v1.2.0</a>
+            <a class='red-text text-lighten-4' href='https://github.com/Syncleus/aparapi'>Release v1.3.0</a>
           </div>
           <br>
         </div>
diff --git a/introduction/getting-started.html b/introduction/getting-started.html
index ca0fea00a25b0063a18d0b01d2c693d0ef6965d1..f95359eeec4ebd5aaecae01026f22d1c6dac8a1a 100644
--- a/introduction/getting-started.html
+++ b/introduction/getting-started.html
@@ -68,7 +68,7 @@
         
         <h2>Support and Documentation</h2>
         
-        <p>Aparapi Javadocs: <a href="http://www.javadoc.io/doc/com.aparapi/aparapi" rel="nofollow">latest</a> - <a href="http://www.javadoc.io/doc/com.aparapi/aparapi/1.2.0" rel="nofollow">1.2.0</a> - <a href="http://www.javadoc.io/doc/com.aparapi/aparapi/1.1.2" rel="nofollow">1.1.2</a> - <a href="http://www.javadoc.io/doc/com.aparapi/aparapi/1.1.1" rel="nofollow">1.1.1</a> - <a href="http://www.javadoc.io/doc/com.aparapi/aparapi/1.1.0" rel="nofollow">1.1.0</a> - <a href="http://www.javadoc.io/doc/com.syncleus.aparapi/aparapi/1.0.0" rel="nofollow">1.0.0</a></p>
+        <p>Aparapi Javadocs: <a href="http://www.javadoc.io/doc/com.aparapi/aparapi" rel="nofollow">latest</a> - <a href="http://www.javadoc.io/doc/com.aparapi/aparapi/1.3.0" rel="nofollow">1.3.0</a> - <a href="http://www.javadoc.io/doc/com.aparapi/aparapi/1.2.0" rel="nofollow">1.2.0</a> - <a href="http://www.javadoc.io/doc/com.aparapi/aparapi/1.1.2" rel="nofollow">1.1.2</a> - <a href="http://www.javadoc.io/doc/com.aparapi/aparapi/1.1.1" rel="nofollow">1.1.1</a> - <a href="http://www.javadoc.io/doc/com.aparapi/aparapi/1.1.0" rel="nofollow">1.1.0</a> - <a href="http://www.javadoc.io/doc/com.syncleus.aparapi/aparapi/1.0.0" rel="nofollow">1.0.0</a></p>
         
         <p>For detailed documentation see <a href="http://Aparapi.com" rel="nofollow">Aparapi.com</a> or check out the <a href="http://www.javadoc.io/doc/com.aparapi/aparapi" rel="nofollow">latest Javadocs</a>.</p>
         
@@ -82,14 +82,17 @@
         
         <ul>
         <li><a href="https://github.com/Syncleus/aparapi-examples" rel="nofollow">Aparapi Examples</a> - A collection of Java examples to showcase the Aparapi library and help developers get started.</li>
-        <li><a href="https://github.com/Syncleus/aparapi-jni" rel="nofollow">Aparapi JNI</a> - Represents the native library component. Without this the Java library can&rsquo;t talk to the graphics card.</li>
+        <li><a href="https://github.com/Syncleus/aparapi-jni" rel="nofollow">Aparapi JNI</a> - A java JAR which embeds and loads the native components at runtime. This prevents the need to seperately install the Aparapi Native library.</li>
+        <li><a href="https://github.com/Syncleus/aparapi-native" rel="nofollow">Aparapi Native</a> - The native library component. Without this the Java library can&rsquo;t talk to the graphics card. This is not a java project but rather a C/C++ project.</li>
         <li><a href="https://github.com/Syncleus/aparapi-archlinux" rel="nofollow">Aparapi Archlinux AUR</a> - An Archlinux AUR for installing the Aparapi JNI.</li>
         <li><a href="https://github.com/Syncleus/aparapi-archlinux-repo" rel="nofollow">Aparapi Archlinux Repository</a> - A Archlinux binary repository containing all versions of the Aparapi JNI for easy installation.</li>
         </ul>
         
         <h2>Prerequisites</h2>
         
-        <p>Aparapi will run as-is on the CPU, however in order to access the GPU it requires an Aparapi JNI native library to be installed first. To do that see the <a href="https://github.com/Syncleus/aparapi-jni" rel="nofollow">Aparapi JNI</a> project for more details. </p>
+        <p>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. </p>
+        
+        <p><strong>Note: It is no longer required to manually install the <a href="https://github.com/Syncleus/aparapi-native" rel="nofollow">Aparapi JNI native interface</a>, this is now done automatically through maven as a dependency on Aparapi.</strong></p>
         
         <h2>Java Dependency</h2>
         
@@ -98,7 +101,7 @@
         <span class="nt">&lt;dependency&gt;</span>
             <span class="nt">&lt;groupId&gt;</span>com.aparapi<span class="nt">&lt;/groupId&gt;</span>
             <span class="nt">&lt;artifactId&gt;</span>aparapi<span class="nt">&lt;/artifactId&gt;</span>
-            <span class="nt">&lt;version&gt;</span>1.2.0<span class="nt">&lt;/version&gt;</span>
+            <span class="nt">&lt;version&gt;</span>1.3.0<span class="nt">&lt;/version&gt;</span>
         <span class="nt">&lt;/dependency&gt;</span>
         </code></pre>
         <h2>Obtaining the Source</h2>