@@ -1,6 +1,22 @@ | |||||
ChangeLog | ChangeLog | ||||
######### | ######### | ||||
* 1.9.13 (2019-xx-xx) | |||||
* Meta-data API implementation. | |||||
* Correct GPL licence to LGPL for files needed to build libjack. | |||||
* Remove FreeBoB backend (superseded by FFADO). | |||||
* define JACK_LIB_EXPORT, useful for internal clients. | |||||
* Mark jack_midi_reset_buffer as deprecated. | |||||
* Signal to systemd when jackd is ready. | |||||
* Code cleanup and various fixes. (too many to mention here, see git log for details) | |||||
* 1.9.12 (2017-12-13) | * 1.9.12 (2017-12-13) | ||||
* Fix Windows build issues. | * Fix Windows build issues. | ||||
@@ -24,7 +24,7 @@ | |||||
#include "config.h" | #include "config.h" | ||||
#endif | #endif | ||||
#define VERSION "1.9.12" | |||||
#define VERSION "1.9.13" | |||||
#define BUFFER_SIZE_MAX 8192 | #define BUFFER_SIZE_MAX 8192 | ||||
@@ -1,6 +1,7 @@ | |||||
/* | /* | ||||
Copyright (C) 2001 Paul Davis | Copyright (C) 2001 Paul Davis | ||||
Copyright (C) 2004-2013 Grame | Copyright (C) 2004-2013 Grame | ||||
Copyright (C) 2016-2019 Grame | |||||
This program is free software; you can redistribute it and/or modify | This program is free software; you can redistribute it and/or modify | ||||
it under the terms of the GNU General Public License as published by | it under the terms of the GNU General Public License as published by | ||||
@@ -96,7 +97,7 @@ static void copyright(FILE* file) | |||||
fprintf(file, "jackdmp " VERSION "\n" | fprintf(file, "jackdmp " VERSION "\n" | ||||
"Copyright 2001-2005 Paul Davis and others.\n" | "Copyright 2001-2005 Paul Davis and others.\n" | ||||
"Copyright 2004-2016 Grame.\n" | "Copyright 2004-2016 Grame.\n" | ||||
"Copyright 2016-2018 Filipe Coelho.\n" | |||||
"Copyright 2016-2019 Filipe Coelho.\n" | |||||
"jackdmp comes with ABSOLUTELY NO WARRANTY\n" | "jackdmp comes with ABSOLUTELY NO WARRANTY\n" | ||||
"This is free software, and you are welcome to redistribute it\n" | "This is free software, and you are welcome to redistribute it\n" | ||||
"under certain conditions; see the file COPYING for details\n"); | "under certain conditions; see the file COPYING for details\n"); | ||||
@@ -7,7 +7,7 @@ | |||||
<key>CFBundleExecutable</key> | <key>CFBundleExecutable</key> | ||||
<string>Jackservermp</string> | <string>Jackservermp</string> | ||||
<key>CFBundleGetInfoString</key> | <key>CFBundleGetInfoString</key> | ||||
<string>Jackdmp 1.9.12, @03-17 Paul Davis, Grame, Filipe Coelho</string> | |||||
<string>Jackdmp 1.9.13, @03-17 Paul Davis, Grame, Filipe Coelho</string> | |||||
<key>CFBundleIdentifier</key> | <key>CFBundleIdentifier</key> | ||||
<string>com.grame.Jackmp</string> | <string>com.grame.Jackmp</string> | ||||
<key>CFBundleInfoDictionaryVersion</key> | <key>CFBundleInfoDictionaryVersion</key> | ||||
@@ -19,6 +19,6 @@ | |||||
<key>CFBundleSignature</key> | <key>CFBundleSignature</key> | ||||
<string>????</string> | <string>????</string> | ||||
<key>CFBundleVersion</key> | <key>CFBundleVersion</key> | ||||
<string>1.9.12</string> | |||||
<string>1.9.13</string> | |||||
</dict> | </dict> | ||||
</plist> | </plist> |
@@ -11,7 +11,7 @@ import sys | |||||
from waflib import Logs, Options, Task, Utils | from waflib import Logs, Options, Task, Utils | ||||
from waflib.Build import BuildContext, CleanContext, InstallContext, UninstallContext | from waflib.Build import BuildContext, CleanContext, InstallContext, UninstallContext | ||||
VERSION='1.9.12' | |||||
VERSION='1.9.13' | |||||
APPNAME='jack' | APPNAME='jack' | ||||
JACK_API_VERSION = '0.1.0' | JACK_API_VERSION = '0.1.0' | ||||