Skip to content

Commit

Permalink
Version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
Admiral-Fish committed Dec 2, 2018
1 parent b617abc commit c4f8d67
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
3 changes: 1 addition & 2 deletions Forms/MainWindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -135,9 +135,8 @@ void MainWindow::checkUpdates()
if (lastOpened.daysTo(today) > 0)
{
// Access current version number from github
// TODO: Change this to check from master branch eventually
QNetworkAccessManager manager;
QNetworkRequest request(QUrl("https://raw.githubusercontent.com/Admiral-Fish/PokeFinder/develop/version.txt"));
QNetworkRequest request(QUrl("https://raw.githubusercontent.com/Admiral-Fish/PokeFinder/master/version.txt"));
QNetworkReply *reply = manager.get(request);

QEventLoop loop;
Expand Down
2 changes: 1 addition & 1 deletion Forms/MainWindow.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ class MainWindow : public QMainWindow
Ui::MainWindow *ui;
QTranslator translator;
QActionGroup *langGroup;
const QString VERSION = "2.1.0";
const QString VERSION = "2.2.0";

Stationary3 *stationary3 = nullptr;
Wild3 *wild3 = nullptr;
Expand Down
2 changes: 1 addition & 1 deletion Forms/MainWindow.ui
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
</size>
</property>
<property name="windowTitle">
<string notr="true">PokéFinder 2.1.0</string>
<string notr="true">PokéFinder 2.2.0</string>
</property>
<property name="windowIcon">
<iconset>
Expand Down

0 comments on commit c4f8d67

Please sign in to comment.