Skip to content

Commit

Permalink
Fix positioning of waflles in waffle map
Browse files Browse the repository at this point in the history
  • Loading branch information
mthh committed Sep 8, 2022
1 parent b6c4e2d commit 3b43a62
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 5 deletions.
6 changes: 6 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
Changes
=======

0.9.2 (2022-09-08)
-----------------

- Fix positioning of the waffles in Waffle Map (#87).


0.9.1 (2022-08-31)
-----------------

Expand Down
2 changes: 1 addition & 1 deletion client/js/function.js
Original file line number Diff line number Diff line change
Expand Up @@ -2183,7 +2183,7 @@ function getCentroids(ref_layer_selection) {
if (!geom) {
centroids.push(null);
} else {
centroids.push(geom);
centroids.push(coordsPointOnFeature(geom));
}
}
return centroids;
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_ENV=production ./node_modules/webpack/bin/webpack.js",
"watch": "./node_modules/webpack/bin/webpack.js --watch"
},
"version": "0.9.1",
"version": "0.9.2",
"dependencies": {
"@turf/turf": "^6.5.0",
"alertifyjs": "^1.13.1",
Expand Down
4 changes: 4 additions & 0 deletions documentation/src/changelog_fr.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Historique des versions et des changements effectués

#### 0.9.2 (2022-09-08)

- Corrige le positionnement des waffles (<a href="https://github.com/riatelab/magrit/issues/87">issue Github #87</a>)

#### 0.9.1 (2022-08-31)

- Corrige le positionnement des labels lors de la réouverture d'un fichier projet s'ils avaient été déplacés manuellement (<a href="https://github.com/riatelab/magrit/issues/86">issue Github #86</a>)
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.9.1'
__version__ = '0.9.2'

0 comments on commit 3b43a62

Please sign in to comment.