diff options
author | 2023-05-17 22:00:14 +0530 | |
---|---|---|
committer | 2023-05-17 22:00:14 +0530 | |
commit | c235b8aef0a0959ed1791629b93123104f29fab4 (patch) | |
tree | 112a73b58e0a665ae3d120758c17e05083980a7a | |
parent | 5f10a0f9657358fcd86c55ec065f3855bad0c160 (diff) | |
download | whatsie-c235b8aef0a0959ed1791629b93123104f29fab4.tar.gz whatsie-c235b8aef0a0959ed1791629b93123104f29fab4.zip |
chore: bump version to 4.14v4.14.0
Diffstat (limited to '')
-rw-r--r-- | dist/linux/com.ktechpit.whatsie.appdata.xml | 1 | ||||
-rw-r--r-- | src/WhatsApp.pro | 9 |
2 files changed, 9 insertions, 1 deletions
diff --git a/dist/linux/com.ktechpit.whatsie.appdata.xml b/dist/linux/com.ktechpit.whatsie.appdata.xml index f579959..230df50 100644 --- a/dist/linux/com.ktechpit.whatsie.appdata.xml +++ b/dist/linux/com.ktechpit.whatsie.appdata.xml @@ -64,6 +64,7 @@ </provides> <content_rating type="oars-1.0" /> <releases> + <release version="4.14" date="2023-05-17" /> <release version="4.9" date="2022-09-14" /> <release version="4.4" date="2022-06-18" /> </releases> diff --git a/src/WhatsApp.pro b/src/WhatsApp.pro index 695f97a..72a8535 100644 --- a/src/WhatsApp.pro +++ b/src/WhatsApp.pro @@ -8,6 +8,10 @@ QT += core gui webengine webenginewidgets positioning CONFIG += c++17 +#CONFIG += sanitizer +#CONFIG += sanitize_address +#CONFIG += sanitize_memory + greaterThan(QT_MAJOR_VERSION, 4): QT += widgets !qtConfig(webengine-spellchecker) { @@ -50,7 +54,7 @@ BUILD_TIMESTAMP="\\\"$$system(date -u +\""%Y-%m-%dT%H:%M:%SUTC\"")\\\"" DEFINES += GIT_HASH=$$GIT_HASH GIT_BRANCH=$$GIT_BRANCH BUILD_TIMESTAMP=$$BUILD_TIMESTAMP # Set program version -VERSION = 4.13 +VERSION = 4.14 DEFINES += VERSIONSTR=\\\"$${VERSION}\\\" # You can also make your code fail to compile if you use deprecated APIs. @@ -71,6 +75,7 @@ SOURCES += \ rateapp.cpp \ settingswidget.cpp \ sunclock.cpp \ + theme.cpp \ utils.cpp \ webenginepage.cpp \ webview.cpp \ @@ -94,8 +99,10 @@ HEADERS += \ permissiondialog.h \ rateapp.h \ requestinterceptor.h \ + settingsmanager.h \ settingswidget.h \ sunclock.hpp \ + theme.h \ utils.h \ webenginepage.h \ webview.h \ |