Skip to content

Commit

Permalink
Rolling version 1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
jaymzh committed Nov 9, 2019
1 parent dc892f4 commit 22c65f7
Show file tree
Hide file tree
Showing 8 changed files with 15 additions and 8 deletions.
7 changes: 7 additions & 0 deletions Changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
1.4
Released: 11/08/19
[email protected]
- Update Windows installer script to include libbz2
- Add Harmony 665 and 950 to remote_info struct
- Update README.md to document new X-Frame-Options workaround

1.3
Released: 06/08/18
[email protected]
Expand Down
2 changes: 1 addition & 1 deletion concordance/concordance.c
Original file line number Diff line number Diff line change
Expand Up @@ -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.3";
const char * const VERSION = "1.4";

struct options_t {
int binary;
Expand Down
4 changes: 2 additions & 2 deletions concordance/configure.ac
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
AC_INIT([concordance], [1.3], [[email protected]])
AC_INIT([concordance], [1.4], [[email protected]])
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="4"
LIBCONCORD_VERSION="5"
case $host_os in
darwin*)
LIBCONCORD_LDFLAGS="-lconcord.$LIBCONCORD_VERSION"
Expand Down
2 changes: 1 addition & 1 deletion concordance/win/concordance.nsi
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ Section "Concordance"
File "$%LIBZIP_LIB_PATH%/libzip-5.dll"
File "$%ZLIB_LIB_PATH%/zlib1.dll"
File "$%HIDAPI_LIB_PATH%/libhidapi-0.dll"
File "../../libconcord/.libs/libconcord-4.dll"
File "../../libconcord/.libs/libconcord-5.dll"

This comment has been minimized.

Copy link
@swt2c

swt2c Nov 11, 2019

Contributor

You also have to bump the version down below in the Uninstall section. Probably not worth cutting another release just to fix that, though.

This comment has been minimized.

Copy link
@jaymzh

jaymzh Nov 12, 2019

Author Owner

Ugh. We really need to abstract all this out into 1-2 places to update. This PR is absurd.

This comment has been minimized.

Copy link
@jaymzh

jaymzh Nov 12, 2019

Author Owner

Anyway - @swt2c you up for building some windows binaries?

This comment has been minimized.

Copy link
@swt2c

swt2c Nov 12, 2019

Contributor

I agree. Too many places to change stuff.

Yes, I built the binaries - check your concordance-devel mail.

File "../.libs/concordance.exe"
File "$%MINGW_SYSROOT_DEVLIB%/libwinpthread-1.dll"
File "$%MINGW_SYSROOT_BIN%/libbz2-1.dll"
Expand Down
2 changes: 1 addition & 1 deletion libconcord/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -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 4:0:0 $(LIBCONCORD_LDFLAGS) -lzip
libconcord_la_LDFLAGS = -version-info 5:0:0 $(LIBCONCORD_LDFLAGS) -lzip
libconcord_la_CXXFLAGS = $(ZIP_CFLAGS)
UDEVROOT ?= /
UDEVLIBDIR ?= $(UDEVROOT)/lib
Expand Down
2 changes: 1 addition & 1 deletion libconcord/bindings/python/libconcord.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
# Define the libconcord ABI this libconcord.py corresponds to
# Bump this when the .so file version gets bumped

ABI_VERSION = 4
ABI_VERSION = 5

# Load the DLL

Expand Down
2 changes: 1 addition & 1 deletion libconcord/bindings/python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

setup(
name='libconcord',
version='1.3',
version='1.4',
py_modules=['libconcord'],
)

2 changes: 1 addition & 1 deletion libconcord/configure.ac
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
AC_INIT([libconcord], [1.3], [[email protected]])
AC_INIT([libconcord], [1.4], [[email protected]])
AM_INIT_AUTOMAKE([-Wall -Werror foreign])
AC_CONFIG_MACRO_DIR([m4])
m4_ifdef([AM_PROG_AR], [AM_PROG_AR])
Expand Down

0 comments on commit 22c65f7

Please sign in to comment.