changeset 80:0d4e996a5d99

Expanded generated 'readme.txt' and fixed minor mistake in 'README.md'
author Fox
date Sat, 07 Jan 2023 12:56:48 +0100
parents 2a6795772ed4
children b2a17ae9c9e2
files README.md package.gui_sh
diffstat 2 files changed, 34 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/README.md	Sat Jan 07 12:00:40 2023 +0100
+++ b/README.md	Sat Jan 07 12:56:48 2023 +0100
@@ -12,7 +12,7 @@
 
 ## In general
 
-The point is, adding something you want to find later, and thinking of I way to add 'hints' for when you will be searching for it later, so you can narrow the search down as much as possible.
+The point is, adding something you want to find later, and thinking of a way to add 'hints' for when you will be searching for it later, so you can narrow the search down as much as possible.
 
 # Why create a new program? Alternatives?
 
--- a/package.gui_sh	Sat Jan 07 12:00:40 2023 +0100
+++ b/package.gui_sh	Sat Jan 07 12:56:48 2023 +0100
@@ -1,6 +1,5 @@
 #!/bin/sh
 
-#export _JAVA_AWT_WM_NONREPARENTING=1
 export CLASSPATH=./src:./build:./lib/lucene-core-3.0.3.jar
 #JAVA=/usr/lib/jvm/java-8-openjdk-amd64/bin/java
 
@@ -10,8 +9,39 @@
 
 javac -d ./build $(find ./src -name '*.java' | xargs) && cd build && jar cvefm junotu.Main ./packed/JUnotu.jar ../src/manifest $(find ./ -name *.class)
 cd ..
-cat > ./build/packed/readme.txt <<EOF
-To run the program, unpack it from the achive and either double click 'JUnotu.jar' or run 'java -jar JUnotu.jar' command in the terminal.
+cat > ./build/packed/readme.txt <<'EOF'
+To run the program, unpack it from the achive and either double click 'JUnotu.jar' or run 'java -jar JUnotu.jar' command in the terminal. You have to have Java (runtime) installed in order to run the program.
+
+# Description
+
+Search through personal notes.
+
+I frequently run into problems finding that one specific video or article on the web, or a note I made sometime ago describing a fix to one particular problem that took a long time to research. What this program aims to do is allow you to throw all of that in quickly, and then be able to quickly search through every last bit of it. Cards are used to store information, each card has title, content and tags, with each tag optionally having a value. Then you are able to search through all your cards.
+
+## Example usage
+
+You can add in all the movies, animation and series you have watched (or considering watching). Title of the card being used for the title, content for description, and tags for genres and your personal categories. For example, you can add tags like so: `genre:action genre:drama has:fights director:whateverson`. Then you can find all movies that are `genre:action` and not `genre:drama`, preferably containing word 'explosion' somewhere in the title or description.
+
+You can add link to a video you have watched, and write your own description for it, like `Parkour video about dude using parkour and freerun to go places. I think his name is Xin. Music playing is Give it All by Rise Against.` I would also add tags like `video:video hosting website 1`, so I could just search all cards that have the tag `video`, or specify that the video tag has to have the value `video hosting website 1`.
+
+## In general
+
+The point is, adding something you want to find later, and thinking of a way to add 'hints' for when you will be searching for it later, so you can narrow the search down as much as possible.
+
+# Manual/Guide
+
+## Search bar syntax
+
+You can just type words for searches to return matches in title and content. If you want to search tags you can use `tag:value` or `tag:*` syntax. For more, see this: https://lucene.apache.org/core/3_0_3/queryparsersyntax.html
+
+## Backing up
+
+Not sure how well Lucene, and the way I use it, guards against data corruption. So I recommend making backups of the `Database` folder from time to time.
+
+## Source code / Development
+
+At the time of writing the source code can be found at https://hg.reactionary.software/repo/junotu .
+
 EOF
 echo $version > ./build/packed/version
 scp -r ./lib/* ./build/packed/libraries