Skip to content

Commit

Permalink
Update About dialog and version
Browse files Browse the repository at this point in the history
  • Loading branch information
ra3xdh committed Oct 27, 2018
1 parent f23ba41 commit a7adcd2
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 2 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.0.20
0.0.21
15 changes: 14 additions & 1 deletion qucs/dialogs/aboutdialog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,12 @@
AboutDialog::AboutDialog(QWidget *parent)
: QDialog(parent)
{
qucs_sDevs = {{
"Vadim Kuznetsov - " + tr("project maintainer, simuator interface and GUI design"),
"Mike Brinson - " + tr("component models, documentation"),
"Tom Russo - " + tr("Xyce integration"),
"Maria Dubinina - " + tr("testing, general bugfixes")
}};
currAuths = {{
"Guilherme Brondani Torri - " + tr("GUI programmer, Verilog-A dynamic loader"),
"Mike Brinson - " + tr("testing, modelling and documentation, tutorial contributor"),
Expand Down Expand Up @@ -217,7 +223,14 @@ void AboutDialog::currentChangedSlot(int index) {
void AboutDialog::setAuthorsText() {

QString authorsText;
authorsText = tr("Current Qucs Team:") + "<ul>";
authorsText = tr("Qucs-S subproject team:");
authorsText += "<ul>";
for(QString& tStr : qucs_sDevs) {
authorsText += ("<li>" + tStr + "</li>");
}
authorsText += "</ul>";

authorsText += tr("Based on Qucs project developed by:") + "<ul>";

for(QString& tStr : currAuths) {
authorsText += ("<li>" + tStr + "</li>");
Expand Down
1 change: 1 addition & 0 deletions qucs/dialogs/aboutdialog.h
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ class AboutDialog : public QDialog {
void setAuthorsText(void);
void setTrText(void);

std::array<QString, 4> qucs_sDevs;
std::array<QString, 9> currAuths; // current Qucs authors
std::array<QString, 12> prevDevs; // previous Qucs developers
std::array<QString, 18> trAuths; // Qucs translators
Expand Down

0 comments on commit a7adcd2

Please sign in to comment.