Skip to content

Commit a2ea612

Browse files
committed
Version numbers in filenames without a v.
1 parent a7e1e28 commit a2ea612

7 files changed

+6
-6
lines changed

widgets/Export.js

+6-6
Original file line numberDiff line numberDiff line change
@@ -528,7 +528,7 @@ define([
528528
return;
529529
}
530530

531-
require([this.modulesPath + '/shpwrite-v0.2.6.min.js'], lang.hitch(this, function (shpWrite) {
531+
require([this.modulesPath + '/shpwrite-0.2.6.min.js'], lang.hitch(this, function (shpWrite) {
532532
var options = lang.clone(this.shapefileOptions);
533533
options.wkt = this.proj4DestWKT;
534534
var zipFile = shpWrite.zip(geojson, options);
@@ -586,7 +586,7 @@ define([
586586
return;
587587
}
588588

589-
require([this.modulesPath + '/wellknown-v0.4.2.min.js'], lang.hitch(this, function (wellknown) {
589+
require([this.modulesPath + '/wellknown-0.4.2.min.js'], lang.hitch(this, function (wellknown) {
590590
var wkt = geojson.features.map(wellknown.stringify).join('\n');
591591
if (!wkt) {
592592
this.reportError (i18n.errorWKT);
@@ -1001,7 +1001,7 @@ define([
10011001
window.dojoConfig.packages.push({
10021002
name: 'JSZip3',
10031003
location: this.modulesPath,
1004-
main: 'jszip-v3.1.3.min'
1004+
main: 'jszip-3.1.3.min'
10051005
});
10061006
require(window.dojoConfig, [
10071007
'JSZip3'
@@ -1019,7 +1019,7 @@ define([
10191019
if (this.excel || this.csv || this.xlsExcel) {
10201020
//xlsx requires jszip version 2.x. version 3.x for everything else
10211021
require([
1022-
this.modulesPath + '/xlsx.core-v0.9.12.min.js'
1022+
this.modulesPath + '/xlsx.core-0.9.12.min.js'
10231023
]);
10241024
}
10251025
},
@@ -1028,7 +1028,7 @@ define([
10281028
if (this.geojson || this.kml || this.kmz || this.shapefile || this.topojson || this.wkt) {
10291029
require([
10301030
'proj4js/proj4',
1031-
this.modulesPath + '/terraformer-v1.0.8.min.js'
1031+
this.modulesPath + '/terraformer-1.0.8.min.js'
10321032
], lang.hitch(this, function (proj4) {
10331033
if (!window.proj4) {
10341034
window.proj4 = proj4;
@@ -1037,7 +1037,7 @@ define([
10371037

10381038
// arcgis parser must be loaded after the terraformer core module
10391039
require([
1040-
this.modulesPath + '/terraformer-arcgis-parser-v1.0.5.min.js'
1040+
this.modulesPath + '/terraformer-arcgis-parser-1.0.5.min.js'
10411041
]);
10421042
}));
10431043
}

0 commit comments

Comments
 (0)