Skip to content

Commit

Permalink
Update versions.
Browse files Browse the repository at this point in the history
  • Loading branch information
TomasMikula committed Feb 23, 2015
1 parent b994185 commit f361f32
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 @@ -122,13 +122,13 @@ Demos

#### Run using the pre-built JAR

[Download](https://github.com/TomasMikula/RichTextFX/releases/download/v0.6/richtextfx-demos-fat-0.6.jar) the pre-built "fat" JAR file and run
[Download](https://github.com/TomasMikula/RichTextFX/releases/download/v0.6.1/richtextfx-demos-fat-0.6.1.jar) the pre-built "fat" JAR file and run

java -cp richtextfx-demos-fat-0.6.jar org.fxmisc.richtext.demo.JavaKeywords
java -cp richtextfx-demos-fat-0.6.1.jar org.fxmisc.richtext.demo.JavaKeywords

or

java -cp richtextfx-demos-fat-0.6.jar org.fxmisc.richtext.demo.JavaKeywordsAsync
java -cp richtextfx-demos-fat-0.6.1.jar org.fxmisc.richtext.demo.JavaKeywordsAsync

#### Run from the source repo

Expand All @@ -152,9 +152,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.6/richtextfx-demos-fat-0.6.jar) the pre-built "fat" JAR file and run
[Download](https://github.com/TomasMikula/RichTextFX/releases/download/v0.6.1/richtextfx-demos-fat-0.6.1.jar) the pre-built "fat" JAR file and run

java -cp richtextfx-demos-fat-0.6.jar org.fxmisc.richtext.demo.RichText
java -cp richtextfx-demos-fat-0.6.1.jar org.fxmisc.richtext.demo.RichText

#### Run from the source repo

Expand All @@ -172,9 +172,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.6/richtextfx-demos-fat-0.6.jar) the pre-built "fat" JAR file and run
[Download](https://github.com/TomasMikula/RichTextFX/releases/download/v0.6.1/richtextfx-demos-fat-0.6.1.jar) the pre-built "fat" JAR file and run

java -cp richtextfx-demos-fat-0.6.jar org.fxmisc.richtext.demo.TooltipDemo
java -cp richtextfx-demos-fat-0.6.1.jar org.fxmisc.richtext.demo.TooltipDemo

#### Run from the source repo

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

### Stable release

Current stable release is 0.6.
Current stable release is 0.6.1.

#### Maven coordinates

| Group ID | Artifact ID | Version |
| :-----------------: | :---------: | :-----: |
| org.fxmisc.richtext | richtextfx | 0.6 |
| org.fxmisc.richtext | richtextfx | 0.6.1 |

#### Gradle example

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

#### Sbt example

```scala
libraryDependencies += "org.fxmisc.richtext" % "richtextfx" % "0.6"
libraryDependencies += "org.fxmisc.richtext" % "richtextfx" % "0.6.1"
```

#### Manual download

Download [the JAR file](https://github.com/TomasMikula/RichTextFX/releases/download/v0.6/richtextfx-0.6.jar) or [the fat JAR file (including dependencies)](https://github.com/TomasMikula/RichTextFX/releases/download/v0.6/richtextfx-fat-0.6.jar) and place it on your classpath.
Download [the JAR file](https://github.com/TomasMikula/RichTextFX/releases/download/v0.6.1/richtextfx-0.6.1.jar) or [the fat JAR file (including dependencies)](https://github.com/TomasMikula/RichTextFX/releases/download/v0.6.1/richtextfx-fat-0.6.1.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,10 +4,10 @@ apply plugin: 'signing'
group = 'org.fxmisc.richtext'

dependencies {
compile group: 'org.reactfx', name: 'reactfx', version: '2.0-SNAPSHOT'
compile group: 'org.reactfx', name: 'reactfx', version: '2.0-M4'
compile group: 'org.fxmisc.undo', name: 'undofx', version: '[1.1,1.2)'
compile group: 'org.fxmisc.easybind', name: 'easybind', version: '[1.0.3,1.1)'
compile group: 'org.fxmisc.flowless', name: 'flowless', version: '0.4.1-SNAPSHOT'
compile group: 'org.fxmisc.flowless', name: 'flowless', version: '0.4.1'
compile group: 'org.fxmisc.wellbehaved', name: 'wellbehavedfx', version: '[0.1,0.2)'
testCompile group: 'junit', name: 'junit', version: '[4.0,5)'
}
Expand Down

0 comments on commit f361f32

Please sign in to comment.