Skip to content

Commit

Permalink
- Bump to version 2.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
afabiani committed Feb 27, 2020
1 parent e74d801 commit f2899fa
Show file tree
Hide file tree
Showing 16 changed files with 95 additions and 3 deletions.
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,28 @@
# Change Log

## 2.0.1 [2020-02-27]

### Main features

- Install `pip install django-mapstore-adapter==2.0.1` instructions [Here](https://pypi.org/project/django-mapstore-adapter/)
- Install `pip install django-geonode-mapstore-client==2.0.1` instructions [Here](https://pypi.org/project/django-geonode-mapstore-client/2.0.1/)
- Based on [GeoNode MapStore Adapter v2.0.1](https://github.com/GeoNode/django-mapstore-adapter/releases/tag/2.0.1)
- Based on [MapStore2 - v2019.02.xx](https://github.com/GeoNode/MapStore2/tree/2019.02.xx)
- [MapStore2 Main Features](https://github.com/geosolutions-it/MapStore2/issues?q=is%3Aissue+is%3Aclosed+milestone%3A2019.02.xx+label%3Aenhancement)

[GeoNode MapStore Client](https://github.com/GeoNode/geonode-mapstore-client/issues?q=is%3Aissue+is%3Aclosed+milestone%3A2.0.1) the list of issues solved.

[MapStore2](https://github.com/geosolutions-it/MapStore2/issues?q=is%3Aissue+is%3Aclosed+milestone%3A2019.02.xx) the list of MapStore2 issues solved.

[Full Changelog](https://github.com/GeoNode/geonode-mapstore-client/compare/1.4.8...2.0.1)

<li> 2020-02-26: allyoucanmap <a href="https://github.com/GeoNode/django-mapstore-adapter/commit/61082239d4d3f2ead699f07bc29444e646f6229e" target="blank"> change dev server host to develop without a local geonode</a></li>
<li> 2020-02-26: allyoucanmap <a href="https://github.com/GeoNode/django-mapstore-adapter/commit/7179aea25d82c57d67f9875625f52ff8b4d0fd95" target="blank"> remove duplicated style</a></li>
<li> 2020-02-26: allyoucanmap <a href="https://github.com/GeoNode/django-mapstore-adapter/commit/d9f3bc42d2ab4c8728d7b3905f674a049c30b7f0" target="blank"> add comment on style</a></li>
<li> 2020-02-26: allyoucanmap <a href="https://github.com/GeoNode/django-mapstore-adapter/commit/e26be9a64c14f11764726c99170322d6064b9237" target="blank"> fix position of print dialog inside map/layer preview</a></li>

## 2.0.0 [2020-01-16]

<li>2020-01-16: Python 3 / Django 2 Compatibility</li>

## [1.4.8](https://github.com/GeoNode/geonode-mapstore-client/releases/tag/1.4.8) (2019-12-20)
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.0.0
2.0.1

Large diffs are not rendered by default.

31 changes: 31 additions & 0 deletions geonode_mapstore_client/static/mapstore/dist/themes/default.css
Original file line number Diff line number Diff line change
Expand Up @@ -14515,3 +14515,34 @@ Ported to CodeMirror by Peter Kroon
.msgapi .timeline-plugin {
position: fixed !important;
}
.msgapi #mapstore-print-panel.modal-dialog,
.msgapi #measure-dialog,
.msgapi #mapstore-about {
height: 400px;
width: 800px;
position: absolute;
}
.msgapi #mapstore-print-panel .modal-body {
max-height: calc(100vh - 190px);
overflow-y: auto;
position: relative;
width: 100%;
height: calc(100% - 52px);
}
.msgapi .print-map-preview #print_preview {
margin: auto;
}
@media (max-width: 991px) {
.msgapi #mapstore-print-panel.modal-dialog,
.msgapi #measure-dialog,
.msgapi #mapstore-about {
width: 700px;
}
}
@media (max-width: 767px) {
.msgapi #mapstore-print-panel.modal-dialog,
.msgapi #measure-dialog,
.msgapi #mapstore-about {
width: 98%;
}
}
39 changes: 39 additions & 0 deletions geonode_mapstore_client/static/mapstore/dist/themes/preview.css
Original file line number Diff line number Diff line change
Expand Up @@ -21984,6 +21984,37 @@ Ported to CodeMirror by Peter Kroon
.msgapi .timeline-plugin {
position: fixed !important;
}
.msgapi #mapstore-print-panel.modal-dialog,
.msgapi #measure-dialog,
.msgapi #mapstore-about {
height: 400px;
width: 800px;
position: absolute;
}
.msgapi #mapstore-print-panel .modal-body {
max-height: calc(100vh - 190px);
overflow-y: auto;
position: relative;
width: 100%;
height: calc(100% - 52px);
}
.msgapi .print-map-preview #print_preview {
margin: auto;
}
@media (max-width: 991px) {
.msgapi #mapstore-print-panel.modal-dialog,
.msgapi #measure-dialog,
.msgapi #mapstore-about {
width: 700px;
}
}
@media (max-width: 767px) {
.msgapi #mapstore-print-panel.modal-dialog,
.msgapi #measure-dialog,
.msgapi #mapstore-about {
width: 98%;
}
}
.msgapi #map {
bottom: 0px !important;
}
Expand All @@ -21997,3 +22028,11 @@ Ported to CodeMirror by Peter Kroon
.msgapi .fill .playback-plugin .ms-playback-settings {
max-height: 190px;
}
/* override the inline values of print dialog */
.msgapi #mapstore-print-panel.modal-dialog {
left: 0 !important;
top: 0 !important;
transform: none !important;
height: 400px;
width: 100%;
}
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# -e git+https://github.com/GeoNode/django-mapstore-adapter.git@master#egg=django-mapstore-adapter
django-mapstore-adapter>=1.0.9
django-mapstore-adapter>=2.0.0

0 comments on commit f2899fa

Please sign in to comment.