mapshaper 0.5.74 → 0.5.78

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.78
2
+ * Added support for reading and writing fixed-width text files.
3
+
4
+ v0.5.77
5
+ * Added -dashlines command (formerly -split-lines).
6
+ * Added support for joining polyline and polygon layers using point-method
7
+
8
+ v0.5.76
9
+ * Fixed bug in mapshaper-gui -q.
10
+ * Added undocumented -split-lines command.
11
+
12
+ v0.5.75
13
+ * Added support for importing data by copy-pasting files onto the web UI (works in Chrome and Safari but not Firefox).
14
+
1
15
  v0.5.74
2
16
  * Added support for importing data in the GUI by pasting JSON and delimited text onto the browser window.
3
17
  * Sped up drawing shapes in the GUI.
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
  }