Update NEWS & Changelog
This commit is contained in:
parent
38966cb2fb
commit
e7f4d0778e
2 changed files with 23 additions and 1 deletions
20
ChangeLog
20
ChangeLog
|
@ -1,3 +1,23 @@
|
||||||
|
TBD
|
||||||
|
---
|
||||||
|
|
||||||
|
Fixes:
|
||||||
|
- Fix bug when compiling without libusb
|
||||||
|
- Fixes several memory leaks in error handling conditions
|
||||||
|
- Remove calls to exit() from the library
|
||||||
|
- Numerous minor fixes suggested by cppcheck & clang
|
||||||
|
- Windows: Clean up compiler/linker warnings
|
||||||
|
|
||||||
|
Improvements:
|
||||||
|
- Developers HACKING file: introduce clang & cppcheck for better code
|
||||||
|
- Windows: better logging via OutputDebugString()
|
||||||
|
|
||||||
|
Changes:
|
||||||
|
- Upon malloc error, nfc_init() doesn't force exit() anymore
|
||||||
|
so now you should test if context != NULL after nfc_init() call
|
||||||
|
- API: nfc_initiator_target_is_present() & str_nfc_target()
|
||||||
|
now take a pointer to nfc_target as argument instead of passing by value
|
||||||
|
|
||||||
Mar 03, 2013 - 1.7.0-rc6 (release candidate)
|
Mar 03, 2013 - 1.7.0-rc6 (release candidate)
|
||||||
--------------------------------------------
|
--------------------------------------------
|
||||||
|
|
||||||
|
|
4
NEWS
4
NEWS
|
@ -3,8 +3,10 @@ New in 1.7.0-***:
|
||||||
API Changes:
|
API Changes:
|
||||||
|
|
||||||
* Functions
|
* Functions
|
||||||
- nfc_initiator_target_is_present() & str_nfc_target()
|
- nfc_initiator_target_is_present() & str_nfc_target():
|
||||||
now take a pointer to nfc_target as argument
|
now take a pointer to nfc_target as argument
|
||||||
|
- nfc_init(): upon malloc error, doesn't force exit() anymore
|
||||||
|
so now you should test if context != NULL after nfc_init() call
|
||||||
|
|
||||||
New in 1.7.0-rc5:
|
New in 1.7.0-rc5:
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue