Skip to content

Commit

Permalink
Updated updater
Browse files Browse the repository at this point in the history
  • Loading branch information
uglide committed Oct 22, 2013
1 parent 8cf4db8 commit 0130251
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions redis-desktop-manager/source/updater/Updater.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,14 @@ Updater::Updater()
#ifdef Q_OS_LINUX
platform = "linux";
#endif

#ifdef Q_OS_MACX
platform = "osx";
#endif

QUrl updateUrl(
QString("http://%1/get-update.php?version=%2&platform=%3")
.arg("glide.name/projects/redis-desktop-manager")
QString("http://%1/get-update?version=%2&platform=%3")
.arg("redisdesktop.com")
.arg(QCoreApplication::applicationVersion())
.arg(platform)
);
Expand Down

0 comments on commit 0130251

Please sign in to comment.