0.9.6 Version bump, graph title alignment fix

This commit is contained in:
Mark Watkins 2014-05-14 16:22:46 +10:00
parent 5ebc7dc283
commit 62af95fbbb
4 changed files with 20 additions and 13 deletions

View File

@ -289,7 +289,7 @@ void gGraph::paint(QPainter &painter, const QRegion &region)
y = yh;
x = fm.width(title());
//GetTextExtent(title(),x,y,mediumfont);
title_x = yh * 2;
title_x = float(yh) * 1.5;
QString & txt = title();
graphView()->AddTextQue(txt, marginLeft() + title_x + 4, originY + height / 2 - y / 2, 90, Qt::black, mediumfont);

View File

@ -1,6 +1,6 @@
<html>
<body>
<h1><image src="qrc:/docs/sheep.png" width=64 height=64>SleepyHead v0.9.5 <b>BETA</b></h1>
<h1><image src="qrc:/docs/sheep.png" width=64 height=64>SleepyHead v0.9.6 <b>BETA</b></h1>
<p><h2><b>Release Notes</b></h2></p>
<p>Greetings!</p>
@ -9,6 +9,15 @@
<b>New features & bugs fixes in this Update:</b><br/>
<list>
<li>Added ability to pin graphs to keep them on screen</li>
<li>Fixed tranlation loading on Mac</li>
<li>Updated Dutch Tranlsations (Thanks Arie)</li>
<li>Fixed overview graph legends showing wrong details</li>
<li>F12 to Screenshot restored on Apple Mac platform</li>
<li>Added CSV importer for Somnopose iOS Sleep Position application data</li>
<li>Added user information to Statistics page</li>
<li>Datacard autodetection ability</li>
<li>Philips Respironics 60 series fixes</li>
<li>Retina display fixes for Mac platform</li>
<li>Introduced yAxis Scaling modes</li>
<li>Cleaned up mouse handling underneath</li>

View File

@ -2,20 +2,18 @@
<body>
<div align=center>
<h2><image src='qrc:/docs/sheep.png' width=64 height=64>SleepyHead <b>BETA</b></h2>
<h3><b>Update Notes for v0.9.4-5</b></h3>
<h3><b>Update Notes for v0.9.6</b></h3>
</div>
<b>Changes in this version</b><br/>
<list>
<li>Added ability to pin graphs to keep them on screen</li>
<li>Fixed tranlation loading on Mac</li>
<li>Updated Dutch Tranlsations (Thanks Arie)</li>
<li>Fixed overview graph legends showing wrong details</li>
<li>F12 to Screenshot restored on Apple Mac platform</li>
<li>Added CSV importer for Somnopose iOS Sleep Position application data</li>
<li>Added user information to Statistics page</li>
<li>Datacard autodetection ability</li>
<li>Philips Respironics 60 series fixes</li>
<li>Switched from OpenGL to Qt QPainter backend</li>
<li>Switched to Qt's pixmap caching engine</li>
<li>Fix ResMed session grouping bug that caused session double-ups</li>
<li>Fix EDF importer glitch on windows builds that led to faulty graph displays</li>
<li>Fixed CPAP card autoscanner on Windows platform</li>
<li>Added timeout dialog to CPAP card autoscanner</li>
<li>Microsoft compiler fixes</li>
</list>
<p>Sleep Well!</p>

View File

@ -16,7 +16,7 @@
const int major_version = 0; // incompatible API changes
const int minor_version = 9; // new features that don't break things
const int patch_number = 5; // bugfixes, revisions
const int patch_number = 6; // bugfixes, revisions
#ifdef TEST_BUILD
const QString ReleaseStatus = "testing";