aboutsummaryrefslogtreecommitdiff
path: root/downloads
diff options
context:
space:
mode:
authorJakob Odersky <jakob@odersky.com>2016-06-07 16:42:13 -0700
committerJakob Odersky <jakob@odersky.com>2016-06-07 16:42:13 -0700
commit3de8d502558b1b07ecef32d9633a67fab79278cf (patch)
treefc3a84cac0eb520163de346febf4ecabf2362ec8 /downloads
parent9da9c162fbe40f50b6f512c093619bf57c7b4c9b (diff)
downloadakka-serial-3de8d502558b1b07ecef32d9633a67fab79278cf.tar.gz
akka-serial-3de8d502558b1b07ecef32d9633a67fab79278cf.tar.bz2
akka-serial-3de8d502558b1b07ecef32d9633a67fab79278cf.zip
Restructure pages
Diffstat (limited to 'downloads')
-rw-r--r--downloads/index.md68
1 files changed, 68 insertions, 0 deletions
diff --git a/downloads/index.md b/downloads/index.md
new file mode 100644
index 0000000..59705eb
--- /dev/null
+++ b/downloads/index.md
@@ -0,0 +1,68 @@
+---
+layout: page
+title: Downloads
+---
+
+## Latest Version <small>{{site.version_latest}}</small>
+
+{::options parse_block_html="true" /}
+<div class="row">
+
+<div class="col-sm-8">
+### Sbt Coordinates :
+Add the following to your build configuration:
+
+~~~scala
+//add resolver to Bintray's jcenter
+resolvers += Resolver.jcenterRepo
+
+//main artifact
+libraryDependencies += "com.github.jodersky" %% "flow-core" % "{{site.version_latest}}"
+
+//(optional) "fat" jar containing native libraries
+libraryDependencies += "com.github.jodersky" % "flow-native" % "{{site.version_latest}}" % "runtime"
+
+//(optional & experimental) support for Akka streams
+libraryDependencies += "com.github.jodersky" %% "flow-stream" % "{{site.version_latest}}"
+~~~
+
+### Archives
+
+- Native Libraries
+[.tar.gz](https://bintray.com/artifact/download/jodersky/generic/flow-native-libraries-{{site.data.current.native_version.major}}.{{site.data.current.native_version.minor}}.{{site.data.current.native_version.patch}}.tar.gz)
+[.asc (signature)](https://bintray.com/artifact/download/jodersky/generic/flow-native-libraries-{{site.data.current.native_version.major}}.{{site.data.current.native_version.minor}}.{{site.data.current.native_version.patch}}.tar.gz.asc)
+
+</div>
+
+<div class="col-sm-4">
+### Supported Platforms*
+
+<table class="table">
+ <thead>
+ <tr>
+ <th>Kernel</th><th>Architecture</th>
+ </tr>
+ </thead>
+ <tbody>
+ <tr><td rowspan="4">Linux</td><td>x86_64</td></tr>
+ <tr><td>x86</td></tr>
+ <tr><td>armv6l</td></tr>
+ <tr><td>armv7l</td></tr>
+ <tr><td>Darwin (Mac OSX)</td><td>x86_64</td></tr>
+ </tbody>
+</table>
+
+<p class="small">*These are the platforms for which a native library is included in the release.
+Flow is POSIX compatible so it can be built for a lot more platforms.</p>
+</div>
+
+</div>
+
+## Release Notes
+Consult the <a href="https://github.com/jodersky/flow/blob/master/CHANGELOG.md">release notes</a> for important changes.
+
+## Requirements
+Flow depends on Akka 2.4 and requires a Java runtime version of 1.8. It is released for Scala binary versions 2.11 and 2.12.0-M4.
+
+## Previous Versions
+Archived releases are available in <a href="https://github.com/jodersky/flow/releases">GitHub releases</a>.