Skip to content

Commit

Permalink
Adjust default provider url
Browse files Browse the repository at this point in the history
use the default url of a local ors instance for a new provider entry
  • Loading branch information
TheGreatRefrigerator authored and koebi committed Dec 8, 2021
1 parent 433bea4 commit 8f70200
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,9 @@ RELEASING:
- custom request timeouts for providers ([#122](https://github.com/GIScience/orstools-qgis-plugin/issues/122))
- exception on network failures due to unresponsive provider

### Changed
- default url for new provider entry to default ors backend url

## [1.4.0] - 2021-06-15

### Added
Expand Down
2 changes: 1 addition & 1 deletion ORStools/gui/ORStoolsDialogConfig.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ def _add_provider(self):
# Show quick user input dialog
provider_name, ok = QInputDialog.getText(self, "New ORS provider", "Enter a name for the provider")
if ok:
self._add_box(provider_name, 'https://', '', 60, new=True)
self._add_box(provider_name, 'http://localhost:8082/ors', '', 60, new=True)

def _remove_provider(self):
"""Remove list of providers from list."""
Expand Down

0 comments on commit 8f70200

Please sign in to comment.