Update of /cvsroot/audacity/audacity-src/src
In directory sc8-pr-cvs11.sourceforge.net:/tmp/cvs-serv1757

Modified Files:
        Audacity.h 
Log Message:
Support for Windows version info


Index: Audacity.h
===================================================================
RCS file: /cvsroot/audacity/audacity-src/src/Audacity.h,v
retrieving revision 1.33
retrieving revision 1.34
diff -u -d -r1.33 -r1.34
--- Audacity.h  23 Oct 2006 07:09:47 -0000      1.33
+++ Audacity.h  25 Oct 2006 02:22:51 -0000      1.34
@@ -17,9 +17,27 @@
 
 *//********************************************************************/
 
+// Increment as appropriate every time you release a new version
+#define AUDACITY_VERSION   1
+#define AUDACITY_RELEASE   3
+#define AUDACITY_REVISION  2
+#define AUDACITY_MODLEVEL  0
+#define AUDACITY_SUFFIX    "-beta"
 
-// Increment this every time you release a new version
-#define AUDACITY_VERSION_STRING "1.3.2-beta"
+#define AUDACITY_MAKESTR( x ) #x
+#define AUDACITY_QUOTE( x ) AUDACITY_MAKESTR( x )
+
+// Version string for visual display
+#define AUDACITY_VERSION_STRING AUDACITY_QUOTE( AUDACITY_VERSION ) "." \
+                                AUDACITY_QUOTE( AUDACITY_RELEASE ) "." \
+                                AUDACITY_QUOTE( AUDACITY_REVISION ) \
+                                AUDACITY_SUFFIX
+
+// Version string for file info (under Windows)
+#define AUDACITY_FILE_VERSION AUDACITY_QUOTE( AUDACITY_VERSION ) "," \
+                              AUDACITY_QUOTE( AUDACITY_RELEASE ) "," \
+                              AUDACITY_QUOTE( AUDACITY_REVISION ) "," \
+                              AUDACITY_QUOTE( AUDACITY_MODLEVEL )
 
 // Increment this every time the prefs need to be reset
 // the first part (before the r) indicates the version the reset took place


-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
Audacity-cvs mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/audacity-cvs

Reply via email to