From 1b6f2e57ee6aaf5fa54fc5ebdf69bc9fb655960e Mon Sep 17 00:00:00 2001 From: PyroSamurai Date: Sun, 10 Oct 2021 14:37:16 -0400 Subject: [PATCH] Removed donation drive. Not even $1 was donated and no one was true to their word. I'm glad my motivation to code doesn't rely on this community. If the most trusted developer in the community can't raise money, then the only ones receiving money are those who wish to exploit users and the game. --- README.md | 15 ++++----------- docs/NORI_format.md | 8 ++++---- 2 files changed, 8 insertions(+), 15 deletions(-) diff --git a/README.md b/README.md index dae6209..bff44e4 100755 --- a/README.md +++ b/README.md @@ -4,20 +4,13 @@ The NORI Tool (TNT) A program designed to Extract and Create NORI files. Part of the Libre Trickster project. -__Waiting on $500 USD in donations to pay for the time & work necessary to finish -the 1.6 release. Focus is user-experience and Create feature functionality. Use -the link in Pyro's profile, mention the 1.6 release in the donation note.__ - -__Donaters' names or preferred aliases will be added to the 1.6 commit message -and release notes unless they opt-out of the honor.__ - -Test it on any .nri or .bac file you want. If it isn't extracted correctly, +Test it on any `.nri` or `.bac` file you want. If it isn't extracted correctly, open a GitHub issue immediately and it will get fixed.
 Please avoid forking this repo unless you plan to make pull request.
 Download the repo or a release if you want a local copy.
-Non-updated forks are annoying.
+Non-updated forks are annoying. BTW, Followers > Stars > Watchers > Forks
 
------------------------------------ @@ -25,8 +18,8 @@ Non-updated forks are annoying. How to compile and package TNT ---------------------------------- -Assuming you have [Java JDK](http://jdk.java.net) installed, all you have to do -to compile TNT is to access the `src` folder from the command prompt or terminal +Install the Java JDK, links: [here](http://jdk.java.net) or [here](https://github.com/ojdkbuild/ojdkbuild) +Access the `src` folder from the command prompt or terminal. Then run the following command: ```bash diff --git a/docs/NORI_format.md b/docs/NORI_format.md index fe4f28c..7f864f8 100644 --- a/docs/NORI_format.md +++ b/docs/NORI_format.md @@ -72,7 +72,7 @@ NORI file as it is suppose to look: +--------------+-----+---------------------------------------------------------+ | version | 4 | Version of the GAWI section format (always 300) | +--------------+-----+---------------------------------------------------------+ -| bpp | 4 | Bit depth of the image (8, 16, or 24) | +| bpp | 4 | Bit depth of the images (8, 16, or 24) | +--------------+-----+---------------------------------------------------------+ | compressed | 4 | Image compression flag (1 is yes) (RLE compression) | +--------------+-----+---------------------------------------------------------+ @@ -86,7 +86,7 @@ NORI file as it is suppose to look: +--------------+-----+---------------------------------------------------------+ | gParam7 | 4 | Unidentified data (ex: majority of mapbgeffect NORI) | +--------------+-----+---------------------------------------------------------+ -| numBMP | 4 | Number of images | +| bmpStructs | 4 | Number of BMP structures | +--------------+-----+---------------------------------------------------------+ | gsize | 4 | Size of entire GAWI section | +--------------+-----+---------------------------------------------------------+ @@ -133,11 +133,11 @@ NORI file as it is suppose to look: | END OF BMP OFFSETS | +------------------------------------------------------------------------------+ +------------------------------------------------------------------------------+ -| BitmapData: BMP Data For Each Image (sod+28 Bytes)| +| BitmapData: BMP Data For Each Image (4+(bmp_count)(sod+24) Bytes)| +--------------+-----+---------------------------------------------------------+ | Name |Bytes| Description | +--------------+-----+---------------------------------------------------------+ -| data_count | 4 | When >1, img subset exists, subs lack a bmpOffset value | +| bmp_count | 4 | When >1, img subset exists, subs lack a bmpOffset value | | | | When =0, it skips the rest of BitmapData | +--------------+-----+---------------------------------------------------------+ +--------------+-----+---------------------------------------------------------+