aboutsummaryrefslogtreecommitdiff
path: root/changelog.txt
diff options
context:
space:
mode:
authorJohn "Lameguy" Wilbert Villamor <lameguy64@gmail.com>2021-11-22 14:40:59 +0800
committerGitHub <noreply@github.com>2021-11-22 14:40:59 +0800
commit45123e1b968d1883fed9b8526157ce2c4bffc4a7 (patch)
treed20c80fbd4f5a5d1d3972669625972cea6b3684d /changelog.txt
parent538f28cfbbbb8163ab8a96de77d6887123856c81 (diff)
parent9b00e5f7ff163a8fc6f341dbf237d90c61dadddc (diff)
downloadpsn00bsdk-45123e1b968d1883fed9b8526157ce2c4bffc4a7.tar.gz
Merge pull request #43 from spicyjpeg/cmake
Even more CMake fixes, submodules, pads example
Diffstat (limited to 'changelog.txt')
-rw-r--r--changelog.txt28
1 files changed, 28 insertions, 0 deletions
diff --git a/changelog.txt b/changelog.txt
index a7861b9..3efa7a0 100644
--- a/changelog.txt
+++ b/changelog.txt
@@ -2,6 +2,34 @@ PSn00bSDK changelog
Items that are lower in the log are more recently implemented.
+11-19-2021 by spicyjpeg:
+
+* libc: Removed STACK_MAX_SIZE and added _mem_init() back. RAM and stack size
+ can now be set by calling _mem_init() manually before allocating any memory.
+
+* libc: sprintf() now supports fixed padding when using %@ (binary integer).
+
+* psxapi: Added wrapper around BIOS function GetSystemInfo().
+
+* examples: Added pads example. Also added CMake build script to cartrom, which
+ is now built alongside all other examples.
+
+* Deprecated malloc.h and removed all references to it (stdlib.h should be used
+ instead). Moved int*_t and uint*_t types to stdint.h.
+
+* Fixed file permission errors when attempting to install the SDK on macOS.
+ Made some small updates to INSTALL.md.
+
+
+10-31-2021 by spicyjpeg:
+
+* Added tinyxml2 and mkpsxiso as git submodules and removed the (admittedly
+ short-lived) SKIP_* options completely. CMake's ExternalProject is no longer
+ used to download dependencies at build time.
+
+* Added CMake presets file with presets for building installer packages.
+
+
10-25-2021 by Lameguy64:
* Made a very tiny change in the readme file.