From da0e0f4d8e17d368cb6059db959cc6af9b0d077b Mon Sep 17 00:00:00 2001 From: JKetelaar Date: Mon, 30 Jan 2017 14:41:48 +0100 Subject: [PATCH 1/3] [TASK] Incremented version to 2.6.3 --- .travis.yml | 2 +- pom.xml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 5b5dea8..736f389 100644 --- a/.travis.yml +++ b/.travis.yml @@ -32,7 +32,7 @@ env: - secure: UG+b1tEgc8xv9x4r//2OAIK1RrYv6n209KTTFMMwcnAa7DI8HaP8nljRa5/VhDhuKHdlVrYH/tI90v7UVBs0GDVNwK5V17Io0fMm3FUGZekSthTCqqno5wAGa9r6a6mMLtSaSmIFeIKi0+0d2ZwplRuhj/dtEYjjBBj+kK8g4nE= - secure: St/fecUDInFBCRriYqgp2F8PU9/SooorgxD9Mrs+b0EsC7AbtSsQXvdIv2Lp6xzdQ0VSXPcLIhULPOYrmBKnGQ/NjXTIZXxnroyQxxnI6xyEWIZwiHRY/bKRJDRbQTxD9NL32szKiDSwnw7pu6llF4D64UqQvziq4Gm6VohU75M= - secure: bD15GVZWowiknbfLavh8CxSh0GsnF5kT4kZ6ggCuUDGyj0mzqf7dNRnchQIKkCG0WRYyTrFN4pEiygeywWsipEeAVv9Xhx3cuUZmzeQaR5KCWabSwJ8gK6jZd1YhcWmM9vrdPHobZr65MP0y/8mu/Fovgky9dY7KDf4G3SebNrM= - - PARABOT_VERSION=2.6.2 + - PARABOT_VERSION=2.6.3 cache: directories: diff --git a/pom.xml b/pom.xml index 0f5810a..4944707 100755 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ org.parabot client - 2.6.2 + 2.6.3 jar From 82bf4ece9c75e01f3ac08b560646f63121a9d528 Mon Sep 17 00:00:00 2001 From: JKetelaar Date: Mon, 30 Jan 2017 14:50:05 +0100 Subject: [PATCH 2/3] [TASK] Updated README.md --- README.md | 33 ++++++++++++++++++--------------- 1 file changed, 18 insertions(+), 15 deletions(-) diff --git a/README.md b/README.md index b263025..8f6354b 100644 --- a/README.md +++ b/README.md @@ -3,15 +3,21 @@ # Parabot -Parabot V2.6.2. +Parabot V2.6.3. -#### Website +#### Links -[Community, scripts & more](http://www.parabot.org/) +[Website](http://www.parabot.org/) + +[Download latest version](http://v3.bdn.parabot.org/api/bot/download/client) #### Compilation -You'll need the [libraries](https://github.com/Parabot/Parabot/tree/master/libs) in order to compile parabot successfully. -The POM file contains the redirection to the libraries, so simply install them with Maven. +Build the project with the Maven POM file to have all required libraries installed. + +#### Automation +Every stable build is automatically generated from the last commits of the master branch. This will take the version from both the `pom.xml` and the version in `.travis.yml`. + +The nightly builds are automatically created from the last commits of the development branch. This will take the version from both the `pom.xml` and the version in `.travis.yml`, together with the build ID from travis. #### Issues If you've an issues regarding the bot itself, please report them [here](https://github.com/Parabot/Parabot/issues). @@ -19,7 +25,9 @@ If you've an issues regarding the bot itself, please report them [here](https:// #### Maven Parabot supports Maven as of September 2015. All information is included in the POM.xml. The API that is supported by Parabot is also published on a Maven repository. -If you'd like to have either or both the client and the API in your project, use the following repository and dependecy tags: + +To add the client as a library, you'll first have to add our repository: + ``` @@ -28,22 +36,17 @@ If you'd like to have either or both the client and the API in your project, use https://maven.parabot.org/ - +``` +Then you'll need to add the dependency +``` org.parabot client - 2.6 - - - org.parabot - 317provider - 1.14 + 2.6.3 ``` -**For the latest versions of our dependencies, please check our examples on [the Maven Repository](https://github.com/Parabot/Maven-Repository/tree/master/examples)** - #### Labels Labels are created with [GHLabel](https://github.com/jimmycuadra/ghlabel), whereas the yml is located in the .github directory \ No newline at end of file From e86cc4e5c1cd7dd5cd2a77030870b923e58de2e0 Mon Sep 17 00:00:00 2001 From: JKetelaar Date: Mon, 30 Jan 2017 14:52:52 +0100 Subject: [PATCH 3/3] [BUGFIX] Added correct layout --- README.md | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 8f6354b..41f5398 100644 --- a/README.md +++ b/README.md @@ -23,10 +23,7 @@ The nightly builds are automatically created from the last commits of the develo If you've an issues regarding the bot itself, please report them [here](https://github.com/Parabot/Parabot/issues). #### Maven -Parabot supports Maven as of September 2015. All information is included in the POM.xml. -The API that is supported by Parabot is also published on a Maven repository. - -To add the client as a library, you'll first have to add our repository: +To add the client as a library, you'll first have to add our repository to your `pom.xml`: ``` @@ -37,7 +34,9 @@ To add the client as a library, you'll first have to add our repository: ``` -Then you'll need to add the dependency + +Then you'll need to add the dependency: + ```