Skip to content

Commit

Permalink
Fixing UI
Browse files Browse the repository at this point in the history
  • Loading branch information
llamaret committed Dec 2, 2019
1 parent ed94765 commit 5425b03
Show file tree
Hide file tree
Showing 10 changed files with 692 additions and 329 deletions.
Binary file modified icons/list_background.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
13 changes: 7 additions & 6 deletions icons/preview.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 3 additions & 3 deletions icons/settings.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified translations/mystiq_es.qm
Binary file not shown.
Binary file modified translations/mystiq_es_ES.qm
Binary file not shown.
370 changes: 316 additions & 54 deletions translations/mystiq_es_ES.ts

Large diffs are not rendered by default.

335 changes: 188 additions & 147 deletions translations/mystiq_fr.ts

Large diffs are not rendered by default.

8 changes: 8 additions & 0 deletions ui/aboutdialog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,8 @@ AboutDialog::AboutDialog(QWidget *parent) :

QTextBrowser *info = ui->txtInfo;
QTextBrowser *translators = ui->txtTranslators;
QTextBrowser *license = ui->txtLicense;
QTextBrowser *changelog = ui->txtChangelog;

info->setOpenExternalLinks(true);

Expand Down Expand Up @@ -99,6 +101,12 @@ AboutDialog::AboutDialog(QWidget *parent) :
translators->setPalette(p);
translators->setFrameShape(QTextBrowser::NoFrame);

license->setPalette(p);
license->setFrameShape(QTextBrowser::NoFrame);

changelog->setPalette(p);
changelog->setFrameShape(QTextBrowser::NoFrame);

// Make the window size fixed.
this->adjustSize();
this->setMinimumWidth(this->width());
Expand Down
287 changes: 169 additions & 118 deletions ui/aboutdialog.ui

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion version.h
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
#define VERSION_H

// human-readable version string (VersionName)
#define VERSION_STRING "0.3.0"
#define VERSION_STRING "0.3.1"

// machine-readable version id (VersionId)
// the update-checker compares versions using this integer
Expand Down

0 comments on commit 5425b03

Please sign in to comment.