diff --git a/Projects/CodeBlocks/SleepyHead.depend b/Projects/CodeBlocks/SleepyHead.depend index ec52642a..4d28d7b9 100644 --- a/Projects/CodeBlocks/SleepyHead.depend +++ b/Projects/CodeBlocks/SleepyHead.depend @@ -8295,7 +8295,7 @@ -1307374498 /home/mark/projects/git/sleepyhead/src/version.h +1307374921 /home/mark/projects/git/sleepyhead/src/version.h 1307358939 /home/mark/projects/git/sleepyhead/src/libs/sleeplib/prs1_loader.h "machine.h" @@ -8332,7 +8332,7 @@ "sleeplib/profiles.h" "sleeplib/machine_loader.h" -1307374169 source:/home/mark/projects/git/sleepyhead/src/graphs/graph.cpp +1307374498 source:/home/mark/projects/git/sleepyhead/src/graphs/graph.cpp diff --git a/src/SleepyHeadMain.cpp b/src/SleepyHeadMain.cpp index dd249a05..8067c0a3 100644 --- a/src/SleepyHeadMain.cpp +++ b/src/SleepyHeadMain.cpp @@ -586,19 +586,19 @@ Daily::Daily(wxWindow *win,Profile *p) l->color.push_back(wxGREEN2); G_AHI->AddLayer(l); - AddOXIData(pulse=new EventData(OXI_Pulse,0,32768,true)); + AddOXIData(pulse=new EventData(OXI_Pulse,0,65536,true)); //pulse->ForceMinY(40); //pulse->ForceMaxY(120); PULSE=new gGraphWindow(ScrolledWindow,-1,wxT("Pulse"),wxPoint(0,0), wxSize(600,130), wxNO_BORDER); - PULSE->AddLayer(new gLineChart(pulse,wxRED,32768,false,false,true)); + PULSE->AddLayer(new gLineChart(pulse,wxRED,65536,false,false,true)); PULSE->AddLayer(new gXAxis(wxBLACK)); - AddOXIData(spo2=new EventData(OXI_SPO2,0,32768,true)); + AddOXIData(spo2=new EventData(OXI_SPO2,0,65536,true)); //spo2->ForceMinY(60); //spo2->ForceMaxY(100); SPO2=new gGraphWindow(ScrolledWindow,-1,wxT("SpO2"),wxPoint(0,0), wxSize(600,130), wxNO_BORDER); - SPO2->AddLayer(new gLineChart(spo2,wxBLUE,32768,false,false,true)); + SPO2->AddLayer(new gLineChart(spo2,wxBLUE,65536,false,false,true)); SPO2->AddLayer(new gXAxis(wxBLACK)); SPO2->LinkZoom(PULSE); PULSE->LinkZoom(SPO2); diff --git a/src/version.h b/src/version.h index af84271f..56b4f080 100644 --- a/src/version.h +++ b/src/version.h @@ -16,14 +16,14 @@ namespace AutoVersion{ //Standard Version Type static const long MAJOR = 0; static const long MINOR = 7; - static const long BUILD = 3322; - static const long REVISION = 1288; + static const long BUILD = 3323; + static const long REVISION = 1290; //Miscellaneous Version Types - static const long BUILDS_COUNT = 472; - #define RC_FILEVERSION 0,7,3322,1288 - #define RC_FILEVERSION_STRING "0, 7, 3322, 1288\0" - static const char FULLVERSION_STRING[] = "0.7.3322.1288"; + static const long BUILDS_COUNT = 474; + #define RC_FILEVERSION 0,7,3323,1290 + #define RC_FILEVERSION_STRING "0, 7, 3323, 1290\0" + static const char FULLVERSION_STRING[] = "0.7.3323.1290"; //These values are to keep track of your versioning state, don't modify them. static const long BUILD_HISTORY = 0;