mirror of
https://github.com/rizinorg/cutter.git
synced 2024-12-19 03:16:10 +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>"
|
||||
"Version " CUTTER_VERSION "<br/>"
|
||||
"Using r2-" R2_GITTAP
|
||||
"<p><b>Optional Features:</b><br/>"
|
||||
"Jupyter: %1<br/>"
|
||||
"QtWebEngine: %2</p>"
|
||||
"<h2>License</h2>"
|
||||
"This Software is released under the GNU General Public License v3.0"
|
||||
"<h2>Authors</h2>"
|
||||
"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() {}
|
||||
|
Loading…
Reference in New Issue
Block a user