Skip to content

Commit 3668f02

Browse files
committed
Merge branch 'master' of github.com:libvips/nip2 into fix-marshal-types
2 parents 3caba99 + 1b204c9 commit 3668f02

File tree

4 files changed

+11
-3
lines changed

4 files changed

+11
-3
lines changed

ChangeLog

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
started 8.7.1 13/11/18
2+
- fix uint status bar pixels >2**31 [Rob Erdmann]
3+
14
started 8.7.0 22/5/18
25
- added vips7compat.h include for libvips 8.7
36
- more output for -V to help debugging CLI mode

README.md

+5
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,11 @@ Windows and OS X, you can download a binary from the [nip2 releases
1313
area](https://github.com/libvips/nip2/releases). Only read on if you want to
1414
compile yourself from source.
1515

16+
# Documentation
17+
18+
nip2 comes with a 50-page manual --- press F1 or Help / Contents in the
19+
program to view it.
20+
1621
# Building nip2 from source
1722

1823
In the nip2 directory you should just be able to do:

configure.ac

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Process this file with autoconf to produce a configure script.
22

3-
AC_INIT([nip2], [8.7.0], [[email protected]])
3+
AC_INIT([nip2], [8.7.1], [[email protected]])
44

55
# foreign stops complaints about a missing README (we use README.md instead)
66
# and missing INSTALL (the standard Gnu INSTALL is not very useful)
@@ -17,7 +17,7 @@ dnl
1717

1818
m4_define([nip_major_version], [8])
1919
m4_define([nip_minor_version], [7])
20-
m4_define([nip_micro_version], [0])
20+
m4_define([nip_micro_version], [1])
2121
m4_define([nip_version],
2222
[nip_major_version.nip_minor_version.nip_micro_version])
2323

src/statusview.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -402,7 +402,7 @@ statusview_mouse_band( StatusviewBand *svb, void *e )
402402
break;
403403

404404
case IM_BANDFMT_UINT:
405-
set_glabel( svb->val, "%d",
405+
set_glabel( svb->val, "%u",
406406
((unsigned int *)e)[svb->bandno] );
407407
break;
408408

0 commit comments

Comments
 (0)