Hello, Akshaya here. In this tutorial I will show you how to rename an 8xk file so it can be reordered in the list on-calc.
Limitations: I can only guarantee that this method will work if the original name of the application and the name you're renaming it to are
the same length. It may work for names with different lengths, or it may not, I don't know.
For this tutorial I will be using TI's official application Cabri Jr. v2.00 downloaded from TI's website.
1. Ensure you have
Rabbitsign installed. Downloads may be found on ticalc.org:
Windows/
UNIX. Also download
FixIntelHex by BrandonW; the command line version works via latest Wine on Linux as of about April 2024. Also please ensure you have a working text editor willing to open and save files with arbitrary extensions; Notepad++/GNU Nano will do nicely.
2. Set up a directory somewhere with your starting 8xk file, and the file 0104.key, which may be found
here on WikiTI.
3. Open the 8xk file with your text editor. GNU Nano and Notepad++ handle files in the hundreds of kilobytes effortlessly. If you see a bunch of nonsense symbols plastered all over the screen, make sure it's set to ANSI or ASCII encoding mode. If you see a neatly aligned set of hexadecimal numbers below the first line, you're set.
4. As soon as you open it you should notice the app's name at the top after a bit of garbage.
Note that down. I have selected it as such below:
5. Now let's say we want to rename CabriJr to ZabriJr to make it appear at the very bottom of the app list. So you go and change that C to a Z. Have a steady mouse, and don't delete anything except for the characters of the title you wish to modify!
6. Now convert
that string you noted down earlier^ to its hexadecimal representation. You may use whatever tool you want for this, but for sake of simplicity I used a
website to produce a (somewhat) visually clear example. Make sure to set the delimiter to 'none' to ensure there are no spaces between the bytes. Anyway, you should notice that this new string is right there in the second line of your 8xk! Select it in the text editor.
7. Now convert your app's new name to ASCII hex with no spaces into that same converter. In our case, the first byte which stood for 'C' is now stands for 'Z', because I wish to change the name CabriJr to a ZabriJr in my example. Copy the output of the converter and paste it in place of the hex you selected in the last step.
8. Erase the last two characters of the line you just pasted into (i.e. what I have selected):
Those last 2 characters you just deleted made up a checkum: a number that mostly verifies the integrity of the data that came before it. But we have just changed that data (i.e. the app title), and therefore we need a new checksum! The utility FixIntelHex you hopefully downloaded earlier can do this for us. On Windows, it has a GUI which is insanely easy to use, so I'll be covering how to use it command line-wise for our liberated friends in Linux land; we'll assume they already have their Wine environments set up and have FixIntelHex in their PATH. (You can also use the command line version on real Windows in exactly the same way.)
9. Open a terminal in the directory containing FixIntelHex.exe. Then, run the command:
Code: FixIntelHex.exe -c {YOUR_LINE}
. Replace {YOUR_LINE} with the hexadecimal numbers that come after the colon character on the second line of the 8xk. Make sure the last two characters are missing! (If Windows asks you to install some specific version of .NET, do that. Wine users may or may not have to install .NET 3.5, but I don't remember if that was needed from experience.)
10. FixIntelHex will then spit out the checksum in an easy-to-read format. In my case it was 18. So now I paste 18 at the end of that second line.
11. Alright, home stretch! Save the 8xk and close your text editor. (For the sake of convenience, I just copied the entire contents of rabbitsign.zip to my directory.) Now, run: Code: rabbitsign -k 0104.key -g -r {FILENAME}
where {FILENAME} = the name of the 8xk app you just edited.
If all goes well, rabbitsign should give you no warnings or errors and you will have an 8xk with a "-signed" appended to it that indicates that it is the renamed app. Transfer it to your calculator and enjoy.
Note that sometimes, misclicks happen. And if this method didn't work for you, try taking a nice long break, understanding properly how to set your PATH variable, and how to change your editor's encoding. I have used this method at least 10 times and it has never failed me.