Skip to content

Commit

Permalink
Switch to clarity 2.3-SNAPSHOT
Browse files Browse the repository at this point in the history
  • Loading branch information
spheenik committed Mar 5, 2018
1 parent bbc6a10 commit 7c76160
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@

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

# Attention: New Journey update

Breakage occurs with the new 7.00 update. I already pushed a new 2.2-SNAPSHOT, as well as a
2.1.1 release which should fix it. Please update and report any remaining issues!
# Version 2.2 released

Because of a change of string decoding in clarity (2.2 wrongly decoded strings as ISO, while they should be
decoded as UTF-8), I released 2.2 today (March 5, 2018). Changing to 2.3 will require all client code to remove
whatever hack they did to properly convert clarity's output to UTF-8.

# Replay Data

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

# Usage

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

Clarity 2.2 is work in progress and only available as a snapshot, so you got to add a pointer to the
Clarity 2.3 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 @@ -65,7 +65,7 @@ and then fetch the dependency with:
<dependency>
<groupId>com.skadistats</groupId>
<artifactId>clarity</artifactId>
<version>2.2-SNAPSHOT</version>
<version>2.3-SNAPSHOT</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion 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.2</version>
<version>2.3-SNAPSHOT</version>
<packaging>jar</packaging>
<name>clarity</name>
<description>Clarity is a fast, almost complete replay parser for Dota 2.</description>
Expand Down

0 comments on commit 7c76160

Please sign in to comment.