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

Commit

Permalink
updated launch scripts, about and changes.
Browse files Browse the repository at this point in the history
  • Loading branch information
Dmitry Kan committed Sep 28, 2015
1 parent 326e37e commit cf44815
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 7 deletions.
14 changes: 14 additions & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
* Upgrade to 5.3.0
https://github.com/DmitryKey/luke/pull/38

This release runs on Java8 and does not run on Java7.

This release includes a number of pull requests and github issues. Worth mentioning:

https://github.com/DmitryKey/luke/pull/38 upgrade to 5.3.0 itself

https://github.com/DmitryKey/luke/pull/28 Added LUKE_PATH env variable to luke.sh
https://github.com/DmitryKey/luke/pull/35 Added copy, cut, paste etc. shortcuts, using Mac command key
https://github.com/DmitryKey/luke/pull/34 Fixed lastAnalyzer retrieval (this feature remembers the last used analyzer on the Search tab)
https://github.com/DmitryKey/luke/issues/31 200 stargazers on github (by the time of this release the number crossed 250). Luke community is growing.

* Upgrade to 5.2.0
https://github.com/DmitryKey/luke/pull/27

Expand Down
2 changes: 1 addition & 1 deletion luke.bat
Original file line number Diff line number Diff line change
@@ -1 +1 @@
java -XX:MaxPermSize=512m -jar .\target\luke-with-deps.jar
java -jar .\target\luke-with-deps.jar

This comment has been minimized.

Copy link
@mlt

mlt Apr 15, 2016

It would be nice to have start in front and javaw instead of java so it won't hold the console.

This comment has been minimized.

Copy link
@DmitryKey

DmitryKey Apr 19, 2016

Owner

@mlt thanks for the suggestion. I have just pushed to master, would appreciate your testing!

This comment has been minimized.

Copy link
@mlt

mlt Apr 21, 2016

I think that should do it. Also to let you know, I set up Chocolatey package (apt-get alike) for Windows. I don't know if you feel like maintaining it yourself:-)

This comment has been minimized.

Copy link
@DmitryKey

DmitryKey Apr 22, 2016

Owner

wow, this is awesome. I'll include this into readme.md. If you would like to contribute by maintaining the package, I would be glad to mention your contribution.

This comment has been minimized.

Copy link
@mlt

mlt Apr 22, 2016

I'm not positive I can fully commit on that in a timely manner (I try to do my best generally) so I let you know in case you want to push changes there along with GH releases. There is no need to commemorate me :-) Perhaps, if you feel like it belongs to readme but don't feel like self-maintaing it, you could add "unofficial".
On a side note, can I browse saved facets anyhow?

This comment has been minimized.

Copy link
@DmitryKey

DmitryKey May 1, 2016

Owner

@mlt Sure! Would be nice to move this discussion to the issues. Could you please file one and describe the saved facets question there?

8 changes: 4 additions & 4 deletions luke.sh
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
if [[ -d `echo $LUKE_PATH` ]]; then
java -XX:MaxPermSize=512m -jar $LUKE_PATH/target/luke-with-deps.jar
java -jar $LUKE_PATH/target/luke-with-deps.jar
else
echo "Unable to find the LUKE_PATH environnement variable..."
echo "Assuming you're running from the root folder of luke..."
java -XX:MaxPermSize=512m -jar target/luke-with-deps.jar
java -jar target/luke-with-deps.jar
fi
#
# In order to start luke with your custom analyzer class extending org.apache.lucene.analysis.Analyzer run:
# java -XX:MaxPermSize=512m -cp target/luke-with-deps.jar:/path/to/custom_analyzer.jar org.getopt.luke.Luke
# java -cp target/luke-with-deps.jar:/path/to/custom_analyzer.jar org.getopt.luke.Luke
# your analyzer should appear in the drop-down menu with analyzers on the Search tab
#java -XX:MaxPermSize=512m -cp target/luke-with-deps.jar:/home/dmitry/projects/github/suggestinganalyzer/target/suggestinganalyzer-1.0-SNAPSHOT.jar org.getopt.luke.Luke
#java -cp target/luke-with-deps.jar:/home/dmitry/projects/github/suggestinganalyzer/target/suggestinganalyzer-1.0-SNAPSHOT.jar org.getopt.luke.Luke
5 changes: 3 additions & 2 deletions src/main/resources/xml/about.xml
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<dialog modal="true" name="about" columns="1" gap="8" icon="/img/luke.gif" text=" About" left="4" right="4" bottom="4" top="4" close="remove(about)">
<label halign="center" valign="center" text="v 5.2.0 (2015-07-07)" font="10" icon="/img/luke-big.gif"/>
<label halign="center" valign="center" text="v 5.3.0 (2015-09-28)" font="10" icon="/img/luke-big.gif"/>
<button type="link" tooltip="Go to Luke home page" action="goUrl(this)" halign="center" property="url=https://github.com/DmitryKey/luke" foreground="#5aaa88" text="Lucene Index Toolbox" font="18 bold"/>
<label halign="center" font="13" text="Created by Andrzej Bialecki &lt;[email protected]&gt;"/>
<label halign="center" font="13" text="Maintained and further developed by Dmitry Kan &lt;[email protected]&gt;"/>
<label halign="center" font="13" text="Further developed by: Dmitry Kan &lt;[email protected]&gt;, Tomoko Uchida &lt;https://twitter.com/moco_beta&gt;"/>
<label halign="center" font="13" text="Baked by pull-requests from our fantastic community. Thanks to all of you!"/>
<label halign="center" font="italic 11" text="GUI client of the best Java search library"/>
<button type="link" icon="/img/lucene.gif" tooltip="Go to Lucene home page" action="goUrl(this)" halign="center" property="url=http://lucene.apache.org/" foreground="#5aaa88" text="Apache Lucene - home page"/>
<label halign="center" font="11" name="lver" text=""/>
Expand Down

0 comments on commit cf44815

Please sign in to comment.