|
From: <pst...@us...> - 2010-04-27 03:37:38
|
Revision: 763
http://jazzplusplus.svn.sourceforge.net/jazzplusplus/?rev=763&view=rev
Author: pstieber
Date: 2010-04-27 03:37:28 +0000 (Tue, 27 Apr 2010)
Log Message:
-----------
Made the pitch wheel available and bumped up the version to 4.1.4.
Modified Paths:
--------------
branches/jazz-4.1.3/src/about.h
branches/jazz-4.1.3/src/dialogs.cpp
branches/jazz-4.1.3/src/jazz.cpp
Modified: branches/jazz-4.1.3/src/about.h
===================================================================
--- branches/jazz-4.1.3/src/about.h 2010-04-26 23:25:19 UTC (rev 762)
+++ branches/jazz-4.1.3/src/about.h 2010-04-27 03:37:28 UTC (rev 763)
@@ -19,7 +19,7 @@
**
*/
-#define JAZZ_VERSION "4.1.3"
+#define JAZZ_VERSION "4.1.4"
#define JAZZ_FULL_VERSION JAZZ_VERSION " (" __DATE__ " " __TIME__ ")"
Modified: branches/jazz-4.1.3/src/dialogs.cpp
===================================================================
--- branches/jazz-4.1.3/src/dialogs.cpp 2010-04-26 23:25:19 UTC (rev 762)
+++ branches/jazz-4.1.3/src/dialogs.cpp 2010-04-27 03:37:28 UTC (rev 763)
@@ -1018,11 +1018,25 @@
static tEvent *CreateEventDialog(long Clock, int Channel, int Pitch)
{
static char *Names[] =
- // { "Note On", "Pitch", "Controller", "Program Change", (char *)0 };
- { "Note On", "Controller", "Program Change", "Set Tempo", "SysEx", (char *)0 };
+ {
+ "Note On",
+ "Pitch",
+ "Controller",
+ "Program Change",
+ "Set Tempo",
+ "SysEx",
+ (char *)0
+ };
static long Values[] =
- // { StatKeyOn, StatPitch, StatControl, StatProgram, -1 };
- { StatKeyOn, StatControl, StatProgram, StatSetTempo, StatSysEx, -1 };
+ {
+ StatKeyOn,
+ StatPitch,
+ StatControl,
+ StatProgram,
+ StatSetTempo,
+ StatSysEx,
+ -1
+ };
tEvent *e = 0;
int i = wxGetSingleChoiceIndex("Select event to create", "Create Event", 5, Names);
if (i >= 0)
Modified: branches/jazz-4.1.3/src/jazz.cpp
===================================================================
--- branches/jazz-4.1.3/src/jazz.cpp 2010-04-26 23:25:19 UTC (rev 762)
+++ branches/jazz-4.1.3/src/jazz.cpp 2010-04-27 03:37:28 UTC (rev 763)
@@ -684,7 +684,7 @@
return Buffer;
}
- sprintf(Buffer, "/Jazz++/4.1.3/conf/%s", fname);
+ sprintf(Buffer, "/Jazz++/4.1.4/conf/%s", fname);
if (wxFileExists(Buffer))
{
return Buffer;
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|