diff --git a/Changelog b/Changelog index 490280b..803f3bf 100644 --- a/Changelog +++ b/Changelog @@ -1,3 +1,11 @@ +1.5 +Released: 04/27/22 +swt@techie.net +- Various windows build improvements +- Support (the now-required) HTTPS communication with harmonyremote +- Fix various compiler warnings +- Add CI + 1.4 Released: 11/08/19 swt@techie.net diff --git a/concordance/concordance.c b/concordance/concordance.c index b28d5a7..0005b3d 100644 --- a/concordance/concordance.c +++ b/concordance/concordance.c @@ -89,7 +89,7 @@ int set_canon(int flag) #define DEFAULT_FW_FILENAME_BIN "firmware.bin" #define DEFAULT_SAFE_FILENAME "safe.bin" -const char * const VERSION = "1.4"; +const char * const VERSION = "1.5"; struct options_t { int binary; diff --git a/concordance/configure.ac b/concordance/configure.ac index 2049638..aa197f1 100644 --- a/concordance/configure.ac +++ b/concordance/configure.ac @@ -1,11 +1,11 @@ -AC_INIT([concordance], [1.4], [concordance-devel@lists.sourceforge.net]) +AC_INIT([concordance], [1.5], [concordance-devel@lists.sourceforge.net]) AM_INIT_AUTOMAKE([-Wall -Werror foreign]) AM_PROG_CC_C_O AC_CONFIG_MACRO_DIR([m4]) AC_PROG_LIBTOOL AC_PROG_CXX AC_CANONICAL_HOST -LIBCONCORD_VERSION="5" +LIBCONCORD_VERSION="6" case $host_os in darwin*) LIBCONCORD_LDFLAGS="-lconcord.$LIBCONCORD_VERSION" diff --git a/libconcord/Makefile.am b/libconcord/Makefile.am index 67af1a7..b3036c5 100644 --- a/libconcord/Makefile.am +++ b/libconcord/Makefile.am @@ -7,7 +7,7 @@ libconcord_la_SOURCES = remote.cpp remote_z.cpp libconcord.cpp binaryfile.cpp \ operationfile.cpp remote_mh.cpp libusbhid.cpp libhidapi.cpp include_HEADERS = libconcord.h libconcord_la_CPPFLAGS = -Wall -libconcord_la_LDFLAGS = -version-info 5:0:0 $(LIBCONCORD_LDFLAGS) -lzip -lcurl +libconcord_la_LDFLAGS = -version-info 6:0:0 $(LIBCONCORD_LDFLAGS) -lzip -lcurl libconcord_la_CXXFLAGS = $(ZIP_CFLAGS) UDEVROOT ?= / UDEVLIBDIR ?= $(UDEVROOT)/lib diff --git a/libconcord/bindings/python/libconcord.py b/libconcord/bindings/python/libconcord.py index 4a947ea..e54644e 100644 --- a/libconcord/bindings/python/libconcord.py +++ b/libconcord/bindings/python/libconcord.py @@ -32,7 +32,7 @@ # Define the libconcord ABI this libconcord.py corresponds to # Bump this when the .so file version gets bumped -ABI_VERSION = 5 +ABI_VERSION = 6 # Load the DLL diff --git a/libconcord/bindings/python/setup.py b/libconcord/bindings/python/setup.py index 833e53a..9ded24d 100644 --- a/libconcord/bindings/python/setup.py +++ b/libconcord/bindings/python/setup.py @@ -21,7 +21,7 @@ setup( name='libconcord', - version='1.4', + version='1.5', py_modules=['libconcord'], ) diff --git a/libconcord/configure.ac b/libconcord/configure.ac index 6ad5998..6d6d5d4 100644 --- a/libconcord/configure.ac +++ b/libconcord/configure.ac @@ -1,4 +1,4 @@ -AC_INIT([libconcord], [1.4], [concordance-devel@lists.sourceforge.net]) +AC_INIT([libconcord], [1.5], [concordance-devel@lists.sourceforge.net]) AM_INIT_AUTOMAKE([-Wall -Werror foreign]) AC_CONFIG_MACRO_DIR([m4]) m4_ifdef([AM_PROG_AR], [AM_PROG_AR])