Skip to content

Commit

Permalink
fix read-only settings (#51689)
Browse files Browse the repository at this point in the history
  • Loading branch information
3nids committed Feb 1, 2023
1 parent d6ba49c commit 38005d9
Showing 1 changed file with 40 additions and 30 deletions.
70 changes: 40 additions & 30 deletions resources/qgis_global_settings.ini
Expand Up @@ -19,40 +19,46 @@ formatLayerName=false
# can result in a speedup of the QGIS interface.
monitorDirectoriesInBrowser=true

[digitizing]

# Snapping enabled by default
digitizing\default_snap_enabled=false
default-snap-enabled=false

# Default snapping tolerance (distance)
digitizing\default_snapping_tolerance=12.0
default-snapping-tolerance=12.0

# Default snap to type
# Vertex, VertexAndSegment, Segment
digitizing\default_snap_type=Vertex
default-snap-type=Vertex

# Default snapping unit
# LayerUnits, Pixels, ProjectUnits
digitizing\default_snapping_tolerance_unit=Pixels
default-snapping-tolerance-unit=Pixels

# Snap on invisible feature
digitizing\snap_invisible_feature=false
snap-invisible-feature=false

[connections]

# Default XYZ tile servers to include
connections\xyz\items\OpenStreetMap\authcfg=
connections\xyz\items\OpenStreetMap\password=
connections\xyz\items\OpenStreetMap\referer=
connections\xyz\items\OpenStreetMap\url=https://tile.openstreetmap.org/{z}/{x}/{y}.png
connections\xyz\items\OpenStreetMap\username=
connections\xyz\items\OpenStreetMap\zmax=19
connections\xyz\items\OpenStreetMap\zmin=0

connections\xyz\items\Mapzen Global Terrain\authcfg=
connections\xyz\items\Mapzen Global Terrain\password=
connections\xyz\items\Mapzen Global Terrain\referer=
connections\xyz\items\Mapzen Global Terrain\url=https://s3.amazonaws.com/elevation-tiles-prod/terrarium/{z}/{x}/{y}.png
connections\xyz\items\Mapzen Global Terrain\username=
connections\xyz\items\Mapzen Global Terrain\zmax=15
connections\xyz\items\Mapzen Global Terrain\zmin=0
connections\xyz\items\Mapzen Global Terrain\interpretation=terrariumterrain
xyz\items\OpenStreetMap\authcfg=
xyz\items\OpenStreetMap\password=
xyz\items\OpenStreetMap\referer=
xyz\items\OpenStreetMap\url=https://tile.openstreetmap.org/{z}/{x}/{y}.png
xyz\items\OpenStreetMap\username=
xyz\items\OpenStreetMap\zmax=19
xyz\items\OpenStreetMap\zmin=0

xyz\items\Mapzen Global Terrain\authcfg=
xyz\items\Mapzen Global Terrain\password=
xyz\items\Mapzen Global Terrain\referer=
xyz\items\Mapzen Global Terrain\url=https://s3.amazonaws.com/elevation-tiles-prod/terrarium/{z}/{x}/{y}.png
xyz\items\Mapzen Global Terrain\username=
xyz\items\Mapzen Global Terrain\zmax=15
xyz\items\Mapzen Global Terrain\zmin=0
xyz\items\Mapzen Global Terrain\interpretation=terrariumterrain

[qgis]

# The image format selected by default when adding a WMS, i.e. image/png. If empty, the first available format is used
WMSDefaultFormat=""
Expand Down Expand Up @@ -122,6 +128,8 @@ projections\crsAccuracyWarningThreshold=0.0
# the accuracy warning threshold value (see crsAccuracyWarningThreshold)
projections\crsAccuracyIndicator=false

[app]

# Specifies a manual bearing correction to apply to bearings reported by a GPS
# device, for use when a map canvas is set to match rotation to the GPS bearing
# or when showing the GPS bearing line
Expand All @@ -132,34 +140,40 @@ gps\bearingAdjustment=0
# or when showing the GPS bearing line
gps\correctForTrueNorth=false

[core]

[gps]

# Desired flow control mode for serial port GPS connections
# "NoFlowControl" - no flow control
# "HardwareControl" - hardware flow control (RTS/CTS)
# "SoftwareControl" - software flow control (XON/XOFF)
gps\flow_control=NoFlowControl
flow-control=NoFlowControl

# Desired parity checking mode for serial port GPS connections
# "NoParity" - No parity bit it sent. This is the most common parity setting. Error detection is handled by the communication protocol.
# "EvenParity" - The number of 1 bits in each character, including the parity bit, is always even.
# "OddParity" - The number of 1 bits in each character, including the parity bit, is always odd. It ensures that at least one state transition occurs in each character.
# "SpaceParity" - Space parity. The parity bit is sent in the space signal condition. It does not provide error detection information.
# "MarkParity" - Mark parity. The parity bit is always set to the mark signal condition (logical 1). It does not provide error detection information.
gps\parity=NoParity
parity=NoParity

# Desired data bits in a frame for serial port GPS connections
# "Data5" - The number of data bits in each character is 5. It is used for Baudot code. It generally only makes sense with older equipment such as teleprinters.
# "Data6" - The number of data bits in each character is 6. It is rarely used.
# "Data7" - The number of data bits in each character is 7. It is used for true ASCII. It generally only makes sense with older equipment such as teleprinters.
# "Data8" - The number of data bits in each character is 8. It is used for most kinds of data, as this size matches the size of a byte. It is almost universally used in newer applications.
gps\data_bits=Data8
data-bits=Data8

# Desired number of stop bits in a frame for serial port GPS connections
# "OneStop" - 1 stop bit.
# "OneAndHalfStop" - 1.5 stop bits. This is only for the Windows platform.
# "TwoStop" - 2 stop bits.
gps\stop_bits=OneStop
stop-bits=OneStop

# Default for GPS leap seconds correction as of 2019-06-19
leapSecondsCorrection=18

[core]

# Whether or not to anonymize newly created projects
# If set to true, then project metadata items like AUTHOR and CREATION DATE
Expand Down Expand Up @@ -249,10 +263,6 @@ default_checks=
enable_problem_resolution=false


[gps]
# Default for GPS leap seconds correction as of 2019-06-19
leapSecondsCorrection=18

# Path to (or command name for) the GPSBabel executable file
gpsbabelPath=gpsbabel

Expand Down

0 comments on commit 38005d9

Please sign in to comment.