mirror of
https://github.com/mapbox/tippecanoe.git
synced 2025-01-21 20:08:20 +00:00
Bump version number, give better warning message
This commit is contained in:
parent
ab8ecb7e00
commit
8776f17980
@ -1,3 +1,8 @@
|
|||||||
|
## 1.19.0
|
||||||
|
|
||||||
|
* Tile-join can merge and create directories, not only mbtiles
|
||||||
|
* Maxzoom guessing (-zg) takes into account resolution within each feature
|
||||||
|
|
||||||
## 1.18.2
|
## 1.18.2
|
||||||
|
|
||||||
* Fix crash with very long (>128K) attribute values
|
* Fix crash with very long (>128K) attribute values
|
||||||
|
2
tile.cpp
2
tile.cpp
@ -1834,7 +1834,7 @@ long long write_tile(FILE *geoms, long long *geompos_in, char *metabase, char *s
|
|||||||
line_detail++; // to keep it the same when the loop decrements it
|
line_detail++; // to keep it the same when the loop decrements it
|
||||||
continue;
|
continue;
|
||||||
} else {
|
} else {
|
||||||
fprintf(stderr, "Try using -B (and --drop-lines or --drop-polygons if needed) to set a higher base zoom level.\n");
|
fprintf(stderr, "Try using --drop-fraction-as-needed or --drop-densest-as-needed.\n");
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1 +1 @@
|
|||||||
#define VERSION "tippecanoe v1.18.2\n"
|
#define VERSION "tippecanoe v1.19.0\n"
|
||||||
|
Loading…
Reference in New Issue
Block a user