1.3.6
This commit is contained in:
parent
a4759763e3
commit
e03bbeadfc
4 changed files with 30 additions and 2 deletions
2
Makefile
2
Makefile
|
@ -34,7 +34,7 @@ docker: ## Create a new Docker image and publish it
|
||||||
|
|
||||||
.PHONY: build
|
.PHONY: build
|
||||||
build: test compilemessages ## Build the Python package before release
|
build: test compilemessages ## Build the Python package before release
|
||||||
@hatch build
|
@hatch build --clean
|
||||||
|
|
||||||
.PHONY: publish
|
.PHONY: publish
|
||||||
publish: ## Publish the Python package to Pypi
|
publish: ## Publish the Python package to Pypi
|
||||||
|
|
|
@ -1,5 +1,27 @@
|
||||||
# Changelog
|
# 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
|
## 1.3.5 - 2023-06-17
|
||||||
|
|
||||||
- fix stars link in header
|
- fix stars link in header
|
||||||
|
|
|
@ -59,6 +59,12 @@ docker = [
|
||||||
"uwsgi==2.0.21",
|
"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]
|
[tool.hatch.build.targets.sdist]
|
||||||
include = [
|
include = [
|
||||||
"/umap",
|
"/umap",
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
VERSION = "1.3.5"
|
VERSION = "1.3.6"
|
||||||
|
|
Loading…
Reference in a new issue