Skip to content

Commit

Permalink
bump version for release
Browse files Browse the repository at this point in the history
  • Loading branch information
stronnag committed Nov 15, 2024
1 parent ef554f5 commit bb7d8cf
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
project('mwptools', 'vala', 'c', version : '24.11.14', meson_version : '>= 1.4.0')
project('mwptools', 'vala', 'c', version : '24.11.15', meson_version : '>= 1.4.0')

nogo = get_option('nogo')
force_s = get_option('force-static')
Expand Down
4 changes: 2 additions & 2 deletions src/mwp/mwp-geozonemgr.vala
Original file line number Diff line number Diff line change
Expand Up @@ -623,7 +623,7 @@ public class GeoZoneManager {
oi.idx = (uint8)n;
var sb = new StringBuilder();
var nv = nvertices(n);
sb.append_printf("geozone %u %d %d %d %d %d %d %d", n, zs[n].shape, zs[n].type,
sb.append_printf("geozone %u %d %d %d %d %d %d %u", n, zs[n].shape, zs[n].type,
zs[n].minalt, zs[n].maxalt, zs[n].isAMSL, zs[n].action, nv);
oi.styleinfo = get_style(zs[n]);
if (zs[n].shape == GZShape.Circular) {
Expand Down Expand Up @@ -712,7 +712,7 @@ public class GeoZoneManager {
foreach (var z in zs) {
var nv = nvertices(n);
if(z.type != GZType.Unused) {
sb.append_printf("geozone %d %d %d %d %d %d %d %d\n", n, z.shape, z.type,
sb.append_printf("geozone %d %d %d %d %d %d %d %u\n", n, z.shape, z.type,
z.minalt, z.maxalt, z.isAMSL, z.action, nv);
var nvs = find_vertices(n);
foreach(var v in nvs) {
Expand Down

0 comments on commit bb7d8cf

Please sign in to comment.