diff --git a/app/main.cpp b/app/main.cpp
index 0cf128f..a49bedf 100644
--- a/app/main.cpp
+++ b/app/main.cpp
@@ -48,6 +48,8 @@ int main(int argc, char *argv[])
// Manage command line arguments from the cpp side
QStringList args = app.arguments();
if (args.contains("-h") || args.contains("--help")) {
+ // BUG: This usage help text goes to stderr, should go to stdout.
+ // BUG: First line of output is surrounded by double quotes.
qDebug() << "Usage: " + args.at(0) + " [--default-settings] [--workdir
] [--program ] [-p|--profile ] [--fullscreen] [-h|--help]";
qDebug() << " --default-settings Run cool-retro-term with the default settings";
qDebug() << " --workdir Change working directory to 'dir'";
@@ -59,6 +61,11 @@ int main(int argc, char *argv[])
return 0;
}
+ if (args.contains("-v") || args.contains("--version")) {
+ qDebug() << "cool-retro-term 1.0";
+ return 0;
+ }
+
// Manage default command
QStringList cmdList;
if (args.contains("-e")) {
diff --git a/app/qml/Components/SizedLabel.qml b/app/qml/Components/SizedLabel.qml
index a3dbfea..23a38b6 100644
--- a/app/qml/Components/SizedLabel.qml
+++ b/app/qml/Components/SizedLabel.qml
@@ -22,7 +22,7 @@
import QtQuick 2.0
import QtQuick.Controls 1.0
-// This component is simply a label with a predifined size.
+// This component is simply a label with a predefined size.
// Used to improve alignment.
Item {