mirror of
https://github.com/tumic0/GPXSee.git
synced 2025-03-17 12:07:47 +01:00
Compare commits
No commits in common. "b27981fe0f7deb8f97fe68ef334f47fee9e86e98" and "be6b20270dea63c57bbb125641ef01a6b9df0bc7" have entirely different histories.
b27981fe0f
...
be6b20270d
@ -1,4 +1,4 @@
|
||||
version: 13.11.{build}
|
||||
version: 13.10.{build}
|
||||
|
||||
configuration:
|
||||
- Release
|
||||
|
10
gpxsee.pro
10
gpxsee.pro
@ -3,7 +3,7 @@ unix:!macx:!android {
|
||||
} else {
|
||||
TARGET = GPXSee
|
||||
}
|
||||
VERSION = 13.11
|
||||
VERSION = 13.10
|
||||
|
||||
|
||||
QT += core \
|
||||
@ -488,7 +488,7 @@ TRANSLATIONS = lang/gpxsee_en.ts \
|
||||
lang/gpxsee_ko.ts
|
||||
|
||||
macx {
|
||||
RESOURCES += theme-grayscale.qrc
|
||||
RESOURCES += theme-default.qrc
|
||||
|
||||
ICON = icons/app/gpxsee.icns
|
||||
QMAKE_INFO_PLIST = pkg/mac/Info.plist
|
||||
@ -508,7 +508,7 @@ macx {
|
||||
}
|
||||
|
||||
win32 {
|
||||
RESOURCES += theme-color.qrc
|
||||
RESOURCES += theme-default.qrc
|
||||
|
||||
QMAKE_TARGET_DESCRIPTION = GPXSee
|
||||
QMAKE_TARGET_COPYRIGHT = Copyright (c) 2023 Martin Tuma
|
||||
@ -552,7 +552,7 @@ win32 {
|
||||
}
|
||||
|
||||
unix:!macx:!android {
|
||||
RESOURCES += theme-grayscale.qrc
|
||||
RESOURCES += theme-unix.qrc
|
||||
|
||||
isEmpty(PREFIX):PREFIX = /usr/local
|
||||
maps.files = $$files(data/maps/*)
|
||||
@ -576,7 +576,7 @@ unix:!macx:!android {
|
||||
}
|
||||
|
||||
android {
|
||||
RESOURCES += theme-color.qrc
|
||||
RESOURCES += theme-default.qrc
|
||||
|
||||
HEADERS += src/GUI/navigationwidget.h
|
||||
SOURCES += src/GUI/navigationwidget.cpp
|
||||
|
@ -37,7 +37,7 @@ Unicode true
|
||||
; The name of the installer
|
||||
Name "GPXSee"
|
||||
; Program version
|
||||
!define VERSION "13.11"
|
||||
!define VERSION "13.10"
|
||||
|
||||
; The file to write
|
||||
OutFile "GPXSee-${VERSION}_x64.exe"
|
||||
|
@ -70,9 +70,7 @@ App::App(int &argc, char **argv) : QApplication(argc, argv)
|
||||
loadPCSs();
|
||||
Waypoint::loadSymbolIcons(ProgramPaths::symbolsDir());
|
||||
|
||||
#if QT_VERSION >= QT_VERSION_CHECK(5, 12, 0)
|
||||
QIcon::setFallbackThemeName(APP_NAME);
|
||||
#endif // QT 5.12
|
||||
|
||||
_gui = new GUI();
|
||||
|
||||
|
@ -748,7 +748,6 @@ QWidget *OptionsDialog::createSystemPage()
|
||||
QWidget *systemTab = new QWidget();
|
||||
QFormLayout *systemTabLayout = new QFormLayout();
|
||||
systemTabLayout->addRow(tr("Image cache size:"), _pixmapCache);
|
||||
systemTabLayout->addRow(tr("DEM cache size:"), _demCache);
|
||||
systemTabLayout->addRow(tr("Connection timeout:"), _connectionTimeout);
|
||||
systemTabLayout->addWidget(_enableHTTP2);
|
||||
systemTabLayout->addWidget(_useOpenGL);
|
||||
|
Loading…
x
Reference in New Issue
Block a user