view package.gui_sh @ 122:ad6ad9f695bb default tip

TabEdit: Started on card options pop-up menu
author Fox
date Sat, 25 Nov 2023 16:40:05 +0100
parents 0d4e996a5d99
children
line wrap: on
line source

#!/bin/sh

export CLASSPATH=./src:./build:./lib/lucene-core-3.0.3.jar
#JAVA=/usr/lib/jvm/java-8-openjdk-amd64/bin/java

version=$(hg identify -i)

mkdir -p ./build/packed/libraries

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. 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
rm -f ./build/packed/JUnotu.tar
tar -cvhf ./build/packed/JUnotu.tar -C ./build/packed/ $(ls ./build/packed)
echo Packed revision: $version