annotate 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
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
22
a60e20304924 Added a packaging script
Fox
parents:
diff changeset
1 #!/bin/sh
a60e20304924 Added a packaging script
Fox
parents:
diff changeset
2
a60e20304924 Added a packaging script
Fox
parents:
diff changeset
3 export CLASSPATH=./src:./build:./lib/lucene-core-3.0.3.jar
a60e20304924 Added a packaging script
Fox
parents:
diff changeset
4 #JAVA=/usr/lib/jvm/java-8-openjdk-amd64/bin/java
a60e20304924 Added a packaging script
Fox
parents:
diff changeset
5
25
64151d1c78b6 Package: Fix packing symlinks into TAR, add Windows run script
Fox
parents: 23
diff changeset
6 version=$(hg identify -i)
64151d1c78b6 Package: Fix packing symlinks into TAR, add Windows run script
Fox
parents: 23
diff changeset
7
36
11bf54badc99 Figured out JAR MANIFEST, removed operating system-specific run scripts
Fox
parents: 27
diff changeset
8 mkdir -p ./build/packed/libraries
22
a60e20304924 Added a packaging script
Fox
parents:
diff changeset
9
36
11bf54badc99 Figured out JAR MANIFEST, removed operating system-specific run scripts
Fox
parents: 27
diff changeset
10 javac -d ./build $(find ./src -name '*.java' | xargs) && cd build && jar cvefm junotu.Main ./packed/JUnotu.jar ../src/manifest $(find ./ -name *.class)
22
a60e20304924 Added a packaging script
Fox
parents:
diff changeset
11 cd ..
80
0d4e996a5d99 Expanded generated 'readme.txt' and fixed minor mistake in 'README.md'
Fox
parents: 36
diff changeset
12 cat > ./build/packed/readme.txt <<'EOF'
0d4e996a5d99 Expanded generated 'readme.txt' and fixed minor mistake in 'README.md'
Fox
parents: 36
diff changeset
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.
0d4e996a5d99 Expanded generated 'readme.txt' and fixed minor mistake in 'README.md'
Fox
parents: 36
diff changeset
14
0d4e996a5d99 Expanded generated 'readme.txt' and fixed minor mistake in 'README.md'
Fox
parents: 36
diff changeset
15 # Description
0d4e996a5d99 Expanded generated 'readme.txt' and fixed minor mistake in 'README.md'
Fox
parents: 36
diff changeset
16
0d4e996a5d99 Expanded generated 'readme.txt' and fixed minor mistake in 'README.md'
Fox
parents: 36
diff changeset
17 Search through personal notes.
0d4e996a5d99 Expanded generated 'readme.txt' and fixed minor mistake in 'README.md'
Fox
parents: 36
diff changeset
18
0d4e996a5d99 Expanded generated 'readme.txt' and fixed minor mistake in 'README.md'
Fox
parents: 36
diff changeset
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.
0d4e996a5d99 Expanded generated 'readme.txt' and fixed minor mistake in 'README.md'
Fox
parents: 36
diff changeset
20
0d4e996a5d99 Expanded generated 'readme.txt' and fixed minor mistake in 'README.md'
Fox
parents: 36
diff changeset
21 ## Example usage
0d4e996a5d99 Expanded generated 'readme.txt' and fixed minor mistake in 'README.md'
Fox
parents: 36
diff changeset
22
0d4e996a5d99 Expanded generated 'readme.txt' and fixed minor mistake in 'README.md'
Fox
parents: 36
diff changeset
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.
0d4e996a5d99 Expanded generated 'readme.txt' and fixed minor mistake in 'README.md'
Fox
parents: 36
diff changeset
24
0d4e996a5d99 Expanded generated 'readme.txt' and fixed minor mistake in 'README.md'
Fox
parents: 36
diff changeset
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`.
0d4e996a5d99 Expanded generated 'readme.txt' and fixed minor mistake in 'README.md'
Fox
parents: 36
diff changeset
26
0d4e996a5d99 Expanded generated 'readme.txt' and fixed minor mistake in 'README.md'
Fox
parents: 36
diff changeset
27 ## In general
0d4e996a5d99 Expanded generated 'readme.txt' and fixed minor mistake in 'README.md'
Fox
parents: 36
diff changeset
28
0d4e996a5d99 Expanded generated 'readme.txt' and fixed minor mistake in 'README.md'
Fox
parents: 36
diff changeset
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.
0d4e996a5d99 Expanded generated 'readme.txt' and fixed minor mistake in 'README.md'
Fox
parents: 36
diff changeset
30
0d4e996a5d99 Expanded generated 'readme.txt' and fixed minor mistake in 'README.md'
Fox
parents: 36
diff changeset
31 # Manual/Guide
0d4e996a5d99 Expanded generated 'readme.txt' and fixed minor mistake in 'README.md'
Fox
parents: 36
diff changeset
32
0d4e996a5d99 Expanded generated 'readme.txt' and fixed minor mistake in 'README.md'
Fox
parents: 36
diff changeset
33 ## Search bar syntax
0d4e996a5d99 Expanded generated 'readme.txt' and fixed minor mistake in 'README.md'
Fox
parents: 36
diff changeset
34
0d4e996a5d99 Expanded generated 'readme.txt' and fixed minor mistake in 'README.md'
Fox
parents: 36
diff changeset
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
0d4e996a5d99 Expanded generated 'readme.txt' and fixed minor mistake in 'README.md'
Fox
parents: 36
diff changeset
36
0d4e996a5d99 Expanded generated 'readme.txt' and fixed minor mistake in 'README.md'
Fox
parents: 36
diff changeset
37 ## Backing up
0d4e996a5d99 Expanded generated 'readme.txt' and fixed minor mistake in 'README.md'
Fox
parents: 36
diff changeset
38
0d4e996a5d99 Expanded generated 'readme.txt' and fixed minor mistake in 'README.md'
Fox
parents: 36
diff changeset
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.
0d4e996a5d99 Expanded generated 'readme.txt' and fixed minor mistake in 'README.md'
Fox
parents: 36
diff changeset
40
0d4e996a5d99 Expanded generated 'readme.txt' and fixed minor mistake in 'README.md'
Fox
parents: 36
diff changeset
41 ## Source code / Development
0d4e996a5d99 Expanded generated 'readme.txt' and fixed minor mistake in 'README.md'
Fox
parents: 36
diff changeset
42
0d4e996a5d99 Expanded generated 'readme.txt' and fixed minor mistake in 'README.md'
Fox
parents: 36
diff changeset
43 At the time of writing the source code can be found at https://hg.reactionary.software/repo/junotu .
0d4e996a5d99 Expanded generated 'readme.txt' and fixed minor mistake in 'README.md'
Fox
parents: 36
diff changeset
44
25
64151d1c78b6 Package: Fix packing symlinks into TAR, add Windows run script
Fox
parents: 23
diff changeset
45 EOF
64151d1c78b6 Package: Fix packing symlinks into TAR, add Windows run script
Fox
parents: 23
diff changeset
46 echo $version > ./build/packed/version
36
11bf54badc99 Figured out JAR MANIFEST, removed operating system-specific run scripts
Fox
parents: 27
diff changeset
47 scp -r ./lib/* ./build/packed/libraries
23
222aafd9491b Package script: archive the resulting files into a TAR
Fox
parents: 22
diff changeset
48 rm -f ./build/packed/JUnotu.tar
25
64151d1c78b6 Package: Fix packing symlinks into TAR, add Windows run script
Fox
parents: 23
diff changeset
49 tar -cvhf ./build/packed/JUnotu.tar -C ./build/packed/ $(ls ./build/packed)
64151d1c78b6 Package: Fix packing symlinks into TAR, add Windows run script
Fox
parents: 23
diff changeset
50 echo Packed revision: $version