Skip to content

Commit

Permalink
v0.5.81
Browse files Browse the repository at this point in the history
  • Loading branch information
mbloch committed Dec 20, 2021
1 parent c02ddc7 commit f4be5e5
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 5 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
v0.5.81
* Bug fixes

v0.5.80
* Added arrows, stars and polygons to undocumented -symbols command.

Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mapshaper",
"version": "0.5.80",
"version": "0.5.81",
"description": "A tool for editing vector datasets for mapping and GIS.",
"keywords": [
"shapefile",
Expand Down
4 changes: 2 additions & 2 deletions src/cli/mapshaper-option-parsing-utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,9 @@ export function cleanArgv(argv) {
// Updated: don't trim space from tokens like [delimeter= ]
argv = argv.map(function(s) {
if (!/= $/.test(s)) {
s = s.trimEnd();
s = utils.rtrim(s);
}
s = s.trimStart();
s = utils.ltrim(s);
return s;
});
argv = argv.filter(function(s) {return s !== '';}); // remove empty tokens
Expand Down
1 change: 0 additions & 1 deletion src/gui/gui-symbol-dragging2.js
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,6 @@ export function SymbolDragging2(gui, ext, hit) {
return parent.querySelector(sel);
}


function getTextTarget3(e) {
if (e.id > -1 === false || !e.container) return null;
return getSymbolNodeById(e.id, e.container);
Expand Down

0 comments on commit f4be5e5

Please sign in to comment.