Skip to content

Commit

Permalink
Add libz and vbump
Browse files Browse the repository at this point in the history
  • Loading branch information
ibsh committed Aug 15, 2016
1 parent 23c1003 commit 2a2229a
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 5 deletions.
1 change: 1 addition & 0 deletions is_KeyFinder.pro
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ unix|macx {
LIBS += -lavformat
LIBS += -lavutil
LIBS += -ltag
LIBS += -lz
}

macx {
Expand Down
2 changes: 1 addition & 1 deletion source/_VERSION.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,6 @@
#define _VERSION_H

const int VERSION_MAJOR = 2;
const int VERSION_MINOR = 1;
const int VERSION_MINOR = 2;

#endif // _VERSION_H
15 changes: 13 additions & 2 deletions source/guiabout.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,19 @@ AboutDialog::AboutDialog(QWidget *parent): QDialog(parent), ui(new Ui::AboutDial
ui->label_1_vn->setText(GuiStrings::getInstance()->appName() + br + "v" + QString::number(VERSION_MAJOR) + "." + QString::number(VERSION_MINOR));
//: The copyright notice in the About window; includes the year and author name at %1
ui->label_2_cp->setText(tr("Copyright %1").arg("2011-" + QString::number(QDate::currentDate().year())) + br + "Ibrahim Sha'ath");
//: The middle section of the About window; includes the app name at %1
ui->label_5_includes->setText(tr("%1 includes library code from:").arg(GuiStrings::getInstance()->appName()));

QString mid;

//: Icon citation on the About window; includes the app name at %1 and the designer name at %2
mid += tr("The %1 icon was designed by %2.").arg(GuiStrings::getInstance()->appName()).arg("Ollin Boer Bohan");

mid += br;
mid += br;

//: Library list header on the About window; includes the app name at %1
mid += tr("%1 includes library code from:").arg(GuiStrings::getInstance()->appName());

ui->label_5_includes->setText(mid);

QString libs;
libs += "Qt (qt-project.org)" + br;
Expand Down
10 changes: 8 additions & 2 deletions translations/is_keyfinder_en_GB.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,15 @@
<translation>Copyright %1</translation>
</message>
<message>
<location filename="../source/guiabout.cpp" line="37"/>
<location filename="../source/guiabout.cpp" line="40"/>
<source>The %1 icon was designed by %2.</source>
<extracomment>Icon citation on the About window; includes the app name at %1 and the designer name at %2</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../source/guiabout.cpp" line="46"/>
<source>%1 includes library code from:</source>
<extracomment>The middle section of the About window; includes the app name at %1</extracomment>
<extracomment>Library list header on the About window; includes the app name at %1</extracomment>
<translation>%1 includes library code from:</translation>
</message>
</context>
Expand Down

0 comments on commit 2a2229a

Please sign in to comment.