mapshaper 0.5.76 → 0.5.80

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,17 @@
1
+ v0.5.80
2
+ * Added arrows, stars and polygons to undocumented -symbols command.
3
+
4
+ v0.5.79
5
+ * More permissive importing of some non-standard Shapefiles.
6
+
7
+ v0.5.78
8
+ * Added support for reading and writing fixed-width text files.
9
+ * Bug fixes.
10
+
11
+ v0.5.77
12
+ * Added -dashlines command (formerly -split-lines).
13
+ * Added support for joining polyline and polygon layers using point-method
14
+
1
15
  v0.5.76
2
16
  * Fixed bug in mapshaper-gui -q.
3
17
  * Added undocumented -split-lines command.
package/bin/mapshaper-gui CHANGED
@@ -83,7 +83,7 @@ function startServer(port) {
83
83
  }
84
84
  serveFile(getAssetFilePath(uri), response);
85
85
  }
86
- }).listen(port, function() {
86
+ }).listen(port, 'localhost', function() {
87
87
  opn("http://localhost:" + port);
88
88
  });
89
89
  }