-
Notifications
You must be signed in to change notification settings - Fork 129
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
prepare for Qt 6.8 deprecations #1346
Conversation
Also, the exif writer now prefers to establish a timestamp from GPS_IFD_TAG_DATESTAMP/GPS_IFD_TAG_TIMESTAMP if they exist, as the exif reader does.
which appeared with 6.7.0
There is also a fix for a QDomDocument deprecation in the gui upgrade check. |
qt version depependent defined constants.
I beleive the original intent of the writer is to create the gps tags from a waypoint.
The warnings (and counts) being fixed are:
|
1. allow builds to succeed without webengine by default. This is needed by CI until aqt catches up. 2. macos minos change for 6.8 3. add macos 6.8.0 to CI, remove macos-12 build.
This PR automatically disables the GUI map preview feature if QtWebEngine and/or QtWebChannel are not found. This allows CI to work with aqt 3.1.18. miurahr/aqtinstall#803, albeit without QtWebEngine. 6.8.0 builds are added to CI for windows and macos-15 (beta). The macos-12 build is removed, the runner is being deprecated. actions/runner-images#10721. |
Thanx for handling all these fiddly bits.
…On Tue, Oct 8, 2024 at 7:46 AM tsteven4 ***@***.***> wrote:
Merged #1346 <#1346> into master.
—
Reply to this email directly, view it on GitHub
<#1346 (comment)>, or
unsubscribe
<https://github.com/notifications/unsubscribe-auth/ACCSD3YLLC5HTVNKLGY7B73Z2PH3HAVCNFSM6AAAAABPA72XLCVHI2DSMVQWIX3LMV45UABCJFZXG5LFIV3GK3TUJZXXI2LGNFRWC5DJN5XDWMJUGU2TMMRTHE3DKMQ>
.
You are receiving this because you are subscribed to this thread.Message
ID: ***@***.***>
|
This avoids deprecation warning with CMAKE_BUILD_TYPE=Release. QDateTime is transitioning from Qt::TimeSpec to QTimeZone. Lightweight times zones for LocalTime and UTC were added in 6.5.0. Warnings are appearing in pre-release versions of 6.8.0.
Also, the exif writer now prefers to establish a timestamp fromGPS_IFD_TAG_DATESTAMP/GPS_IFD_TAG_TIMESTAMP if possible, as the
exif reader does.