Antonio Valentino pushed to branch master at Debian GIS Project / snaphu
Commits: 3ce363d7 by Antonio Valentino at 2019-10-30T04:39:49Z New upstream version 2.0.2 - - - - - e0b6d0ff by Antonio Valentino at 2019-10-30T04:39:50Z Update upstream source from tag 'upstream/2.0.2' Update to upstream version '2.0.2' with Debian dir 9347a36ae531f014f81077f62e7457beff77020f - - - - - c05437e4 by Antonio Valentino at 2019-10-30T04:40:47Z New upstream release - - - - - ba8f31f7 by Antonio Valentino at 2019-10-30T04:42:56Z Refresh all patches - - - - - 3cb24f6a by Antonio Valentino at 2019-10-30T04:52:33Z Explicitly specify Rules-Requires-Root: no - - - - - bc9386c2 by Antonio Valentino at 2019-10-30T04:53:25Z Set distribution to unstable - - - - - 7 changed files: - README - README_releasenotes.txt - debian/changelog - debian/control - debian/patches/0002-Spelling.patch - src/snaphu.h - src/snaphu_solver.c Changes: ===================================== README ===================================== @@ -1,7 +1,7 @@ SNAPHU Statistical-Cost, Netowrk-Flow Algorithm for Phase Unwrapping Author: Curtis W. Chen -Version 2.0.0, March 2019 +Version 2.0.2, October 2019 Contents ===================================== README_releasenotes.txt ===================================== @@ -1,3 +1,17 @@ +Notable changes in v2.0.2 since v2.0.1: +--------------------------------------- + +* Fixed indexing error that would sometimes cause segmentation fault when + discharging boundary of masked region. + + +Notable changes in v2.0.1 since v2.0.0: +--------------------------------------- + +* Bug fixes affecting externally generated costs read from a file and + handling of zero-cost primary and secondary arcs. + + Notable changes in v2.0 since v1.4.2: ------------------------------------- ===================================== debian/changelog ===================================== @@ -1,8 +1,13 @@ -snaphu (2.0.1-2) UNRELEASED; urgency=medium +snaphu (2.0.2-1) unstable; urgency=medium + * New upstream release. * Bump Standards-Version to 4.4.1, no changes. + * debian/patches: + - refresh all patches + * debian/control: + - Explicitly specify Rules-Requires-Root: no - -- Antonio Valentino <[email protected]> Mon, 30 Sep 2019 20:02:33 +0200 + -- Antonio Valentino <[email protected]> Wed, 30 Oct 2019 04:52:36 +0000 snaphu (2.0.1-1) unstable; urgency=medium ===================================== debian/control ===================================== @@ -3,6 +3,7 @@ Maintainer: Debian GIS Project <[email protected]> Uploaders: Antonio Valentino <[email protected]> Section: non-free/science XS-Autobuild: no +Rules-Requires-Root: no Priority: optional Build-Depends: debhelper-compat (= 12) Standards-Version: 4.4.1 ===================================== debian/patches/0002-Spelling.patch ===================================== @@ -21,7 +21,7 @@ index 161cc25..a4ed3c9 100644 preceding one, although round-off errors in flow-to-phase conversions may cause minor differences diff --git a/src/snaphu.h b/src/snaphu.h -index 5d43cb5..82e6d2b 100644 +index b4cdc3e..7c33fc0 100644 --- a/src/snaphu.h +++ b/src/snaphu.h @@ -407,7 +407,7 @@ ===================================== src/snaphu.h ===================================== @@ -14,7 +14,7 @@ /**********************/ #define PROGRAMNAME "snaphu" -#define VERSION "2.0.1" +#define VERSION "2.0.2" #define BUGREPORTEMAIL "[email protected]" #ifdef PI #undef PI ===================================== src/snaphu_solver.c ===================================== @@ -1751,10 +1751,10 @@ int DischargeBoundary(nodeT **nodes, nodeT *ground, if(row<nrow-1){ if(iscandidate[row][col]){ if(col>0){ - nodes[row][col].outcost=0; + nodes[row][col-1].outcost=0; } if(col<ncol-1){ - nodes[row][col+1].outcost=0; + nodes[row][col].outcost=0; } } iscandidate[row][col]=FALSE; @@ -1762,10 +1762,10 @@ int DischargeBoundary(nodeT **nodes, nodeT *ground, if(col<ncol-1){ if(iscandidate[row+nrow-1][col]){ if(row>0){ - nodes[row][col].outcost=0; + nodes[row-1][col].outcost=0; } if(row<nrow-1){ - nodes[row+1][col].outcost=0; + nodes[row][col].outcost=0; } } iscandidate[row+nrow-1][col]=FALSE; View it on GitLab: https://salsa.debian.org/debian-gis-team/snaphu/compare/a123e7b8429a217cfd61074a83c164e74b37d646...bc9386c26da9e2eb9c28a6e24b7fad79a300028c -- View it on GitLab: https://salsa.debian.org/debian-gis-team/snaphu/compare/a123e7b8429a217cfd61074a83c164e74b37d646...bc9386c26da9e2eb9c28a6e24b7fad79a300028c You're receiving this email because of your account on salsa.debian.org.
_______________________________________________ Pkg-grass-devel mailing list [email protected] https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/pkg-grass-devel
