unicorn/ChangeLog

71 lines
2.3 KiB
Plaintext
Raw Normal View History

2015-10-15 17:54:39 +02:00
This file details the changelog of Unicorn Engine.
2017-04-18 17:29:51 +02:00
----------------------------------
2017-04-20 07:28:02 +02:00
[Version 1.0.1]: April 20th, 2017
2017-04-18 17:29:51 +02:00
- Properly handle selected-architecture build.
- Fix compilation issues on PPC & S390x.
- Fix a memory leak on uc_mem_protect().
- ARM:
2017-04-20 07:28:02 +02:00
- Support big-endian mode.
2017-04-18 17:29:51 +02:00
- Correct instruction size of Thumb/Thumb2 code.
- Support read/write APSR register.
- ARM64:
- Support read/write NEON registers.
- Support read/write NZCV registers.
- Mips: Support read/write Mips64 registers.
- X86: Support read/write MSR.
- Haskell binding: update to the latest API.
- Python: allow not having PATH setup.
2017-02-23 13:17:02 +01:00
----------------------------------
2017-02-23 13:50:36 +01:00
[Version 1.0]: February 23rd, 2017
2017-02-23 13:17:02 +01:00
- Fix build script for BSD host.
- Fix building Unicorn on Arm/PPC/Sparc/S390 hosts.
- X86:
- Fix 16bit address computation.
2017-02-23 13:50:36 +01:00
- Fix initial state of segment registers.
2017-02-23 13:17:02 +01:00
2017-01-04 13:07:50 +01:00
----------------------------------
2017-01-25 05:03:09 +01:00
[Version 1.0-rc3]: January 25th, 2017
2017-01-25 05:00:18 +01:00
- Rename API uc_context_free() to uc_free().
- ARM:
- uc_reg_write() now can modify CPSR register.
- Add some ARM coproc registers.
- ARM64: uc_reg_read|write() now handles W0-W31 registers.
- Windows: fix a double free bug in uc_close().
- New VB6 binding.
- Java: update to support new APIs from v1.0-rc1.
- Python:
- Fix memory leaking that prevents UC instances from being GC.
- Remove some dependencies leftover from glib time.
- Add new method mem_regions() (linked to uc_mem_regions() API)
----------------------------------
[Version 1.0-rc2]: January 4th, 2017
2017-01-04 13:07:50 +01:00
- Remove glib & pkconfig dependency.
- Python: fix an issue to restore support for FreeBSD (and other *BSD Unix).
- ARM: support MCLASS cpu (Cortex-M3).
- Windows: export a static lib that can be used outside of Mingw
2016-12-22 15:13:13 +01:00
----------------------------------
[Version 1.0-rc1]: December 22nd, 2016
- Lots of bugfixes in all architectures.
- Better support for ARM Thumb.
- Fix many memory leaking issues.
- New bindings: Haskell, MSVC.
- Better support for Python3.
- New APIs: uc_query, uc_reg_write_batch, uc_reg_read_batch, uc_mem_map_ptr, uc_mem_regions, uc_context_alloc, uc_context_save & uc_context_restore.
- New memory hook type: UC_HOOK_MEM_READ_AFTER.
- Add new version macros UC_VERSION_{MAJOR, MINOR, EXTRA}
2015-10-15 17:54:39 +02:00
----------------------------------
[Version 0.9]: October 15th, 2015
- Initial public release.