We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1669284 commit c243c11Copy full SHA for c243c11
src/app/qml/dialogs/AboutDialog.qml
@@ -3,6 +3,7 @@
3
import QtQuick
4
import QtQuick.Controls
5
import QtQuick.Layouts
6
+import ScratchCPP
7
import ScratchCPP.Ui
8
import ScratchCPP.UiComponents
9
@@ -33,6 +34,16 @@ CustomDialog {
33
34
text: qsTr("Version: %1").arg(Qt.application.version)
35
}
36
37
+ Label {
38
+ //: For example "SomeLibrary version: 0.1.0"
39
+ text: qsTr("%1 version: %2").arg("libscratchcpp").arg(LibraryInfo.libscratchcppVersion())
40
+ }
41
+
42
43
44
+ text: qsTr("%1 version: %2").arg("ScratchCPP Render").arg(LibraryInfo.scratchcppRenderVersion())
45
46
47
Label {
48
text: qsTr("Revision: %1").arg(AppInfo.revision())
49
0 commit comments