summaryrefslogtreecommitdiffhomepage
path: root/CHANGELOG
diff options
context:
space:
mode:
authorRay <[email protected]>2020-03-23 14:22:06 +0100
committerGitHub <[email protected]>2020-03-23 14:22:06 +0100
commit5a39b2252134c9c607ad379c255048b0576e456f (patch)
treee50e449428309e5afaa1b25b40403a0306a7c10a /CHANGELOG
parent6c44c9d73049501a6ba6fdccd9bed9b1dd81793d (diff)
downloadraylib-5a39b2252134c9c607ad379c255048b0576e456f.tar.gz
raylib-5a39b2252134c9c607ad379c255048b0576e456f.zip
Update CHANGELOG
Diffstat (limited to 'CHANGELOG')
-rw-r--r--CHANGELOG4
1 files changed, 4 insertions, 0 deletions
diff --git a/CHANGELOG b/CHANGELOG
index b5ac24b8..aa3241e0 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -44,6 +44,10 @@ Detailed changes:
[core] ADDED: CompressData() - Compress data (DEFLATE algorythm)
[core] ADDED: DecompressData() - Decompress data (DEFLATE algorythm)
[core] ADDED: GetWindowPosition() - Get window position XY on monitor
+[core] ADDED: LoadFileData() - Load file data as byte array (read)
+[core] ADDED: SaveFileData() - Save data to file from byte array (write)
+[core] ADDED: LoadFileText() - Load text data from file (read), returns a '\0' terminated string
+[core] ADDED: SaveFileText() - Save text data to file (write), string must be '\0' terminated
[core] REMOVED: Show raylib logo at initialization
[core] REVIEWED: GetFileName(), security checks
[core] REVIEWED: IsMouseButtonReleased(), when press/release events come too fast, by @oswjk