Skip to content

Commit 2814492

Browse files
committed
cleanups prior to release
1 parent a2ff6e6 commit 2814492

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

apps/cmstapp/code/control_box/controlbox.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -212,9 +212,9 @@ ControlBox::ControlBox(const QCommandLineParser& parser, QWidget *parent)
212212
QSize sz_source = this->sizeHint();
213213
if (sz_source.width() > sz_target.width() || sz_source.height() > sz_target.height() ) {
214214
sz_source.scale(sz_target.width() - 100, sz_target.height() - 100, Qt::KeepAspectRatio); // keep min. 100 pixels around dialog
215+
resize(sz_source);
216+
move((sz_target.width() - this->width()) / 2, (sz_target.height() - this->height()) / 2); // re-center if needed
215217
}
216-
resize(sz_source);
217-
move((sz_target.width() - this->width()) / 2, (sz_target.height() - this->height()) / 2); // re-centre if needed
218218

219219
// set a flag if we sent a commandline option to log the connman inputrequest
220220
agent->setLogInputRequest(parser.isSet("log-input-request"));

apps/resource.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,9 @@ DEALINGS IN THE SOFTWARE.
3535
///////////////////////////////// Program Values ///////////////////////
3636
//
3737
// Program Info (may be visible, but don't mark for tranalation)
38-
#define VERSION "2020.03.05-1"
38+
#define VERSION "2020.03.07-1"
3939

40-
#define RELEASE_DATE "1 January 2020"
40+
#define RELEASE_DATE "7 Marc2020.03.07h 2020"
4141
#define COPYRIGHT_DATE "2013-2020"
4242

4343
// Program Values:

text/changelog.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
<b><center>Connman System Tray (CMST)</center></b>
22
<b><center>Change Log</center></b>
3-
<b> In Progress</b>
3+
<b> 2020.03.07</b>
44
<ul>
55
<li>Move offline checkbox in tab 1 (issue # 201)</li>
66
<li>Translation to Dutch by Heimen Stoffels.</li>
77
<li>Cleaned up the IPv4 and IPv6 entries in the provisioning editor.</li>
8+
<li>Fixed retain state not working for window size and position.<li>
89
<li>Additions for Connman 1.38</li>
910
<ul>
1011
<li>Add mDNS status to the details tab.</li>

0 commit comments

Comments
 (0)