diff --git a/oscar/SleepLib/common.cpp b/oscar/SleepLib/common.cpp
index ce3b3be2..380ec5f3 100644
--- a/oscar/SleepLib/common.cpp
+++ b/oscar/SleepLib/common.cpp
@@ -177,6 +177,11 @@ QString getGraphicsEngine()
QString getBranchVersion()
{
QString version = STR_TR_AppVersion;
+
+ if (!((ReleaseStatus.compare("r", Qt::CaseInsensitive)==0) ||
+ (ReleaseStatus.compare("release", Qt::CaseInsensitive)==0)))
+ version += " ("+GIT_REVISION + ")";
+
if (GIT_BRANCH != "master") {
version += " [Branch: " + GIT_BRANCH + "]";
}
diff --git a/oscar/SleepLib/session.cpp b/oscar/SleepLib/session.cpp
index b9f83b02..a7f099b1 100644
--- a/oscar/SleepLib/session.cpp
+++ b/oscar/SleepLib/session.cpp
@@ -379,12 +379,11 @@ bool Session::StoreSummary()
bool Session::LoadSummary()
{
- //static int sumcnt = 0;
+// static int sumcnt = 0;
if (s_summary_loaded) return true;
QString filename = s_machine->getSummariesPath() + QString().sprintf("%08lx.000", s_session);
-
if (filename.isEmpty()) {
qDebug() << "Empty summary filename";
return false;
@@ -398,7 +397,7 @@ bool Session::LoadSummary()
}
- // qDebug() << "Loading" << s_machine->loaderName() << "Summary" << filename << sumcnt++;
+// qDebug() << "Loading" << s_machine->loaderName() << "Summary" << filename << sumcnt++;
QDataStream in(&file);
in.setVersion(QDataStream::Qt_4_6);
diff --git a/oscar/build_number.h b/oscar/build_number.h
index 4efaa269..6025edac 100644
--- a/oscar/build_number.h
+++ b/oscar/build_number.h
@@ -1 +1 @@
-const int build_number = 1;
+const int build_number = 2;
diff --git a/oscar/daily.cpp b/oscar/daily.cpp
index 7aad0aac..ee2181d8 100644
--- a/oscar/daily.cpp
+++ b/oscar/daily.cpp
@@ -432,7 +432,7 @@ Daily::Daily(QWidget *parent,gGraphView * shared)
ui->ouncesSpinBox->setSuffix(STR_UNIT_OUNCE);
} else {
ui->ouncesSpinBox->setVisible(false);
- ui->weightSpinBox->setDecimals(3);
+ ui->weightSpinBox->setDecimals(1);
ui->weightSpinBox->setSuffix(STR_UNIT_KG);
}
@@ -588,6 +588,11 @@ void Daily::ReloadGraphs()
// sleep(3);
}
+void Daily::updateLeftSidebar() {
+ if (webView && !htmlLeftHeader.isEmpty())
+ webView->setHtml(getLeftSidebar(true));
+}
+
void Daily::hideSpaceHogs()
{
if (AppSetting->calendarVisible()) {
@@ -830,7 +835,7 @@ void Daily::on_ReloadDay()
ui->ouncesSpinBox->setSuffix(STR_UNIT_OUNCE);
} else {
ui->ouncesSpinBox->setVisible(false);
- ui->weightSpinBox->setDecimals(3);
+ ui->weightSpinBox->setDecimals(1);
ui->weightSpinBox->setSuffix(STR_UNIT_KG);
}
this->setCursor(Qt::ArrowCursor);
@@ -1545,7 +1550,7 @@ void Daily::Load(QDate date)
for (int i=0; i < available.size(); ++i) {
ChannelID code = available.at(i);
schema::Channel & chan = schema::channel[code];
- if (!chan.enabled()) continue;
+// if (!chan.enabled()) continue;
QString data;
if (chan.type() == schema::SPAN) {
val = (100.0 / hours)*(day->sum(code)/3600.0);
@@ -1688,7 +1693,7 @@ void Daily::Load(QDate date)
double kg=journal->settings[Journal_Weight].toDouble(&ok);
if (p_profile->general->unitSystem()==US_Metric) {
- ui->weightSpinBox->setDecimals(3);
+ ui->weightSpinBox->setDecimals(1);
ui->weightSpinBox->blockSignals(true);
ui->weightSpinBox->setValue(kg);
ui->weightSpinBox->blockSignals(false);
@@ -1778,7 +1783,7 @@ void Daily::UnitsChanged()
} else {
kg=(ui->weightSpinBox->value()*(ounce_convert*16.0))+(ui->ouncesSpinBox->value()*ounce_convert);
kg/=1000.0;
- ui->weightSpinBox->setDecimals(3);
+ ui->weightSpinBox->setDecimals(1);
ui->weightSpinBox->setValue(kg);
ui->ouncesSpinBox->setVisible(false);
ui->weightSpinBox->setSuffix(STR_UNIT_KG);
@@ -2276,6 +2281,10 @@ void Daily::on_weightSpinBox_valueChanged(double arg1)
double bmi=kg/(height * height);
ui->BMI->display(bmi);
ui->BMI->setVisible(true);
+ ui->BMIlabel->setVisible(true);
+ } else {
+ ui->BMI->setVisible(false);
+ ui->BMIlabel->setVisible(false);
}
}
@@ -2306,11 +2315,15 @@ void Daily::on_weightSpinBox_editingFinished()
double bmi=kg/(height * height);
ui->BMI->display(bmi);
ui->BMI->setVisible(true);
+ ui->BMIlabel->setVisible(true);
journal->settings[Journal_BMI]=bmi;
if (gv) {
g=gv->findGraph(STR_GRAPH_BMI);
if (g) g->setDay(nullptr);
}
+ } else {
+ ui->BMI->setVisible(false);
+ ui->BMIlabel->setVisible(false);
}
journal->SetChanged(true);
}
@@ -2324,6 +2337,10 @@ void Daily::on_ouncesSpinBox_valueChanged(int arg1)
double bmi=kg/(height * height);
ui->BMI->display(bmi);
ui->BMI->setVisible(true);
+ ui->BMIlabel->setVisible(true);
+ } else {
+ ui->BMI->setVisible(false);
+ ui->BMIlabel->setVisible(false);
}
}
@@ -2348,12 +2365,16 @@ void Daily::on_ouncesSpinBox_editingFinished()
double bmi=kg/(height * height);
ui->BMI->display(bmi);
ui->BMI->setVisible(true);
+ ui->BMIlabel->setVisible(true);
journal->settings[Journal_BMI]=bmi;
if (mainwin->getOverview()) {
g=mainwin->getOverview()->graphView()->findGraph(STR_GRAPH_BMI);
if (g) g->setDay(nullptr);
}
+ } else {
+ ui->BMI->setVisible(false);
+ ui->BMIlabel->setVisible(false);
}
journal->SetChanged(true);
}
diff --git a/oscar/daily.h b/oscar/daily.h
index 787a322a..97f662c3 100644
--- a/oscar/daily.h
+++ b/oscar/daily.h
@@ -66,6 +66,11 @@ public:
*/
void ResetGraphLayout();
+ /*! \fn updateLeftSidebar()
+ /brief Updtes left sidebar to reflect changes in pie chart visibility
+ */
+ void updateLeftSidebar();
+
/*! \fn graphView()
\returns the main graphView area for the Daily View
*/
diff --git a/oscar/daily.ui b/oscar/daily.ui
index 91785593..1fc521e5 100644
--- a/oscar/daily.ui
+++ b/oscar/daily.ui
@@ -1227,6 +1227,9 @@ QToolButton:pressed {
+Changes and fixes in OSCAR v1.1.0-testing-2
+
NOTE: Translations have NOT yet been updated for these changes
+
Changes and fixes in OSCAR v1.1.0-testing-1
NOTE: Translations have NOT yet been updated for these changes