Skip to content

Commit

Permalink
Release clarity version 2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
spheenik committed Aug 25, 2016
1 parent 2f19324 commit 90b8568
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 15 deletions.
16 changes: 4 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,6 @@

Clarity is a parser for Dota 2 replay files written in Java.

Version 2 offers a new event based interface to replay data, which will make usage much easier and more versatile for you.

##### News

Dota 2 Reborn is now the main client - and Clarity 2.1-SNAPSHOT is able to process all contents from new replays.
Even console recorded replays now work.
I will wait a bit until the dust settles, and then release this.

# Replay Data

clarity produces the following data you might be interested in from a replay. Choose from:
Expand All @@ -33,16 +25,16 @@ clarity produces the following data you might be interested in from a replay. Ch

# Usage

Fetch the current stable version (2.0) from Maven Central with
Fetch the current stable version (2.1) from Maven Central with
```XML
<dependency>
<groupId>com.skadistats</groupId>
<artifactId>clarity</artifactId>
<version>2.0</version>
<version>2.1</version>
</dependency>
```

Clarity 2.1 is work in progress and only available as a snapshot, so you got to add a pointer to the
Clarity 2.2 is work in progress and only available as a snapshot, so you got to add a pointer to the
repository to your pom.xml (see the [pom.xml of clarity-examples](https://github.com/skadistats/clarity-examples/blob/master/pom.xml), which already does that)

To add the snapshot repository, add the following:
Expand All @@ -67,7 +59,7 @@ and then fetch the dependency with:
<dependency>
<groupId>com.skadistats</groupId>
<artifactId>clarity</artifactId>
<version>2.1-SNAPSHOT</version>
<version>2.2-SNAPSHOT</version>
</dependency>
```

Expand Down
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.skadistats</groupId>
<artifactId>clarity</artifactId>
<version>2.1-SNAPSHOT</version>
<version>2.1</version>
<packaging>jar</packaging>
<name>clarity</name>
<description>Clarity is a fast, almost complete replay parser for Dota 2.</description>
Expand Down Expand Up @@ -48,7 +48,7 @@
<dependency>
<groupId>com.skadistats</groupId>
<artifactId>clarity-protobuf</artifactId>
<version>3-SNAPSHOT</version>
<version>[4.0,5.0)</version>
</dependency>
<dependency>
<groupId>org.xerial.snappy</groupId>
Expand Down Expand Up @@ -128,7 +128,7 @@
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>false</autoReleaseAfterClose>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</plugin>
</plugins>
Expand Down

0 comments on commit 90b8568

Please sign in to comment.