Skip to content
This repository has been archived by the owner on Sep 21, 2021. It is now read-only.

Commit

Permalink
Move javafx branch to master
Browse files Browse the repository at this point in the history
  • Loading branch information
mocobeta committed May 16, 2018
1 parent 77c05c6 commit 5572448
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 4 deletions.
7 changes: 7 additions & 0 deletions CHANGES.txt
@@ -1,3 +1,10 @@
* Upgrade to 7.3.1
Fixed in this release:

#97: Luke atop JavaFX (the branch is now master)
#104: Fixed 'user id is too big' error when packaging
#106: Fixed index path value rendering

* Upgrade to 7.2.0
Fixed in this release:

Expand Down
10 changes: 8 additions & 2 deletions README.md
Expand Up @@ -3,7 +3,7 @@ luke

![Luke, the Lucene Toolbox Project](src/main/resources/img/luke-logo.gif) + ![JavaFX](javafx.gif)

This branch runs Luke atop JavaFX.
Luke atop JavaFX.

Luke is the GUI tool for introspecting your Lucene / Solr / Elasticsearch index. It allows:

Expand Down Expand Up @@ -41,6 +41,7 @@ Brief project history
* The project has been ported to Lucene trunk (marked as 5.0 at the time) by Dmitry Kan
* The project has been back-ported to Lucene 4.3 by sonarname, who later decided not to continue supporting the project
* There are updates to the (non-mavenized) project done by [tarzanek](https://github.com/tarzanek/luke)
* The UI (and some of core components) has been re-implemented on top of JavaFX by [Tomoko Uchida](https://github.com/mocobeta).

This project's goal
====
Expand All @@ -67,7 +68,7 @@ Launching luke
2. Run `mvn install` from the project directory. (Make sure you have Java and Maven installed before doing this)
3. Use [luke.sh](luke.sh) or [luke.bat](luke.bat) for launching luke from the command line based on the OS you are in.

(Alternatively, for older versions of luke you can directly download the jar file from the [releases](https://github.com/DmitryKey/luke/releases) page and run it with the command `java -jar luke-with-deps.jar`)
(Alternatively, for older versions of luke you can directly download the jar file from the [releases](https://github.com/DmitryKey/luke/releases) page and run it with the command `java -jar luke-javafx-with-deps.jar`)

Running luke with a custom analyzer or codec
====
Expand Down Expand Up @@ -103,6 +104,11 @@ An example: lucene 4.8.0 can read the index generated by lucene 4.8.1. Hence luk
Conclusion: in order to find a luke release that can read an index of your version of Lucene, pick the closest major version
and download luke for that from the [releases](https://github.com/DmitryKey/luke/releases) page.

Where is (legacy) Thinlet version luke?
====

[luke-thinlet](https://github.com/DmitryKey/luke/blob/luke-thinlet/README.md) branch holds Thinlet version. From version 7.3.1, the main branch is running JavaFX version luke and Thinlet version is not maintained/updated.

Where is luke 4.4.0 ?
===

Expand Down
4 changes: 2 additions & 2 deletions src/main/assembly/assembly.xml
Expand Up @@ -8,15 +8,15 @@
<includeBaseDirectory>false</includeBaseDirectory>
<fileSets>
<fileSet>
<outputDirectory>luke-javafx-${lucene.version}</outputDirectory>
<outputDirectory>luke-${lucene.version}</outputDirectory>
<includes>
<include>luke.sh</include>
<include>luke.bat</include>
</includes>
</fileSet>
<fileSet>
<directory>target</directory>
<outputDirectory>luke-javafx-${lucene.version}/target</outputDirectory>
<outputDirectory>luke-${lucene.version}/target</outputDirectory>
<includes>
<include>luke-javafx-with-deps.jar</include>
</includes>
Expand Down

0 comments on commit 5572448

Please sign in to comment.