geo/qgis: update to 3.26.3
backport fix for https://github.com/qgis/QGIS/issues/49513
This commit is contained in:
parent
52d2db2dc1
commit
69296a8944
@ -6,12 +6,12 @@ COMMENT = desktop geographical information system
|
||||
|
||||
DPB_PROPERTIES = parallel
|
||||
|
||||
DISTNAME = qgis-3.26.2
|
||||
DISTNAME = qgis-3.26.3
|
||||
EXTRACT_SUFX = .tar.bz2
|
||||
CATEGORIES = geo x11
|
||||
DEBUG_PACKAGES =${BUILD_PACKAGES}
|
||||
|
||||
SHARED_LIBS = qgis_core 63.0 \
|
||||
SHARED_LIBS = qgis_core 64.0 \
|
||||
qgis_app 41.0 \
|
||||
qgis_gui 48.1 \
|
||||
qgis_analysis 20.0 \
|
||||
|
@ -1,2 +1,2 @@
|
||||
SHA256 (qgis-3.26.2.tar.bz2) = imlVeAeIrzxBS8SYTHTAZVz1f0/vOTLCWe04DRkfWMM=
|
||||
SIZE (qgis-3.26.2.tar.bz2) = 151926937
|
||||
SHA256 (qgis-3.26.3.tar.bz2) = UStk4neLzqAtzHChxPrCzEe0+aaFpisI7sDsI2NhBOY=
|
||||
SIZE (qgis-3.26.3.tar.bz2) = 151276080
|
||||
|
24
geo/qgis/patches/patch-src_gui_qgsowssourceselect_cpp
Normal file
24
geo/qgis/patches/patch-src_gui_qgsowssourceselect_cpp
Normal file
@ -0,0 +1,24 @@
|
||||
https://github.com/qgis/QGIS/issues/49513
|
||||
https://github.com/qgis/QGIS/pull/49997
|
||||
|
||||
Index: src/gui/qgsowssourceselect.cpp
|
||||
--- src/gui/qgsowssourceselect.cpp.orig
|
||||
+++ src/gui/qgsowssourceselect.cpp
|
||||
@@ -273,7 +273,7 @@ QgsNewHttpConnection::ConnectionType connectionTypeFro
|
||||
void QgsOWSSourceSelect::mNewButton_clicked()
|
||||
{
|
||||
const QgsNewHttpConnection::ConnectionType type = connectionTypeFromServiceString( mService );
|
||||
- QgsNewHttpConnection *nc = new QgsNewHttpConnection( this, type, "/qgis/connections-" + mService.toLower() + '/' );
|
||||
+ QgsNewHttpConnection *nc = new QgsNewHttpConnection( this, type, mService.toUpper() );
|
||||
|
||||
if ( nc->exec() )
|
||||
{
|
||||
@@ -287,7 +287,7 @@ void QgsOWSSourceSelect::mNewButton_clicked()
|
||||
void QgsOWSSourceSelect::mEditButton_clicked()
|
||||
{
|
||||
const QgsNewHttpConnection::ConnectionType type = connectionTypeFromServiceString( mService );
|
||||
- QgsNewHttpConnection *nc = new QgsNewHttpConnection( this, type, "/qgis/connections-" + mService.toLower() + '/', mConnectionsComboBox->currentText() );
|
||||
+ QgsNewHttpConnection *nc = new QgsNewHttpConnection( this, type, mService.toUpper(), mConnectionsComboBox->currentText() );
|
||||
|
||||
if ( nc->exec() )
|
||||
{
|
@ -4764,6 +4764,7 @@ share/qgis/resources/symbology-style.xml
|
||||
share/qgis/resources/themes/
|
||||
share/qgis/resources/themes/Blend of Gray/
|
||||
share/qgis/resources/themes/Blend of Gray/icons/
|
||||
share/qgis/resources/themes/Blend of Gray/icons/arrow-down-disabled.svg
|
||||
share/qgis/resources/themes/Blend of Gray/icons/arrow-down.svg
|
||||
share/qgis/resources/themes/Blend of Gray/icons/arrow-up.svg
|
||||
share/qgis/resources/themes/Blend of Gray/icons/caret-down.svg
|
||||
@ -4788,6 +4789,7 @@ share/qgis/resources/themes/Blend of Gray/style.qss
|
||||
share/qgis/resources/themes/Blend of Gray/variables.qss
|
||||
share/qgis/resources/themes/Night Mapping/
|
||||
share/qgis/resources/themes/Night Mapping/icons/
|
||||
share/qgis/resources/themes/Night Mapping/icons/arrow-down-disabled.svg
|
||||
share/qgis/resources/themes/Night Mapping/icons/arrow-down.svg
|
||||
share/qgis/resources/themes/Night Mapping/icons/arrow-up.svg
|
||||
share/qgis/resources/themes/Night Mapping/icons/caret-down.svg
|
||||
|
Loading…
x
Reference in New Issue
Block a user