Skip to content

Commit

Permalink
Fix syntax error and prepare for 0.8.4
Browse files Browse the repository at this point in the history
  • Loading branch information
mthh committed Jun 8, 2018
1 parent 1420c80 commit 8fd638d
Show file tree
Hide file tree
Showing 11 changed files with 18 additions and 11 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.8.4 (2018-06-08)
------------------

- Fix silly syntax error.


0.8.3 (2018-06-08)
------------------

Expand Down
2 changes: 1 addition & 1 deletion client/dist/app.96d1b4.js → client/dist/app.bbd020.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions client/dist/html/modules.html
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,8 @@
</div>
<script src="static/vendor/bootstrap-native3.mod.min.js"></script>
<script src="static/vendor/opentip-native.min.js"></script>
<script src="static/dist/vendor.96d1b4.js"></script>
<script src="static/dist/vendor.bbd020.js"></script>
<script src="static/dist/d3-custom.min.js"></script>
<script src="static/dist/app.96d1b4.js"></script>
<script src="static/dist/app.bbd020.js"></script>
</body>
</html>
File renamed without changes.
2 changes: 1 addition & 1 deletion client/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "magrit-client",
"version": "0.8.3",
"version": "0.8.4",
"homepage": "https://github.com/riatelab/magrit",
"devDependencies": {
"babel-core": "^6.26.0",
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.8.3'
__version__ = '0.8.4'
6 changes: 3 additions & 3 deletions magrit_app/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -724,9 +724,9 @@ async def carto_gridded_point(posted_data, user_id, app):
with TemporaryDirectory() as tmp_dir:
# Prepare the temporary filenames for the input layer(s) and for the result:
filenames = {
'src_layer': path_join(tmp_dir, '{}.geojson'.format(get_name()),
'polygon_layer': path_join(tmp_dir, '{}.geojson'.format(get_name()) if posted_data['polygon_layer'] else None,
'mask_layer': path_join(tmp_dir, '{}.geojson'.format(get_name()) if posted_data['mask_layer'] else None,
'src_layer': path_join(tmp_dir, '{}.geojson'.format(get_name())),
'polygon_layer': path_join(tmp_dir, '{}.geojson'.format(get_name())) if posted_data['polygon_layer'] else None,
'mask_layer': path_join(tmp_dir, '{}.geojson'.format(get_name())) if posted_data['mask_layer'] else None,
'result': None
}

Expand Down

Large diffs are not rendered by default.

File renamed without changes.
4 changes: 2 additions & 2 deletions magrit_app/static/modules.html
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,8 @@
</div>
<script src="static/vendor/bootstrap-native3.mod.min.js"></script>
<script src="static/vendor/opentip-native.min.js"></script>
<script src="static/dist/vendor.96d1b4.js"></script>
<script src="static/dist/vendor.bbd020.js"></script>
<script src="static/dist/d3-custom.min.js"></script>
<script src="static/dist/app.96d1b4.js"></script>
<script src="static/dist/app.bbd020.js"></script>
</body>
</html>
1 change: 1 addition & 0 deletions src/smoomacypy
Submodule smoomacypy added at bd5854

0 comments on commit 8fd638d

Please sign in to comment.