Skip to content

Commit

Permalink
New minor version
Browse files Browse the repository at this point in the history
  • Loading branch information
NicoVarg99 committed Feb 6, 2022
1 parent 5b3bfde commit ddd55eb
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ In order to have Koi start at login, you can do so with the Plasma System Settin

### Get Koi

Lastest Koi version: 0.1.2 [beta]
Lastest Koi version: 0.1.3 [beta]

#### Dependencies

Expand Down
6 changes: 5 additions & 1 deletion src/about.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ About::About(QWidget *parent) :
QApplication::setApplicationName("Koi");
ui->titleLabel->setText(QApplication::applicationName());
QString pgrmVersion = "Version ";
QApplication::setApplicationVersion("0.1.1");
QApplication::setApplicationVersion("0.1.3");
ui->verLabel->setText(pgrmVersion + QApplication::applicationVersion());
QString qtVersion = "<ul><li>Qt ";
qtVersion += qVersion();
Expand All @@ -33,6 +33,10 @@ About::About(QWidget *parent) :
ui->ctpLib->setText(ctplLabel);
ui->ctpLib->setTextFormat(Qt::RichText);
ui->ctpLib->setOpenExternalLinks(1);
QString sunriseLabel = "<ul><li><a href=\"https://github.com/signetica/SunRise\">SunRise</a></li></ul>";
ui->sunriseLib->setText(sunriseLabel);
ui->sunriseLib->setTextFormat(Qt::RichText);
ui->sunriseLib->setOpenExternalLinks(1);
ui->tabWidget->setCurrentIndex(0);
}

Expand Down
13 changes: 10 additions & 3 deletions src/ui/about.ui
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<x>0</x>
<y>0</y>
<width>505</width>
<height>376</height>
<height>378</height>
</rect>
</property>
<property name="sizePolicy">
Expand Down Expand Up @@ -87,7 +87,7 @@
<enum>QTabWidget::Rounded</enum>
</property>
<property name="currentIndex">
<number>0</number>
<number>1</number>
</property>
<widget class="QWidget" name="aboutTab">
<attribute name="title">
Expand Down Expand Up @@ -202,7 +202,7 @@ text-align: left;</string>
</property>
</widget>
</item>
<item row="4" column="0" colspan="2">
<item row="5" column="0" colspan="2">
<spacer name="verticalSpacer_5">
<property name="orientation">
<enum>Qt::Vertical</enum>
Expand All @@ -229,6 +229,13 @@ text-align: left;</string>
</property>
</widget>
</item>
<item row="4" column="0">
<widget class="QLabel" name="sunriseLib">
<property name="text">
<string>SunRise Link</string>
</property>
</widget>
</item>
</layout>
</widget>
<widget class="QWidget" name="authorTab">
Expand Down

0 comments on commit ddd55eb

Please sign in to comment.