Skip to content

Commit

Permalink
Update release to 0.3.
Browse files Browse the repository at this point in the history
  • Loading branch information
TomasMikula committed Jun 19, 2014
1 parent 0089d98 commit 7aa81bd
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 14 deletions.
24 changes: 12 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -109,13 +109,13 @@ Demos

#### Run using the pre-built JAR

[Download](https://github.com/TomasMikula/RichTextFX/releases/download/v0.2/richtextfx-demos-fat-0.2.jar) the pre-built "fat" JAR file and run
[Download](https://github.com/TomasMikula/RichTextFX/releases/download/v0.3/richtextfx-demos-fat-0.3.jar) the pre-built "fat" JAR file and run

java -cp richtextfx-demos-fat-0.2.jar org.fxmisc.richtext.demo.JavaKeywords
java -cp richtextfx-demos-fat-0.3.jar org.fxmisc.richtext.demo.JavaKeywords

or

java -cp richtextfx-demos-fat-0.2.jar org.fxmisc.richtext.demo.JavaKeywordsAsync
java -cp richtextfx-demos-fat-0.3.jar org.fxmisc.richtext.demo.JavaKeywordsAsync

#### Run from the source repo

Expand All @@ -139,9 +139,9 @@ The former computes highlighting on the JavaFX application thread, while the lat
![Screenshot of the RichText demo](https://googledrive.com/host/0B4a5AnNnZhkbYlVlbVprYnhPdVk/rich-text.png)

#### Run using the pre-built JAR
[Download](https://github.com/TomasMikula/RichTextFX/releases/download/v0.2/richtextfx-demos-fat-0.2.jar) the pre-built "fat" JAR file and run
[Download](https://github.com/TomasMikula/RichTextFX/releases/download/v0.3/richtextfx-demos-fat-0.3.jar) the pre-built "fat" JAR file and run

java -cp richtextfx-demos-fat-0.2.jar org.fxmisc.richtext.demo.RichText
java -cp richtextfx-demos-fat-0.3.jar org.fxmisc.richtext.demo.RichText

#### Run from the source repo

Expand All @@ -159,9 +159,9 @@ When the mouse pauses over the text area, you can get index of the character und
![Screenshot of the RichText demo](https://googledrive.com/host/0B4a5AnNnZhkbYlVlbVprYnhPdVk/tooltip-demo.png)

#### Run using the pre-built JAR
[Download](https://github.com/TomasMikula/RichTextFX/releases/download/v0.2/richtextfx-demos-fat-0.2.jar) the pre-built "fat" JAR file and run
[Download](https://github.com/TomasMikula/RichTextFX/releases/download/v0.3/richtextfx-demos-fat-0.3.jar) the pre-built "fat" JAR file and run

java -cp richtextfx-demos-fat-0.2.jar org.fxmisc.richtext.demo.TooltipDemo
java -cp richtextfx-demos-fat-0.3.jar org.fxmisc.richtext.demo.TooltipDemo

#### Run from the source repo

Expand All @@ -177,31 +177,31 @@ Use RichTextFX in your project

### Stable release

Current stable release is 0.2.
Current stable release is 0.3.

#### Maven coordinates

| Group ID | Artifact ID | Version |
| :-----------------: | :---------: | :-----: |
| org.fxmisc.richtext | richtextfx | 0.2 |
| org.fxmisc.richtext | richtextfx | 0.3 |

#### Gradle example

```groovy
dependencies {
compile group: 'org.fxmisc.richtext', name: 'richtextfx', version: '0.2'
compile group: 'org.fxmisc.richtext', name: 'richtextfx', version: '0.3'
}
```

#### Sbt example

```scala
libraryDependencies += "org.fxmisc.richtext" % "richtextfx" % "0.2"
libraryDependencies += "org.fxmisc.richtext" % "richtextfx" % "0.3"
```

#### Manual download

Download [the JAR file](https://github.com/TomasMikula/RichTextFX/releases/download/v0.2/richtextfx-0.2.jar) or [the fat JAR file (including dependencies)](https://github.com/TomasMikula/RichTextFX/releases/download/v0.2/richtextfx-fat-0.2.jar) and place it on your classpath.
Download [the JAR file](https://github.com/TomasMikula/RichTextFX/releases/download/v0.3/richtextfx-0.3.jar) or [the fat JAR file (including dependencies)](https://github.com/TomasMikula/RichTextFX/releases/download/v0.3/richtextfx-fat-0.3.jar) and place it on your classpath.


### Snapshot releases
Expand Down
4 changes: 2 additions & 2 deletions richtextfx/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ apply plugin: 'signing'
group = 'org.fxmisc.richtext'

dependencies {
compile group: 'org.reactfx', name: 'reactfx', version: '1.2.0-SNAPSHOT'
compile group: 'org.reactfx', name: 'reactfx', version: '[1.2.0,)'
compile group: 'org.fxmisc.undo', name: 'undofx', version: '[1.0,)'
compile group: 'org.fxmisc.easybind', name: 'easybind', version: '1.0.1-SNAPSHOT'
compile group: 'org.fxmisc.easybind', name: 'easybind', version: '[1.0.1,)'
testCompile group: 'junit', name: 'junit', version: '[4.0,)'
}

Expand Down

0 comments on commit 7aa81bd

Please sign in to comment.