File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ PROJECT(libnfc C)
22CMAKE_MINIMUM_REQUIRED (VERSION 2.6 )
33SET (VERSION_MAJOR "1" )
44SET (VERSION_MINOR "4" )
5- SET (VERSION_PATCH "0 " )
5+ SET (VERSION_PATCH "1 " )
66
77SET (VERSION "${VERSION_MAJOR} .${VERSION_MINOR} .${VERSION_PATCH} " )
88
Original file line number Diff line number Diff line change 1+ Feb 1, 2010 - 1.4.1
2+ -------------------
3+
4+ Fixes:
5+ - libnfc: fix missing pn53x-tamashell-scripts in generated tarball. (Thanks to usermeister)
6+ - buses/uart: improved UART communication on POSIX systems: slower devices can be detected and high speed devices works better
7+ - buses/uart: serial autoprobe now skips invalid devices but checks all ports in the list
8+ - drivers/pn53x_usb: prevent from stack corruption when using PN533-based device and add errors handling for ReadRegister and WriteRegister
9+ - drivers/arygon: fix polling on ARYGON devices
10+ - examples/nfc-emulate-tag: switch off easy framing when we are not emulating a ISO14443-4 target
11+ - examples/nfc-mfclassic: fix crash when file cannot be opened for writing
12+ - examples/nfc-mfultralight: fix 7 bytes UID display
13+
14+ Improvements:
15+ - libnfc: add a "troubleshooting" section in README to document ACR122 problems with pcsclite.
16+ - libnfc: inform user if target UID can not be emulated
17+ - example/nfc-mfultralight: handle lock page writing
18+ - examples/nfc-emulate-tag: handle HALT & READ
19+ - tests: add register access test
20+
21+ Experimental: Windows platform support (Thanks to Glenn Ergeerts)
22+
23+
124Nov 17, 2010 - 1.4.0
225--------------------
326
Original file line number Diff line number Diff line change 1+ New in 1.4.1:
2+
3+ API Changes
4+
5+ * Types
6+ - New error: ETGUIDNOTSUP raised when UID is not 4 bytes long or does not start with 0x08 (Security restriction present in the NXP PN53x chips)
7+
8+
9+
110New in 1.4.0:
211
312API Changes
Original file line number Diff line number Diff line change 11# General init
22
33# /!\ Don't forget to update 'windows/Makefile' too /!\
4- AC_INIT ( libnfc , 1.4.0 , info@libnfc.org )
4+ AC_INIT ( libnfc , 1.4.1 , info@libnfc.org )
55
66AC_CONFIG_MACRO_DIR ( [ m4] )
77
Original file line number Diff line number Diff line change 1+ libnfc (1.4.1-0) unstable; urgency=low
2+
3+ * New upstream release.
4+
5+ -- Romuald Conty <rconty@il4p.fr> Tue, 1 Feb 2011 10:42:42 +0100
6+
17libnfc (1.4.0-0) unstable; urgency=low
28
39 * New upstream release.
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ INCLUDES = $(all_includes) $(LIBNFC_CFLAGS)
66noinst_HEADERS = chips.h buses.h drivers.h mirror-subr.h
77lib_LTLIBRARIES = libnfc.la
88libnfc_la_SOURCES = nfc.c iso14443-subr.c mirror-subr.c
9- libnfc_la_LDFLAGS = -no-undefined -version-info=0 :0:0
9+ libnfc_la_LDFLAGS = -no-undefined -version-info=1 :0:1
1010libnfc_la_CFLAGS = @DRIVERS_CFLAGS@
1111libnfc_la_LIBADD = \
1212 $(top_builddir ) /libnfc/chips/libnfcchips.la \
You can’t perform that action at this time.
0 commit comments