From d12ffcfdf8704ff26287f3db6ec6cacc0a64463c Mon Sep 17 00:00:00 2001 From: Christian Basler Date: Mon, 27 Jun 2016 10:10:52 +0200 Subject: [PATCH] Some work on the dependencies page - renamed .markdown files to .md - a fix in the about page - a new (still empty) API page --- about.md | 5 ++-- api.md | 7 ++++++ dependencies.markdown => dependencies.md | 29 +++--------------------- index.markdown => index.md | 0 quickstart.markdown => quickstart.md | 0 5 files changed, 12 insertions(+), 29 deletions(-) create mode 100644 api.md rename dependencies.markdown => dependencies.md (60%) rename index.markdown => index.md (100%) rename quickstart.markdown => quickstart.md (100%) diff --git a/about.md b/about.md index 9b7909f..caa156f 100644 --- a/about.md +++ b/about.md @@ -2,12 +2,11 @@ layout: page title: About permalink: /about/ -order: 100 +order: 1000 --- Jabit is a Bitmessage library for Java. It aims to be easy to use, so you can create great Bitmessage apps. You can find the source code for the Jabit at: {% include icon-github.html username="Dissem" %} / -[jekyll-new](https://github.com/Dissem/Jabit) - +[Jabit](https://github.com/Dissem/Jabit) diff --git a/api.md b/api.md new file mode 100644 index 0000000..1bd0bb8 --- /dev/null +++ b/api.md @@ -0,0 +1,7 @@ +--- +layout: page +title: "API" +permalink: "/api" +order: 200 +categories: api +--- diff --git a/dependencies.markdown b/dependencies.md similarity index 60% rename from dependencies.markdown rename to dependencies.md index d698637..9f89b57 100644 --- a/dependencies.markdown +++ b/dependencies.md @@ -2,7 +2,7 @@ layout: page title: "Dependencies" permalink: "/dependencies" -order: 10 +order: 100 categories: dependencies --- @@ -24,29 +24,6 @@ library. `jabit-cryptography-spongy` is basically a copy of the spongy one, but using [Spongycastle](https://rtyley.github.io/spongycastle/) instead. +`jabit-wif` lets you import from and export to the Wallet Import Format, which is used by PyBitmessage to store its identities. - - -TODO - -Add Jabit as Gradle dependency: - -{% highlight groovy %} -compile 'ch.dissem.jabit:jabit-core:1.0.0' -{% endhighlight %} - -Unless you want to implement your own, also add the following: - -{% highlight groovy %} -compile 'ch.dissem.jabit:jabit-networking:1.0.0' -compile 'ch.dissem.jabit:jabit-repositories:1.0.0' -compile 'ch.dissem.jabit:jabit-cryptography-bouncy:1.0.0' -{% endhighlight %} - -And if you want to import from or export to the Wallet Import Format (used by PyBitmessage) you might also want to add: - -{% highlight groovy %} -compile 'ch.dissem.jabit:jabit-wif:1.0.0' -{% endhighlight %} - -For Android clients use `jabit-cryptography-spongy` instead of `jabit-cryptography-bouncy`. +`jabit-extensions` you won't usually need, it contains a few helper classes for if you want to build protocol extensions. \ No newline at end of file diff --git a/index.markdown b/index.md similarity index 100% rename from index.markdown rename to index.md diff --git a/quickstart.markdown b/quickstart.md similarity index 100% rename from quickstart.markdown rename to quickstart.md