about summary refs log tree commit diff
diff options
context:
space:
mode:
authorgiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2015-09-26 19:51:36 +0000
committergiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2015-09-26 19:51:36 +0000
commit6e879ff027c9019c964d15ae0e0c966fc7d1c7a8 (patch)
tree9ec0f11523c96e583a77c4e5b7f5f5747cda86be
parent533e5a163abba83d69269053f1cbdb38358bbcb3 (diff)
downloadnetpbm-mirror-6e879ff027c9019c964d15ae0e0c966fc7d1c7a8.tar.gz
netpbm-mirror-6e879ff027c9019c964d15ae0e0c966fc7d1c7a8.tar.xz
netpbm-mirror-6e879ff027c9019c964d15ae0e0c966fc7d1c7a8.zip
Release 10.71.3
git-svn-id: http://svn.code.sf.net/p/netpbm/code/advanced@2635 9d0c8265-081b-0410-96cb-a4ca84ce46f8
-rw-r--r--converter/other/fitstopnm.c7
-rw-r--r--doc/HISTORY9
-rw-r--r--version.mk2
3 files changed, 14 insertions, 4 deletions
diff --git a/converter/other/fitstopnm.c b/converter/other/fitstopnm.c
index 181a85ce..9a2859bd 100644
--- a/converter/other/fitstopnm.c
+++ b/converter/other/fitstopnm.c
@@ -57,9 +57,9 @@
 struct cmdlineInfo {
     const char * inputFileName;
     unsigned int image;  /* zero if unspecified */
-    double max;
+    float max;
     unsigned int maxSpec;
-    double min;
+    float min;
     unsigned int minSpec;
     unsigned int scanmax;
     unsigned int printmax;
@@ -668,7 +668,8 @@ convertPpmRaster(FILE *                const ifP,
 -----------------------------------------------------------------------------*/
     unsigned int plane;
 
-    pm_message("writing PPM file");
+    pm_message("Writing PPM file "
+               "(Probably not what you want - consider an -image option)");
 
     for (plane = 0; plane < 3; ++plane) {
         unsigned int row;
diff --git a/doc/HISTORY b/doc/HISTORY
index 4ecca7f0..38f1cbf3 100644
--- a/doc/HISTORY
+++ b/doc/HISTORY
@@ -4,8 +4,17 @@ Netpbm.
 CHANGE HISTORY 
 --------------
 
+15.09.26 BJH  Release 10.71.03
+
+              fitstopnm: Add message saying you're probably making a mistake
+              if you have a 3-D image and don't specify -image.  The third
+              dimension is almost always time in practice.
+
 15.08.02 BJH  Release 10.71.02
 
+              fitstopnm: Fix -min and -max.  Broken in Netpbm 10.39 (June
+              2007).
+
               Pnmtopclxl: fix buffer overrun causing unpredictable behavior.
               (Introduced in Netpbm 10.54 (March 2011).
 
diff --git a/version.mk b/version.mk
index 5f795d57..9089dbdd 100644
--- a/version.mk
+++ b/version.mk
@@ -1,3 +1,3 @@
 NETPBM_MAJOR_RELEASE = 10
 NETPBM_MINOR_RELEASE = 71
-NETPBM_POINT_RELEASE = 2
+NETPBM_POINT_RELEASE = 3