@@ -29,7 +29,7 @@ For a greater explanation of RichTextFX, its design principles, how it works, an
2929 * [ Snapshot] ( #snapshot-releases )
3030* API Documentation (Javadoc)
3131 - [ 0.6.10] ( http://fxmisc.github.io/richtext/javadoc/0.6.10/org/fxmisc/richtext/package-summary.html )
32- - [ 0.7-M4 ] ( http://fxmisc.github.io/richtext/javadoc/0.7-M4 /org/fxmisc/richtext/package-summary.html )
32+ - [ 0.7-M5 ] ( http://fxmisc.github.io/richtext/javadoc/0.7-M5 /org/fxmisc/richtext/package-summary.html )
3333* [ License] ( #license )
3434* [ Contributing] ( ./CONTRIBUTING.md )
3535
@@ -137,13 +137,13 @@ Demos
137137
138138#### Run using the pre-built JAR
139139
140- [ Download] ( https://github.com/TomasMikula/RichTextFX/releases/download/v0.6.10 /richtextfx-demos-fat-0.6.10 .jar ) the pre-built "fat" JAR file and run
140+ [ Download] ( https://github.com/TomasMikula/RichTextFX/releases/download/v0.7-M5 /richtextfx-demos-fat-0.7-M5 .jar ) the pre-built "fat" JAR file and run
141141
142- java -cp richtextfx-demos-fat-0.6.10 .jar org.fxmisc.richtext.demo.JavaKeywords
142+ java -cp richtextfx-demos-fat-0.7-M5 .jar org.fxmisc.richtext.demo.JavaKeywords
143143
144144or
145145
146- java -cp richtextfx-demos-fat-0.6.10 .jar org.fxmisc.richtext.demo.JavaKeywordsAsync
146+ java -cp richtextfx-demos-fat-0.7-M5 .jar org.fxmisc.richtext.demo.JavaKeywordsAsync
147147
148148#### Run from the source repo
149149
@@ -168,9 +168,9 @@ Similar to the [Java Keywords](#automatic-highlighting-of-java-keywords) demo ab
168168
169169#### Run using the pre-built JAR
170170
171- [ Download] ( https://github.com/TomasMikula/RichTextFX/releases/download/v0.6.10 /richtextfx-demos-fat-0.6.10 .jar ) the pre-built "fat" JAR file and run
171+ [ Download] ( https://github.com/TomasMikula/RichTextFX/releases/download/v0.7-M5 /richtextfx-demos-fat-0.7-M5 .jar ) the pre-built "fat" JAR file and run
172172
173- java -cp richtextfx-demos-fat-0.6.10 .jar org.fxmisc.richtext.demo.XMLEditor
173+ java -cp richtextfx-demos-fat-0.7-M5 .jar org.fxmisc.richtext.demo.XMLEditor
174174
175175#### Run from the source repo
176176
@@ -186,9 +186,9 @@ Similar to the [Java Keywords](#automatic-highlighting-of-java-keywords) demo ab
186186![ Screenshot of the RichText demo] ( https://cloud.githubusercontent.com/assets/8413037/24158984/22d36a10-0e1b-11e7-95e0-f4546cb528c3.png )
187187
188188#### Run using the pre-built JAR
189- [ Download] ( https://github.com/TomasMikula/RichTextFX/releases/download/v0.6.10 /richtextfx-demos-fat-0.6.10 .jar ) the pre-built "fat" JAR file and run
189+ [ Download] ( https://github.com/TomasMikula/RichTextFX/releases/download/v0.7-M5 /richtextfx-demos-fat-0.7-M5 .jar ) the pre-built "fat" JAR file and run
190190
191- java -cp richtextfx-demos-fat-0.6.10 .jar org.fxmisc.richtext.demo.richtext.RichText
191+ java -cp richtextfx-demos-fat-0.7-M5 .jar org.fxmisc.richtext.demo.richtext.RichText
192192
193193#### Run from the source repo
194194
@@ -206,9 +206,9 @@ When the mouse pauses over the text area, you can get index of the character und
206206![ Screenshot of the RichText demo] ( https://cloud.githubusercontent.com/assets/8413037/24158992/2741225e-0e1b-11e7-9d6b-6040dc30cee1.png )
207207
208208#### Run using the pre-built JAR
209- [ Download] ( https://github.com/TomasMikula/RichTextFX/releases/download/v0.6.10 /richtextfx-demos-fat-0.6.10 .jar ) the pre-built "fat" JAR file and run
209+ [ Download] ( https://github.com/TomasMikula/RichTextFX/releases/download/v0.7-M5 /richtextfx-demos-fat-0.7-M5 .jar ) the pre-built "fat" JAR file and run
210210
211- java -cp richtextfx-demos-fat-0.6.10 .jar org.fxmisc.richtext.demo.TooltipDemo
211+ java -cp richtextfx-demos-fat-0.7-M5 .jar org.fxmisc.richtext.demo.TooltipDemo
212212
213213#### Run from the source repo
214214
@@ -224,7 +224,7 @@ Download
224224
225225### Stable release
226226
227- Current stable release is 0.6.10.
227+ Current stable release is 0.6.10. (We encourage you to try 0.7 milestone release below.)
228228
229229#### Maven coordinates
230230
@@ -253,31 +253,31 @@ Download [the JAR file](https://github.com/TomasMikula/RichTextFX/releases/downl
253253
254254### Milestone release
255255
256- Milestone version of the upcoming release is 0.7-M4 .
256+ Milestone version of the upcoming release is 0.7-M5 .
257257
258258#### Maven coordinates
259259
260260| Group ID | Artifact ID | Version |
261261| :-----------------: | :---------: | :-----: |
262- | org.fxmisc.richtext | richtextfx | 0.7-M4 |
262+ | org.fxmisc.richtext | richtextfx | 0.7-M5 |
263263
264264#### Gradle example
265265
266266``` groovy
267267dependencies {
268- compile group: 'org.fxmisc.richtext', name: 'richtextfx', version: '0.7-M4 '
268+ compile group: 'org.fxmisc.richtext', name: 'richtextfx', version: '0.7-M5 '
269269}
270270```
271271
272272#### Sbt example
273273
274274``` scala
275- libraryDependencies += " org.fxmisc.richtext" % " richtextfx" % " 0.7-M4 "
275+ libraryDependencies += " org.fxmisc.richtext" % " richtextfx" % " 0.7-M5 "
276276```
277277
278278#### Manual download
279279
280- Download [ the JAR file] ( https://github.com/TomasMikula/RichTextFX/releases/download/v0.7-M4 /richtextfx-0.7-M4 .jar ) or [ the fat JAR file (including dependencies)] ( https://github.com/TomasMikula/RichTextFX/releases/download/v0.7-M4 /richtextfx-fat-0.7-M4 .jar ) and place it on your classpath.
280+ Download [ the JAR file] ( https://github.com/TomasMikula/RichTextFX/releases/download/v0.7-M5 /richtextfx-0.7-M5 .jar ) or [ the fat JAR file (including dependencies)] ( https://github.com/TomasMikula/RichTextFX/releases/download/v0.7-M5 /richtextfx-fat-0.7-M5 .jar ) and place it on your classpath.
281281
282282
283283### Snapshot releases
0 commit comments