Skip to content

Commit

Permalink
v3.1.5
Browse files Browse the repository at this point in the history
  • Loading branch information
samsonwang committed Apr 11, 2023
1 parent 448d6ea commit 65218ec
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 3 deletions.
4 changes: 4 additions & 0 deletions docs/CHANGELOG.org
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@

* 3.1.5 (2023-04-11)
- fix bug #92
- fix bug #86

* 3.1.4 (2023-04-05)
- update Qt version to 6.2.4
- use PySide instead of PyQt
Expand Down
4 changes: 4 additions & 0 deletions docs/version.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<launchyqt>
<latest version="315"/>
</launchyqt>
4 changes: 2 additions & 2 deletions src/Launchy/GlobalVar.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.

namespace launchy {

const int LAUNCHY_VERSION = 314;
const char* LAUNCHY_VERSION_STRING = "3.1.4";
const int LAUNCHY_VERSION = 315;
const char* LAUNCHY_VERSION_STRING = "3.1.5";

#if defined(ENVIRONMENT64)
const char* LAUNCHY_BIT_STRING = "64";
Expand Down
2 changes: 1 addition & 1 deletion src/Launchy/UpdateChecker.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ void UpdateChecker::manualCheck() {
}

void UpdateChecker::getVersionInfo() {
m_mgr->get(QNetworkRequest(QUrl("https://launchy.wangzhl.com/version.xml")));
m_mgr->get(QNetworkRequest(QUrl("https://samsonwang.github.io/LaunchyQt/version.xml")));
qDebug() << "UpdateChecker::checkUpdate, ssl:" << QSslSocket::supportsSsl();
qDebug() << "UpdateChecker::checkUpdate, qt ssl:" << QSslSocket::sslLibraryBuildVersionString();
qDebug() << "UpdateChecker::checkUpdate, current ssl:" << QSslSocket::sslLibraryVersionString();
Expand Down

0 comments on commit 65218ec

Please sign in to comment.