-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
1.6.0 release, adds further Create support & user comfort, closes #7
long awaited and funded 1.6.0 release, made possible by 3 donaters: Daniel Fernandes, 林瑋誠, github.com/grawlinson, Forever immortalized in this git commit. Thank you.
- Loading branch information
1 parent
1b6f2e5
commit b4ab8b3
Showing
14 changed files
with
2,362 additions
and
1,688 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
1.6.00 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
@ECHO OFF | ||
SET "ReadMe=TNT\README.md" | ||
ATTRIB -r TNT.jar | ||
DEL TNT.jar | ||
CD .. | ||
jar cf TNT\src\TNT.jar TNT\src\*.java TNT\docs TNT\LICENSE TNT\VERSION %ReadMe% | ||
CD TNT\src | ||
javac *.java | ||
jar ufe TNT.jar Main *.class | ||
CD .. | ||
DEL src\*.class | ||
MOVE src\TNT.jar TNT.jar | ||
ATTRIB +r TNT.jar |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
#!/bin/bash | ||
src="TNT/src" | ||
rm -f TNT.jar | ||
cd .. | ||
jar cf $src/TNT.jar $src/*.java TNT/docs TNT/LICENSE TNT/VERSION TNT/README.md | ||
cd $src | ||
javac *.java | ||
jar ufe TNT.jar Main *.class | ||
cd .. | ||
rm src/*.class | ||
mv src/TNT.jar TNT.jar | ||
chmod 705 TNT.jar |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
NORI Features Not Supported In Create | ||
------------------------------------- | ||
|
||
RLE compression, b/c zlib's DEFLATE is better if you need compression | ||
Palettes for non-8bit NORI, b/c they are not used | ||
Creation of 0 bmpCount NORI files |
Oops, something went wrong.
b4ab8b3
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yay! Thank you for persevering for so long, Pyro. :)