Skip to content

Commit

Permalink
6.21 release
Browse files Browse the repository at this point in the history
  • Loading branch information
jfriesne committed May 14, 2015
1 parent 7b54b3a commit 35cd7b1
Show file tree
Hide file tree
Showing 19 changed files with 190 additions and 142 deletions.
13 changes: 13 additions & 0 deletions HISTORY.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,19 @@ key: - new feature
* bug fixed
o other

6.21 Released 5/14/2015
o Merged in Mika Lindqvist's patch to make the StackWalker code
use less stack space.
o Merged in Mika Linkdqvist's patches for better Cygwin compatibility.
* Made the StackWalker code a bit more robust.
* Merged in Mika Lindqvist's patch to the VC++12 projects
to link debug builds against the MultiThreadedDebug
run time library rather than the MultiThreaded library.
* Fixed a couple of const-correctness issues in the StackWalker code.
o Modified the Windows implementation of GetNetworkInterfaceInfos()
to not specify an interface index for IPv6 network device address
::1, as doing so causes UDP-packet-routing problems under Windows 7.

6.20 Released 4/20/2015
- Added a new sub-folder besupport/admin_gui. It contains
Fredrik Modéen's GUI shell for more easily running muscled
Expand Down
2 changes: 1 addition & 1 deletion README.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<H2>
MUSCLE: Crossbar Server, Portable Messaging and Support Classes<p>
4/20/2015 v6.20 [email protected]<p>
5/14/2015 v6.21 [email protected]<p>
Jeremy Friesner / Meyer Sound Laboratories Inc.<p>
Win32 compatibility contributions by Vitaliy Mikitchenko<p>
C# client code by Wilson Yeung<p>
Expand Down
2 changes: 1 addition & 1 deletion dataio/ChildProcessDataIO.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ status_t ChildProcessDataIO :: LaunchChildProcessAux(int argc, const void * args
// generate an abolute-filepath for argv[0] first, otherwise we're likely
// to be unable to find the executable to run!
if (realpath(argv[0], absArgv0) != NULL) argv[0] = absArgv0;
(void) chdir(optDirectory); // FogBugz #10023
if (chdir(optDirectory) < 0) perror("ChildProcessDtaIO::chdir"); // FogBugz #10023
}

ChildProcessReadyToRun();
Expand Down
2 changes: 1 addition & 1 deletion html/Beginners Guide.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<HTML>
<HEAD>
<H1>MUSCLE Overview and Beginner's Guide</H1>
<H4>v6.20 / Jeremy Friesner / Meyer Sound Laboratories Inc ([email protected]) 4/20/2015</H4>
<H4>v6.21 / Jeremy Friesner / Meyer Sound Laboratories Inc ([email protected]) 5/14/2015</H4>
<A HREF="http://www.lcscanada.com/muscle/html/index.html">Click here for DOxygen class API documentation</A>
</HEAD>

Expand Down
2 changes: 1 addition & 1 deletion html/Custom Servers.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<HTML>
<HEAD>
<H1>Implementing a Custom Server with MUSCLE</H1>
<H4>v6.20 / Jeremy Friesner / Meyer Sound Laboratories Inc / [email protected] 4/20/2015</H4>
<H4>v6.21 / Jeremy Friesner / Meyer Sound Laboratories Inc / [email protected] 5/14/2015</H4>
</HEAD>
<BODY bgcolor=#ffffff>
<H2>Introduction</H2>
Expand Down
3 changes: 2 additions & 1 deletion html/autodoc/muscle.dox
Original file line number Diff line number Diff line change
Expand Up @@ -1988,7 +1988,8 @@ PREDEFINED = "HT_UniversalSinkKeyRef=" \
"HT_UniversalSinkItemRef=" \
"HT_SinkItemParam=const ItemType &" \
"QQ_UniversalSinkItemRef=" \
"QQ_SinkItemParam=const ItemType &"
"QQ_SinkItemParam=const ItemType &" \
"MUSCLE_FINAL_CLASS=final" \

# If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then this
# tag can be used to specify a list of macro names that should be expanded. The
Expand Down
4 changes: 2 additions & 2 deletions support/MuscleSupport.h
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
#ifndef MuscleSupport_h
#define MuscleSupport_h

#define MUSCLE_VERSION_STRING "6.20"
#define MUSCLE_VERSION 62000 // Format is decimal Mmmbb, where (M) is the number before the decimal point, (mm) is the number after the decimal point, and (bb) is reserved
#define MUSCLE_VERSION_STRING "6.21"
#define MUSCLE_VERSION 62100 // Format is decimal Mmmbb, where (M) is the number before the decimal point, (mm) is the number after the decimal point, and (bb) is reserved

/*! \mainpage MUSCLE Documentation Page
*
Expand Down
Loading

0 comments on commit 35cd7b1

Please sign in to comment.