Browse Source

Package number bumped to 1.90 everywhere.

git-svn-id: http://subversion.jackaudio.org/jack/jack2/trunk/jackmp@2293 0c269be4-1314-0410-8aa9-9f06e86f4224
tags/1.90
sletz 17 years ago
parent
commit
0a0ede0768
6 changed files with 17 additions and 19 deletions
  1. +4
    -0
      ChangeLog
  2. +1
    -1
      common/JackConstants.h
  3. +4
    -8
      common/Jackdmp.cpp
  4. +2
    -4
      linux/alsa/JackAlsaDriver.cpp
  5. +2
    -2
      macosx/Jack-Info.plist
  6. +4
    -4
      windows/resource.rc

+ 4
- 0
ChangeLog View File

@@ -20,6 +20,10 @@ Fernando Lopez-Lezcano
Jackdmp changes log
---------------------------

2008-05-20 Stephane Letz <letz@grame.fr>

* Package number bumped to 1.90 everywhere.

2008-05-19 Stephane Letz <letz@grame.fr>

* Use of placement new for dynamic port allocation is possibly not safe... so avoid that until a definitive answer is found.


+ 1
- 1
common/JackConstants.h View File

@@ -25,7 +25,7 @@
namespace Jack
{

#define VERSION "0.72"
#define VERSION "1.90"

#define BUFFER_SIZE_MAX 8192



+ 4
- 8
common/Jackdmp.cpp View File

@@ -246,16 +246,12 @@ int main(int argc, char* argv[])
}
}

/*
if (show_version) {
printf ( "jackd version " VERSION
" tmpdir " DEFAULT_TMP_DIR
" protocol " PROTOCOL_VERSION
"\n");
if (show_version) {
printf("jackdmp version " VERSION
"\n");
return -1;
}
*/

if (!seen_driver) {
usage(stderr);
exit(1);


+ 2
- 4
linux/alsa/JackAlsaDriver.cpp View File

@@ -1184,7 +1184,7 @@ JackAlsaDriver::alsa_driver_xrun_recovery (alsa_driver_t *driver, float *delayed
snd_pcm_status_t *status;
int res;

jack_error("alsa_driver_xrun_recovery ");
jack_error("alsa_driver_xrun_recovery");

snd_pcm_status_alloca(&status);

@@ -2287,10 +2287,8 @@ int JackAlsaDriver::Read()
* clients about the delay.
*/
//engine->delay (engine, delayed_usecs);
jack_log("ALSA XRun ");
//NotifyXRun(jack_get_microseconds());
jack_log("ALSA XRun");
NotifyXRun(fLastWaitUst);
//return 0;
return -1;
}



+ 2
- 2
macosx/Jack-Info.plist View File

@@ -7,7 +7,7 @@
<key>CFBundleExecutable</key>
<string>Jackservermp</string>
<key>CFBundleGetInfoString</key>
<string>Jackdmp 0.72, @03-08 Paul Davis, Grame</string>
<string>Jackdmp 1.90, @03-08 Paul Davis, Grame</string>
<key>CFBundleIdentifier</key>
<string>com.grame.Jackmp</string>
<key>CFBundleInfoDictionaryVersion</key>
@@ -19,6 +19,6 @@
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>0.72</string>
<string>1.90</string>
</dict>
</plist>

+ 4
- 4
windows/resource.rc View File

@@ -28,8 +28,8 @@ LANGUAGE LANG_FRENCH, SUBLANG_FRENCH
//

VS_VERSION_INFO VERSIONINFO
FILEVERSION 0,7,2,0
PRODUCTVERSION 0,7,2,0
FILEVERSION 1,9,0,0
PRODUCTVERSION 1,9,0,0
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
FILEFLAGS 0x1L
@@ -47,14 +47,14 @@ BEGIN
VALUE "Comments", "\0"
VALUE "CompanyName", "Grame\0"
VALUE "FileDescription", "Jackmp library for Windows\0"
VALUE "FileVersion", "0, 7, 2, 0\0"
VALUE "FileVersion", "1, 9, 0, 0\0"
VALUE "InternalName", "libjackmp\0"
VALUE "LegalCopyright", "Copyright Grame © 2006-2008\0"
VALUE "LegalTrademarks", "\0"
VALUE "OriginalFilename", "libjackmp.dll\0"
VALUE "PrivateBuild", "\0"
VALUE "ProductName", "libjackmp\0"
VALUE "ProductVersion", "0, 7, 2, 0\0"
VALUE "ProductVersion", "1, 9, 0, 0\0"
VALUE "SpecialBuild", "\0"
END
END


Loading…
Cancel
Save