mirror of
https://github.com/rizinorg/cutter.git
synced 2024-12-24 13:55:26 +00:00
Add Optional Features Info to AboutDialog
This commit is contained in:
parent
011d113a5e
commit
f89d9c0434
@ -15,11 +15,27 @@ AboutDialog::AboutDialog(QWidget *parent) :
|
|||||||
ui->label->setText(tr("<h1>Cutter</h1>"
|
ui->label->setText(tr("<h1>Cutter</h1>"
|
||||||
"Version " CUTTER_VERSION "<br/>"
|
"Version " CUTTER_VERSION "<br/>"
|
||||||
"Using r2-" R2_GITTAP
|
"Using r2-" R2_GITTAP
|
||||||
|
"<p><b>Optional Features:</b><br/>"
|
||||||
|
"Jupyter: %1<br/>"
|
||||||
|
"QtWebEngine: %2</p>"
|
||||||
"<h2>License</h2>"
|
"<h2>License</h2>"
|
||||||
"This Software is released under the GNU General Public License v3.0"
|
"This Software is released under the GNU General Public License v3.0"
|
||||||
"<h2>Authors</h2>"
|
"<h2>Authors</h2>"
|
||||||
"xarkes, thestr4ng3r, ballessay<br/>"
|
"xarkes, thestr4ng3r, ballessay<br/>"
|
||||||
"Based on work by Hugo Teso <hugo.teso@gmail.org> (originally Iaito)."));
|
"Based on work by Hugo Teso <hugo.teso@gmail.org> (originally Iaito).")
|
||||||
|
.arg(
|
||||||
|
#ifdef CUTTER_ENABLE_JUPYTER
|
||||||
|
"ON"
|
||||||
|
#else
|
||||||
|
"OFF"
|
||||||
|
#endif
|
||||||
|
,
|
||||||
|
#ifdef CUTTER_ENABLE_QTWEBENGINE
|
||||||
|
"ON"
|
||||||
|
#else
|
||||||
|
"OFF"
|
||||||
|
#endif
|
||||||
|
));
|
||||||
}
|
}
|
||||||
|
|
||||||
AboutDialog::~AboutDialog() {}
|
AboutDialog::~AboutDialog() {}
|
||||||
|
Loading…
Reference in New Issue
Block a user