Skip to content

Commit

Permalink
Jenkins bumped version to 1.5.49
Browse files Browse the repository at this point in the history
  • Loading branch information
Exchange Jenkins committed Mar 9, 2017
1 parent 5c43854 commit 4746a3e
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* MapLoom - v1.5.48 - 2017-03-07
* MapLoom - v1.5.49 - 2017-03-09
* http://www.prominentedge.com
*
* Copyright (c) 2017 Prominent Edge
Expand Down Expand Up @@ -174019,7 +174019,7 @@ var SERVER_SERVICE_USE_PROXY = true;
var configSources = configService_.configuration.sources;
var configMapLayers = configService_.configuration.map.layers;
var lyrsCfg = [];
for (var i = 0; i < configSources.length; i++) {
for (var i in configSources) {
if (configSources[i]['ptype'] === 'gxp_arcrestsource') {
esriIndex = i;
}
Expand Down
4 changes: 2 additions & 2 deletions maploom/templates/maploom/_maploom_js.html
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{% load i18n static %}
<link rel="stylesheet" type="text/css" href="{% static 'maploom/assets/MapLoom-1.5.48.css' %}"/>
<script type="text/javascript" src="{% static 'maploom/assets/MapLoom-1.5.48.js' %}"></script>"
<link rel="stylesheet" type="text/css" href="{% static 'maploom/assets/MapLoom-1.5.49.css' %}"/>
<script type="text/javascript" src="{% static 'maploom/assets/MapLoom-1.5.49.js' %}"></script>"
8 changes: 4 additions & 4 deletions maploom/templates/maps/maploom.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,21 +11,21 @@
<meta http-equiv="X-UA-COMPATIBLE" content="IE-Edge">
<script type="text/javascript">
window.MAPLOOM_VERSION = {
"version_string": "1.5.48",
"build_date": "2017-03-07"
"version_string": "1.5.49",
"build_date": "2017-03-09"
};
</script>

<!-- compiled CSS -->

<link rel="stylesheet" type="text/css" href="{{STATIC_URL}}maploom/assets/MapLoom-1.5.48.css"/>
<link rel="stylesheet" type="text/css" href="{{STATIC_URL}}maploom/assets/MapLoom-1.5.49.css"/>




<!-- compiled JavaScript -->

<script type="text/javascript" src="{{STATIC_URL}}maploom/assets/MapLoom-1.5.48.js"></script>
<script type="text/javascript" src="{{STATIC_URL}}maploom/assets/MapLoom-1.5.49.js"></script>



Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setup(
name='django-exchange-maploom',
version='1.5.48',
version='1.5.49',
author='GeoNode Development Team - Prominent Edge, Terranodo, Boundless Spatial',
author_email='exchange@boundlessgeo.com',
url='https://github.com/boundlessgeo/django-exchange-maploom',
Expand Down

0 comments on commit 4746a3e

Please sign in to comment.