From b98f21b30cc8c21e13fb01925d7c91099e32beab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Iv=C3=A1n=20Delgado?= Date: Mon, 8 Feb 2021 01:57:58 +0100 Subject: [PATCH] Initial release --- .gitignore | 4 ++-- README.md | 1 - compile.sh | 4 ++++ 3 files changed, 6 insertions(+), 3 deletions(-) create mode 100755 compile.sh diff --git a/.gitignore b/.gitignore index bcd794a..83705fa 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,5 @@ build dist -compile.sh .vscode -src/languages \ No newline at end of file +src/languages +TileMolester.jar \ No newline at end of file diff --git a/README.md b/README.md index 5bddd81..5b27ac2 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,6 @@ It was originally developed SnowBro and later improved by Central MiB and Lab313 ## Changelog ------ ### v0.20 (by toruzz) - Native theme loading in Windows and Linux diff --git a/compile.sh b/compile.sh new file mode 100755 index 0000000..0fab6cd --- /dev/null +++ b/compile.sh @@ -0,0 +1,4 @@ +javac -sourcepath src -d ./build src/TileMolester.java +cp -R src/tm/icons build/tm/ +cp src/tm/splash.gif build/tm/splash.gif +jar cvfm TileMolester.jar META-INF/MANIFEST.MF -C build/ . \ No newline at end of file