Skip to content

Commit

Permalink
Prepare for 0.15.2 release
Browse files Browse the repository at this point in the history
  • Loading branch information
mthh committed Apr 13, 2023
1 parent 61c7247 commit b4075fe
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
Changes
=======

Unreleased
----------
0.15.2 (2023-04-13)
-------------------

- Fix mouseup behaviour when drawing a rectangle layout feature (the cursor was still moving the map after drawing the rectangle even after the click was released).
- Fix the mouseup behaviour when drawing a rectangle layout feature (the cursor was still moving the map after drawing the rectangle even after the click was released).

- Fix the mouseup behaviour when zooming with a rectangular selection (the cursor was still moving the map after drawing the rectangle even after the click was released).

Expand Down
4 changes: 2 additions & 2 deletions client/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"minify": "NODE_OPTIONS=--openssl-legacy-provider NODE_ENV=production ./node_modules/webpack/bin/webpack.js",
"watch": "NODE_OPTIONS=--openssl-legacy-provider ./node_modules/webpack/bin/webpack.js --watch"
},
"version": "0.15.1",
"version": "0.15.2",
"node": ">=18.0.0",
"dependencies": {
"@turf/turf": "^6.5.0",
Expand Down
4 changes: 2 additions & 2 deletions documentation/src/changelog_fr.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Historique des versions et des changements effectués

#### Unreleased
#### 0.15.2 (2023-04-13)

- Correction du comportement "mouseup" lors du dessin d'un rectangle (le curseur continuait à déplacer la carte après avoir dessiné le rectangle, même après avoir relâché le clic).

Expand All @@ -16,7 +16,7 @@

- Amélioration du popup de création d'étiquettes pour permettre la création de plusieurs étiquettes à la fois, tout en étant capable de sélectionner la police et la taille de la police pour chaque champ.

- Empiler automatiquement les étiquettes pour chaque entités afin d'éviter les chevauchements (merci à @robLittiere et à @ArmelVidali pour la contribution <a href="https://github.com/riatelab/magrit/pull/109">contribution #109</a>).
- Empiler automatiquement les étiquettes pour chaque entité afin d'éviter les chevauchements (merci à @robLittiere et à @ArmelVidali pour la contribution <a href="https://github.com/riatelab/magrit/pull/109">contribution #109</a>).

- Mise à jour de la dépendance `smoomapy` pour corriger un problème lorsque les limites données par l'utilisateur sont très proches des limites min/max des données (et que cela pouvait résulter en une classe sans valeur).

Expand Down
2 changes: 1 addition & 1 deletion magrit_app/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# -*- coding: utf-8 -*-

__version__ = '0.15.1'
__version__ = '0.15.2'

0 comments on commit b4075fe

Please sign in to comment.