about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorptitSeb <seebastien.chev@gmail.com>2023-08-19 17:22:35 +0200
committerptitSeb <seebastien.chev@gmail.com>2023-08-19 17:22:35 +0200
commit45c4117a40e564b84dc8659283b52d92defe86c0 (patch)
tree35ae9eb474c235db44a22faa8effac34d6da2281
parent4bd00b0f91b92861e1cc4a0bc43714e8d5e08194 (diff)
downloadbox64-45c4117a40e564b84dc8659283b52d92defe86c0.tar.gz
box64-45c4117a40e564b84dc8659283b52d92defe86c0.zip
Bumped version to v0.2.4
-rw-r--r--docs/CHANGELOG.md25
-rw-r--r--src/box64version.h2
2 files changed, 26 insertions, 1 deletions
diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md
index 3b2109c2..65bbb359 100644
--- a/docs/CHANGELOG.md
+++ b/docs/CHANGELOG.md
@@ -1,3 +1,28 @@
+v0.2.4

+======

+* Added Dynarec for RISC-V

+* Added partial 32 bits support (WoW64 works)

+* Changed cpuid to display box64

+* Fixed steam, again

+* Improved hacked version for overridden malloc/free functions

+* More wrapped libs

+* More wrapped functions and syscalls

+* Reduced memory footprint

+* Added support for the BIND_NOW flags in ELF files

+* Added RTLD_NOLOAD support

+* Fixed some typos and general cleanup, again

+* Added a cosimulation mode (to compare the behaviour of the dynarec with the interpreter)

+* Added FASTNAN/FASTROUND handling for more opcodes

+* Better float/double/long double handling

+* Better dlopen/dlclose handling

+* More games in the rc file

+* Added BOX64_DYNAREC_MISSING to show only missing opcode, independantly of the log level

+* Added BOX64_RESERVE_HIGH to reserve addresses above 47bits

+* Improved multitreading support

+* Ukrainian translation of the README

+=> Dynarec now support RISC-V, large speedup on RISC-V 64, were games are now playable (like Stardew Valley on a Vision Five 2)

+=> Improved compatibility with more fixes in elf handling, more wrapped libs and functiond, more fixed opcodes and refined profile

+

 v0.2.2

 ======

 * Added a hacked version for overridden malloc/free functions, enabling libcef (and derivative) to work.

diff --git a/src/box64version.h b/src/box64version.h
index 5dab8286..ea108dec 100644
--- a/src/box64version.h
+++ b/src/box64version.h
@@ -3,6 +3,6 @@
 
 #define BOX64_MAJOR 0
 #define BOX64_MINOR 2
-#define BOX64_REVISION 3
+#define BOX64_REVISION 4
 
 #endif //__BOX64_VERSION_H_