Skip to content

Commit c421409

Browse files
authored
Merge branch 'main' into allow-custom-profiles
2 parents 876d69f + 02d66c4 commit c421409

37 files changed

+2108
-1166
lines changed

.github/workflows/ruff.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,10 @@ jobs:
1212
- uses: chartboost/ruff-action@v1
1313
with:
1414
src: ORStools
15+
version: "0.14.7"
1516
args: format --check
1617
- uses: chartboost/ruff-action@v1
1718
with:
1819
src: ORStools
20+
version: "0.14.7"
1921
args: check

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,6 @@ jobs:
3030
- uses: actions/checkout@v4
3131
- name: Run test latest
3232
run: |
33-
docker run -v ${GITHUB_WORKSPACE}:/src -w /src qgis/qgis:latest sh -c 'apt-get -y update && apt-get -y install xvfb && export ORS_API_KEY=${{ secrets.ORS_API_KEY }} && apt install python3-pytest && xvfb-run -a pytest'
33+
docker run -v ${GITHUB_WORKSPACE}:/src -w /src qgis/qgis:latest sh -c 'apt-get -y update && apt-get -y install xvfb && export ORS_API_KEY=${{ secrets.ORS_API_KEY }} && export PYTHONPATH=/usr/share/qgis/python && apt install python3-pytest && xvfb-run -a pytest'
3434
env:
3535
DOCKER_IMAGE: ${{ steps.docker-build.outputs.FULL_IMAGE_NAME }}

.pre-commit-config.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
repos:
2+
- repo: https://github.com/astral-sh/ruff-pre-commit
3+
rev: v0.14.7
4+
hooks:
5+
- id: ruff
6+
args: [--fix]

CHANGELOG.md

Lines changed: 25 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,29 @@ RELEASING:
3939
13. Upload the package to https://plugins.qgis.org/plugins/ORStools/ (Manage > Add Version)
4040
14. Create new release in GitHub with tag version and release title of `vX.X.X`
4141
-->
42+
## Unreleased
43+
### Added
44+
- Add shortcut to apply route calculation with ctrl+return
45+
- Add geocoding selection option for gui main application ([#223](https://github.com/GIScience/orstools-qgis-plugin/pull/223))
46+
47+
## [2.1.0] - 2025-12-09
48+
49+
### Added
50+
- pre-commit configuration with Ruff linter for code quality enforcement
51+
- tooltip hints in processing algorithms ([#196](https://github.com/GIScience/orstools-qgis-plugin/issues/196))
52+
- Improve isochrone color ramp with many ranges ([#264](https://github.com/GIScience/orstools-qgis-plugin/issues/264))
53+
- Enabled usage of custom endpoints in main application
54+
55+
### Changed
56+
- Improve cursor behaviour during digitization ([#357](https://github.com/GIScience/orstools-qgis-plugin/pull/357))
57+
58+
### Fixed
59+
- Delete annotations when plugin is uninstalled ([#346](https://github.com/GIScience/orstools-qgis-plugin/issues/346))
60+
- Reset hand cursor after deactivating line tool ([#342](https://github.com/GIScience/orstools-qgis-plugin/issues/342))
61+
- Check API key being set before running tests ([#358](https://github.com/GIScience/orstools-qgis-plugin/issues/358))
62+
- Set url slashes correctly with optimization requests in procs ([#347](https://github.com/GIScience/orstools-qgis-plugin/issues/347))
63+
- Qt6 incompatibility with QVariant ([#355](https://github.com/GIScience/orstools-qgis-plugin/issues/355))
64+
- Switch to QgsBlockingNetworkRequest ([#117](https://github.com/GIScience/orstools-qgis-plugin/issues/117))
4265

4366
## [2.0.1] - 2025-06-01
4467
### Added
@@ -308,7 +331,8 @@ RELEASING:
308331
- first working version of ORS Tools, after replacing OSM Tools plugin
309332

310333

311-
[unreleased]: https://github.com/GIScience/orstools-qgis-plugin/compare/v2.0.1...HEAD
334+
[unreleased]: https://github.com/GIScience/orstools-qgis-plugin/compare/v2.1.0...HEAD
335+
[2.1.0]: https://github.com/GIScience/orstools-qgis-plugin/compare/v2.0.1...v2.1.0
312336
[2.0.1]: https://github.com/GIScience/orstools-qgis-plugin/compare/v2.0.0...v2.0.1
313337
[2.0.0]: https://github.com/GIScience/orstools-qgis-plugin/compare/v1.10.0...v2.0.0
314338
[1.10.0]: https://github.com/GIScience/orstools-qgis-plugin/compare/v1.9.0...v1.10.0

0 commit comments

Comments
 (0)