Skip to content

Commit 65218ec

Browse files
committed
v3.1.5
1 parent 448d6ea commit 65218ec

File tree

4 files changed

+11
-3
lines changed

4 files changed

+11
-3
lines changed

docs/CHANGELOG.org

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11

2+
* 3.1.5 (2023-04-11)
3+
- fix bug #92
4+
- fix bug #86
5+
26
* 3.1.4 (2023-04-05)
37
- update Qt version to 6.2.4
48
- use PySide instead of PyQt

docs/version.xml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<launchyqt>
3+
<latest version="315"/>
4+
</launchyqt>

src/Launchy/GlobalVar.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,8 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
4444

4545
namespace launchy {
4646

47-
const int LAUNCHY_VERSION = 314;
48-
const char* LAUNCHY_VERSION_STRING = "3.1.4";
47+
const int LAUNCHY_VERSION = 315;
48+
const char* LAUNCHY_VERSION_STRING = "3.1.5";
4949

5050
#if defined(ENVIRONMENT64)
5151
const char* LAUNCHY_BIT_STRING = "64";

src/Launchy/UpdateChecker.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ void UpdateChecker::manualCheck() {
106106
}
107107

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

0 commit comments

Comments
 (0)