Skip to content

Commit

Permalink
Prepare for 0.15.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
mthh committed Apr 6, 2023
1 parent 2ad0bab commit 2ef8fca
Show file tree
Hide file tree
Showing 6 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,16 +1,16 @@
Changes
=======

Unreleased
----------
0.15.0 (2023-04-06)
-------------------

- Fix bug with null / empty geometry introduced in commit 326e3c8 / version 0.13.2.

- Improve the label creation popup to enable the creation of multiple labels at once, while being able to select the font and the font size for each field.

- Automatically stack labels for the same feature to avoid overlap (thanks to @robLittiere and @ArmelVidali / see PR #109).

- Update `smoomapy` dependency to fix some issue when bounds given by the user are very close to the min/max bounds of the data (and that could result in a class without value).
- Update ``smoomapy`` dependency to fix some issue when bounds given by the user are very close to the min/max bounds of the data (and that could result in a class without value).

0.14.1 (2023-03-29)
-------------------
Expand Down
2 changes: 1 addition & 1 deletion client/js/function.js
Original file line number Diff line number Diff line change
Expand Up @@ -5195,7 +5195,7 @@ export function stack_labels(ref_layer_name) {
// - the height of the other text labels * the number of labels ("i" counter)
map_labels[i].childNodes[y].setAttribute(
'y',
y_label + pictogram_height + i * (label_font_size + 7.5),
y_label + pictogram_height + i * (label_font_size + 5),
);
// Set a flag to know if this stack operation have already been made
map_labels[i].childNodes[y].setAttribute(
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.14.1",
"version": "0.15.0",
"node": ">=18.0.0",
"dependencies": {
"@turf/turf": "^6.5.0",
Expand Down
2 changes: 1 addition & 1 deletion 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.0 (2023-04-06)

- Correction d'un bug avec les géométries nulles / vides introduit dans le commit 326e3c8 / version 0.13.2.

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.14.1'
__version__ = '0.15.0'

0 comments on commit 2ef8fca

Please sign in to comment.