-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
15 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
jaymzh
Author
Owner
|
||
File "../.libs/concordance.exe" | ||
File "$%MINGW_SYSROOT_DEVLIB%/libwinpthread-1.dll" | ||
File "$%MINGW_SYSROOT_BIN%/libbz2-1.dll" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,7 +21,7 @@ | |
|
||
setup( | ||
name='libconcord', | ||
version='1.3', | ||
version='1.4', | ||
py_modules=['libconcord'], | ||
) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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]) | ||
|
You also have to bump the version down below in the Uninstall section. Probably not worth cutting another release just to fix that, though.