From 13c71bfa4affc5dcc80d2c022941c293324432ac Mon Sep 17 00:00:00 2001 From: Adam Treat Date: Mon, 24 Apr 2023 13:39:45 -0400 Subject: [PATCH] Make clear this is optional and bump the version. --- CMakeLists.txt | 2 +- qml/ThumbsDownDialog.qml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index b8711e55..41435e56 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -14,7 +14,7 @@ endif() set(APP_VERSION_MAJOR 2) set(APP_VERSION_MINOR 2) -set(APP_VERSION_PATCH 1) +set(APP_VERSION_PATCH 2) set(APP_VERSION "${APP_VERSION_MAJOR}.${APP_VERSION_MINOR}.${APP_VERSION_PATCH}") # Generate a header file with the version number diff --git a/qml/ThumbsDownDialog.qml b/qml/ThumbsDownDialog.qml index c8ea27d7..1ee21daa 100644 --- a/qml/ThumbsDownDialog.qml +++ b/qml/ThumbsDownDialog.qml @@ -37,7 +37,7 @@ Dialog { anchors.left: img.right anchors.leftMargin: 30 anchors.verticalCenter: img.verticalCenter - text: qsTr("Please edit the text below to provide a better response...") + text: qsTr("Please edit the text below to provide a better response. (optional)") color: theme.textColor } }