summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfalkTX <falktx@falktx.com>2020-10-15 13:31:34 +0100
committerfalkTX <falktx@falktx.com>2020-10-15 13:31:34 +0100
commitca59f52ab9f36c06134cc2c91d7ca542401f7845 (patch)
tree773d1352fa5782494d53f12a9bcead9f63a98b5f
parentff8fe7b5513a534043e4eb076bc87ac54ac46d25 (diff)
parent8f81dd59512420f0add3206b64d449679c64daf5 (diff)
downloadjack2-ca59f52ab9f36c06134cc2c91d7ca542401f7845.tar.gz
Merge branch 'develop'v1.9.15
-rw-r--r--ChangeLog.rst22
-rw-r--r--common/JackConstants.h2
-rw-r--r--common/Jackdmp.cpp2
-rw-r--r--wscript2
4 files changed, 25 insertions, 3 deletions
diff --git a/ChangeLog.rst b/ChangeLog.rst
index 020410ff..2c95c350 100644
--- a/ChangeLog.rst
+++ b/ChangeLog.rst
@@ -1,6 +1,28 @@
ChangeLog
#########
+* 1.9.15 (2020-10-15)
+
+ * Automated builds for macOS and Windows (see jackaudio/jack2-releases repository)
+ * Adapt wscript Windows build configuration to match old v1.9.11 installer
+ * Bump maximum default number of clients and ports (now 256 clients and 2048 ports)
+ * Delete various macOS and Windows-related files from the source code (no longer relevant)
+ * Mark JACK-Session as deprecated, please use NSM instead
+ * Remove unnecessary GPL include from LGPL code
+ * Split example-clients and tools, as done in JACK1 many years ago (WIP)
+ * Write Windows registry key during installation, so 3rd parties can find jackd.exe (as HKLM\\Software\\JACK\\Location)
+ * jack_control: Fix handling of dbus bytes
+ * jack_control: Return a proper exit status on DBus exception
+ * jack_property: Fix possible crash with "-l" argument usage
+ * jack_wait: Add client name option -n/--name
+ * Fix compilation of documentation
+ * Fix compilation of mixed mode with meta-data enabled
+ * Fix compilation with mingw
+ * Fix client-side crash if initial meta-data DB setup fails
+ * Fix macOS semaphore usage, so it works again
+ * Several fixes for Windows (with contributions from Kjetil S. Matheussen)
+ * Several minor fixes and grammar corrections (with contributions from Adam Miartus and Timo Wischer)
+
* 1.9.14 (2019-10-28)
* Fix ARM build
diff --git a/common/JackConstants.h b/common/JackConstants.h
index cae54566..9f81bd5c 100644
--- a/common/JackConstants.h
+++ b/common/JackConstants.h
@@ -24,7 +24,7 @@
#include "config.h"
#endif
-#define VERSION "1.9.14"
+#define VERSION "1.9.15"
#define BUFFER_SIZE_MAX 8192
diff --git a/common/Jackdmp.cpp b/common/Jackdmp.cpp
index f7a1b270..0bc5cea9 100644
--- a/common/Jackdmp.cpp
+++ b/common/Jackdmp.cpp
@@ -97,7 +97,7 @@ static void copyright(FILE* file)
fprintf(file, "jackdmp " VERSION "\n"
"Copyright 2001-2005 Paul Davis and others.\n"
"Copyright 2004-2016 Grame.\n"
- "Copyright 2016-2019 Filipe Coelho.\n"
+ "Copyright 2016-2020 Filipe Coelho.\n"
"jackdmp comes with ABSOLUTELY NO WARRANTY\n"
"This is free software, and you are welcome to redistribute it\n"
"under certain conditions; see the file COPYING for details\n");
diff --git a/wscript b/wscript
index d3a1d5cb..3b6ac404 100644
--- a/wscript
+++ b/wscript
@@ -11,7 +11,7 @@ import sys
from waflib import Logs, Options, Task, Utils
from waflib.Build import BuildContext, CleanContext, InstallContext, UninstallContext
-VERSION='1.9.14'
+VERSION='1.9.15'
APPNAME='jack'
JACK_API_VERSION = '0.1.0'