Skip to content

Commit 61c0a2e

Browse files
committed
Alhumdulillah! Release version 1.4.0 🚀
1 parent 5d7fee5 commit 61c0a2e

File tree

3 files changed

+18
-6
lines changed

3 files changed

+18
-6
lines changed

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cmake_minimum_required(VERSION 3.0.2)
22

3-
project(OpenBangla-Keyboard VERSION 1.3.0)
3+
project(OpenBangla-Keyboard VERSION 1.4.0)
44
set(APP_NAME "OpenBangla-Keyboard")
55

66
## Set versions

data/io.github.openbangla.keyboard.metainfo.xml

+13-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,19 @@
1616
</p>
1717
</description>
1818
<releases>
19-
<release version="1.3.0" date="2018-04-27" urgency="medium">
19+
<release version="1.4.0" date="2018-05-04" urgency="medium">
20+
<description>
21+
<ul>
22+
<li>
23+
Fixes a serious bug https://github.com/OpenBangla/OpenBangla-Keyboard/issues/26.
24+
</li>
25+
<li>
26+
OpenBangla Keyboard will check for updates automatically and notify the user if an update is available.
27+
</li>
28+
</ul>
29+
</description>
30+
</release>
31+
<release version="1.3.0" date="2018-04-27" urgency="medium">
2032
<description>
2133
<ul>
2234
<li>

src/frontend/TopBar.cpp

+4-4
Original file line numberDiff line numberDiff line change
@@ -48,10 +48,10 @@ TopBar::TopBar(QWidget *parent) :
4848
updater = QSimpleUpdater::getInstance();
4949

5050
/* Dialogs */
51-
aboutDialog = new AboutDialog(this);
52-
layoutViewer = new LayoutViewer(this);
53-
settingsDialog = new SettingsDialog(this);
54-
autoCorrectDialog = new AutoCorrectDialog(this);
51+
aboutDialog = new AboutDialog(Q_NULLPTR);
52+
layoutViewer = new LayoutViewer(Q_NULLPTR);
53+
settingsDialog = new SettingsDialog(Q_NULLPTR);
54+
autoCorrectDialog = new AutoCorrectDialog(Q_NULLPTR);
5555

5656
ui->buttonIcon->installEventFilter(this);
5757

0 commit comments

Comments
 (0)