This project is mirrored from https://github.com/clausecker/nfc.
Pull mirroring updated .
-
v2.2.054f31578 · ·
Release 2.2.0 (2024-03-09) N Add new functions Modulation.String(), Modulation.GoString() N Add new symbols ModulationTypes and BaudRates C Add a unit test for ListDevices() C Add a unit test for Device.InitiatorListPassiveTargets() C Use pkg-config to find libnfc. If this is undesirable, supply build tag nopkgconfig / no_pkgconfig to switch back to just linking with -lnfc. C Permit call to Device.Close() on uninitialised Device struct. This permits the usual dev, err := nfc.Open(...); defer dev.Close() idiom. B Fix an infinite loop in Device.InitiatorListPassiveTargets (issue #12)
-
v2.1.4e3643420 · ·
Release 2.1.4 (2020-09-14) I Following a rename of my github account, change import path. The old import path still works for now but is not recommended for new developments. I Delete 2.0 directory with old library version. It will still be available for import on old tool chains that aren't module aware. As this directory is not part of the API, removing it is not an API break.
-
v2.1.32a3531ec · ·
Release 2.1.3 (2020-05-22) I In reaction to the newly released libnfc 1.8.0 which fixes the ABI breakage, revert the enumeration order changes and retract releases 2.1.0 to 2.1.2. N Requires libnfc version >= 1.8.0.
-
v2.1.22179c236 · ·
Release 2.1.2 (2020-05-22) I Fix Go import paths (sorry, this is my first time using go mod)
-
v2.1.13ae08801 · ·
Release 2.1.1 (2020-05-22) N Provide Device.InitiatorPollTarget wrapping nfc_initiator_poll_target. N Add support for Thinfilm NFC Barcode targets N Add support for NFC ISO14443BiClass, i.e. HID iClass (Picopass) targets I Due to upstream changes, the value of the modulation type enumeration constants has changed. This has been forgotton for the 2.1.0 release which is why this patch release is needed.
-
v2.1.081ee11d2 · ·
Release 2.1.0 (2020-05-22) N Introduce a new function nfc.Device.SupportedBaudRatesTargetMode() wrapping the corresponding new function in the upcoming 1.7.2 release of the libnfc. C Bump libnfc dependency to version 1.7.2. C Allow nil Target parameter to function nfc.Device.InitiatorTargetIsPresent() as supported since release 1.7.1 of the libnfc. R adapt Go modules and discontinue the subdirectory scheme.