comparison package.gui_sh @ 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 11bf54badc99
children
comparison
equal deleted inserted replaced
79:2a6795772ed4 80:0d4e996a5d99
1 #!/bin/sh 1 #!/bin/sh
2 2
3 #export _JAVA_AWT_WM_NONREPARENTING=1
4 export CLASSPATH=./src:./build:./lib/lucene-core-3.0.3.jar 3 export CLASSPATH=./src:./build:./lib/lucene-core-3.0.3.jar
5 #JAVA=/usr/lib/jvm/java-8-openjdk-amd64/bin/java 4 #JAVA=/usr/lib/jvm/java-8-openjdk-amd64/bin/java
6 5
7 version=$(hg identify -i) 6 version=$(hg identify -i)
8 7
9 mkdir -p ./build/packed/libraries 8 mkdir -p ./build/packed/libraries
10 9
11 javac -d ./build $(find ./src -name '*.java' | xargs) && cd build && jar cvefm junotu.Main ./packed/JUnotu.jar ../src/manifest $(find ./ -name *.class) 10 javac -d ./build $(find ./src -name '*.java' | xargs) && cd build && jar cvefm junotu.Main ./packed/JUnotu.jar ../src/manifest $(find ./ -name *.class)
12 cd .. 11 cd ..
13 cat > ./build/packed/readme.txt <<EOF 12 cat > ./build/packed/readme.txt <<'EOF'
14 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. 13 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.
14
15 # Description
16
17 Search through personal notes.
18
19 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.
20
21 ## Example usage
22
23 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.
24
25 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`.
26
27 ## In general
28
29 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.
30
31 # Manual/Guide
32
33 ## Search bar syntax
34
35 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
36
37 ## Backing up
38
39 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.
40
41 ## Source code / Development
42
43 At the time of writing the source code can be found at https://hg.reactionary.software/repo/junotu .
44
15 EOF 45 EOF
16 echo $version > ./build/packed/version 46 echo $version > ./build/packed/version
17 scp -r ./lib/* ./build/packed/libraries 47 scp -r ./lib/* ./build/packed/libraries
18 rm -f ./build/packed/JUnotu.tar 48 rm -f ./build/packed/JUnotu.tar
19 tar -cvhf ./build/packed/JUnotu.tar -C ./build/packed/ $(ls ./build/packed) 49 tar -cvhf ./build/packed/JUnotu.tar -C ./build/packed/ $(ls ./build/packed)