Fonteditor is wip font editor for .font files. Characters can be copied and pasted in their one-off forms (\^:), and fonts can be copied as PODs.
Known issues
- While CTRL-Z and CTRL-Y (or CTRL-SHIFT-Z) work, for some reason, the buttons don't work reliably.
- No "save as" function yet.
- Writing to /system files is disabled by default (to avoid possible problems).
Version history
0.2d
- Added help-text when hovering over buttons
- Added a copy of the base font as well as one example one to the fonts folder
0.2c
- Fixed unused byte adjustment
- Can now save with CTRL-S
- New icon that matches system
0.2a
- Fonts can now be copied (CTRL-SHIFT-C) as a POD
The font lil.font has bugged characters from 16 to 26. All of the pixels that should be there are indeed present in the userdata; however, their width adjustment nibbles are not set and so they appear cut off:

print(chr(26)) --Yen symbol is cut poke(0x4008, 34, 34, 34, 34, 34, 3) --fix nibbles print(chr(26)) --Yen symbol is whole again! |
