mirror of https://github.com/nirenjan/libx52.git
parent
729bbcaf90
commit
945ddc63a3
|
@ -5,6 +5,8 @@ All notable changes to this project will be documented in this file.
|
||||||
The format is based upon [Keep a Changelog].
|
The format is based upon [Keep a Changelog].
|
||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
|
## [0.2.1] - 2020-06-28
|
||||||
### Added
|
### Added
|
||||||
- Connect/Disconnect methods in libx52. These allow for dynamically connecting
|
- Connect/Disconnect methods in libx52. These allow for dynamically connecting
|
||||||
or disconnecting from a supported joystick without having to reinitialize the
|
or disconnecting from a supported joystick without having to reinitialize the
|
||||||
|
@ -13,9 +15,12 @@ The format is based upon [Keep a Changelog].
|
||||||
* libx52
|
* libx52
|
||||||
* x52test
|
* x52test
|
||||||
- Doxygen generation of HTML documentation for libx52 methods.
|
- Doxygen generation of HTML documentation for libx52 methods.
|
||||||
|
- Tests for libx52 that run on all supported platforms.
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
- libx52_init no longer fails when a supported joystick is not connected.
|
- libx52_init no longer fails when a supported joystick is not connected.
|
||||||
|
- Tests now use [TAP].
|
||||||
|
- Python build scripts now use Python 3.
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
- Error reporting in x52cli and x52test commands.
|
- Error reporting in x52cli and x52test commands.
|
||||||
|
@ -97,7 +102,9 @@ The format is based upon [Keep a Changelog].
|
||||||
|
|
||||||
[Keep a Changelog]: http://keepachangelog.com/en/1.0.0/
|
[Keep a Changelog]: http://keepachangelog.com/en/1.0.0/
|
||||||
[Semantic Versioning]: http://semver.org/spec/v2.0.0.html
|
[Semantic Versioning]: http://semver.org/spec/v2.0.0.html
|
||||||
[Unreleased]: https://github.com/nirenjan/x52pro-linux/compare/v0.2.0...HEAD
|
[TAP]: https://testanything.org
|
||||||
|
[Unreleased]: https://github.com/nirenjan/x52pro-linux/compare/v0.2.1...HEAD
|
||||||
|
[0.2.1]: https://github.com/nirenjan/x52pro-linux/compare/v0.2.0...v0.2.1
|
||||||
[0.2.0]: https://github.com/nirenjan/x52pro-linux/compare/v0.1.2...v0.2.0
|
[0.2.0]: https://github.com/nirenjan/x52pro-linux/compare/v0.1.2...v0.2.0
|
||||||
[0.1.2]: https://github.com/nirenjan/x52pro-linux/compare/v0.1.1...v0.1.2
|
[0.1.2]: https://github.com/nirenjan/x52pro-linux/compare/v0.1.1...v0.1.2
|
||||||
[0.1.1]: https://github.com/nirenjan/x52pro-linux/compare/v0.1.0...v0.1.1
|
[0.1.1]: https://github.com/nirenjan/x52pro-linux/compare/v0.1.0...v0.1.1
|
||||||
|
|
|
@ -12,9 +12,9 @@ lib_LTLIBRARIES = libx52.la
|
||||||
# This library handles the USB communication between the host and the X52
|
# This library handles the USB communication between the host and the X52
|
||||||
# Libtool Version Info
|
# Libtool Version Info
|
||||||
# See: https://www.gnu.org/software/libtool/manual/html_node/Updating-version-info.html
|
# See: https://www.gnu.org/software/libtool/manual/html_node/Updating-version-info.html
|
||||||
libx52_v_CUR=4
|
libx52_v_CUR=5
|
||||||
libx52_v_AGE=2
|
libx52_v_AGE=3
|
||||||
libx52_v_REV=1
|
libx52_v_REV=0
|
||||||
libx52_la_SOURCES = x52_control.c x52_core.c x52_date_time.c x52_mfd_led.c \
|
libx52_la_SOURCES = x52_control.c x52_core.c x52_date_time.c x52_mfd_led.c \
|
||||||
x52_strerror.c
|
x52_strerror.c
|
||||||
libx52_la_CFLAGS = @LIBUSB_CFLAGS@ -DLOCALEDIR=\"$(localedir)\" -I $(top_srcdir) $(WARN_CFLAGS)
|
libx52_la_CFLAGS = @LIBUSB_CFLAGS@ -DLOCALEDIR=\"$(localedir)\" -I $(top_srcdir) $(WARN_CFLAGS)
|
||||||
|
|
Loading…
Reference in New Issue