Releases: thacuber2a03/txt
Releases · thacuber2a03/txt
txt v1.0.1
txt v1.0.1 is released
- move wasn't usable, now it is
txt v1.0
txt v1.0 is released
that was a huge bump
- api is pretty different, re-read it all
- much resilient error checking
- there is now a limit to the font size and the window size
- fixed bug where
charsPressed
would return what I call a "null string",
as in, a string with only a single null character in it- yeah it's called
charsPressed
now
- yeah it's called
- added icon to window
- generalized module loading:
path/to/mod
to loadpath/to/mod.wren
orpath/to/mod.txt
the separator is also formatted for each OS
txt v0.3.0
txt v0.3.0 is released
- I also compile for Linux now! I use Linux so I'll be able to fix primarily Linux bugs
- fix a horrible bug where TXT was not accessible anywhere outside the main file, it must now be imported into all the games
misc:
- raylib and wren are statically linked to now, for both Windows and Linux
txt v0.2.0
txt v0.2.0 is out
additions:
- getters for
width()
,height()
,size()
andcharPressed()
the original functions won't be deprecated, it's just a QOL change - added
clear()
, this overload clears the screen with spaces
changes:
- changed font to https://int10h.org/oldschool-pc-fonts/fontlist/font?ibm_cga
- font is now packaged with the txt executable; you won't need to export with the font in order to render the game properly
however, changing fonts is not a thing anymore (I kinda had to do this a while ago already)
txt v0.1.0
txt v0.1.0 is out
added:
TXT.fontSize(s)
: does what it says in the tin
changes:
- removed meta module (had to recompile wren, why aren't any binaries out there damn it)
TXT.write
nowtoString
s the value to write before actually writing it- every single error message is now in starting lowercase. it just fits with, well, everything else
(note: Wren errors are still in starting uppercase)
fixes:
CELL_SIZE
said 8 when every cell is actually 7 bytes long :(bgColor(g)
was changing the foreground color rather than the background onebgColor(r,g,b)
was repeated twice in the docs, with different descriptions for both
txt v0.0.1
intial release