Skip to content

Commit f7bceab

Browse files
author
shibatch
committed
Update submodule hash
1 parent 08579ce commit f7bceab

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

CMakeLists.txt

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ option(SUPPRESS_WIX_VALIDATION "Suppress validation in WiX" OFF)
55
option(INSTALL_QT "Install QT dlls when ENABLE_WIX is off (windows only)" OFF)
66

77
set(OCTCALC_VERSION_MAJOR 0)
8-
set(OCTCALC_VERSION_MINOR 4)
9-
set(OCTCALC_VERSION_PATCHLEVEL 1)
8+
set(OCTCALC_VERSION_MINOR 5)
9+
set(OCTCALC_VERSION_PATCHLEVEL 0)
1010
set(OCTCALC_VERSION ${OCTCALC_VERSION_MAJOR}.${OCTCALC_VERSION_MINOR}.${OCTCALC_VERSION_PATCHLEVEL})
1111
set(OCTCALC_SOVERSION ${OCTCALC_VERSION_MAJOR})
1212

@@ -43,7 +43,7 @@ endif()
4343
# TLFloat
4444

4545
set(TLFLOAT_MINIMUM_VERSION 1.8.0)
46-
set(TLFLOAT_GIT_TAG "4bd539839ccf4d442cf4bf3caf62564d63a7842a")
46+
set(TLFLOAT_GIT_TAG "1d198349174783f8e4e592770019ca138b5871bb")
4747

4848
#
4949

Jenkinsfile

+5-5
Original file line numberDiff line numberDiff line change
@@ -82,16 +82,16 @@ pipeline {
8282
}
8383
}
8484

85-
stage('aarch64 linux gcc-11') {
86-
agent { label 'aarch64 && ubuntu22' }
85+
stage('aarch64 linux gcc-14') {
86+
agent { label 'aarch64 && ubuntu24' }
8787
options { skipDefaultCheckout() }
8888
steps {
8989
cleanWs()
9090
checkout scm
9191
sh '''
92-
echo "aarch64 gcc-11 on" `hostname`
93-
export CC=gcc-11
94-
export CXX=g++-11
92+
echo "aarch64 gcc-14 on" `hostname`
93+
export CC=gcc-14
94+
export CXX=g++-14
9595
rm -rf build
9696
mkdir build
9797
cd build

src/octgui.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -285,7 +285,7 @@ void OctCalc::processButtonPress(const string &s) {
285285
} else if (s == "License") {
286286
QDesktopServices::openUrl(QUrl::fromLocalFile(QCoreApplication::applicationDirPath() + "/../share/octcalc/licenses.txt"));
287287
} else if (s == "WEB") {
288-
QDesktopServices::openUrl(QUrl("https://github.com/shibatch/octcalc", QUrl::TolerantMode));
288+
QDesktopServices::openUrl(QUrl("https://shibatch.github.io/", QUrl::TolerantMode));
289289
} else if (s == "BS") {
290290
if (selectionStart == -1) {
291291
if (cursorPos > 0) {

0 commit comments

Comments
 (0)