This commit is contained in:
David Larlet 2023-07-01 11:44:24 -04:00
parent a4759763e3
commit e03bbeadfc
No known key found for this signature in database
GPG key ID: 3E2953A359E7E7BD
4 changed files with 30 additions and 2 deletions

View file

@ -34,7 +34,7 @@ docker: ## Create a new Docker image and publish it
.PHONY: build
build: test compilemessages ## Build the Python package before release
@hatch build
@hatch build --clean
.PHONY: publish
publish: ## Publish the Python package to Pypi

View file

@ -1,5 +1,27 @@
# Changelog
## 1.3.6 - 2023-07-01
- set font-display: swap; for fonts definition
- do not force scroll on popup content
- document Shift-Click and add Ctrl-Shift-click to edit datalayer
- advanced filter should not affect non browsable layers
- expose 'locale' parameter in templates
- pass options at datalayer creation when importing from umap file
- allow to set the lang while generating an anonymous_edit_url
- control links target
- allow to use properties as color value
- add "delete" link in data browser
- more natural sort of features
- be more strict when coordinates are set manually
- allow to sort reverse
- handle CORS errors with an explicit message
- add basic doc about settings
- add umap command in Docker PATH
- add a setting for the number of maps per search
- use SVG icons
- display latest created maps on empty search
## 1.3.5 - 2023-06-17
- fix stars link in header

View file

@ -59,6 +59,12 @@ docker = [
"uwsgi==2.0.21",
]
[tool.hatch.build]
artifacts = [
# Required because part of .gitignore (and thus excluded by hatch).
"/umap/static/umap/vendors",
]
[tool.hatch.build.targets.sdist]
include = [
"/umap",

View file

@ -1 +1 @@
VERSION = "1.3.5"
VERSION = "1.3.6"