changeset 11279:301c5aff54ee

__gnuplot_has_feature__.m: Since there is not gnuplot 4.3.x release, replace reference to version 4.3 with 4.4.
author Ben Abbott <bpabbott@mac.com>
date Fri, 19 Nov 2010 21:28:53 -0500
parents cf5f87246c90
children 3f281bd1808c
files scripts/ChangeLog scripts/plot/__gnuplot_has_feature__.m
diffstat 2 files changed, 6 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/scripts/ChangeLog	Fri Nov 19 21:28:32 2010 -0500
+++ b/scripts/ChangeLog	Fri Nov 19 21:28:53 2010 -0500
@@ -1,3 +1,8 @@
+2010-11-19  Ben Abbott <bpabbott@mac.com>
+
+	* plot/__gnuplot_has_feature__.m: Since there is not gnuplot 4.3.x
+	release, replace reference to version 4.3 with 4.4.
+
 2010-11-18  Ben Abbott <bpabbott@mac.com>
 
 	* plot/text.m: Ensure text position property is set after units
--- a/scripts/plot/__gnuplot_has_feature__.m	Fri Nov 19 21:28:32 2010 -0500
+++ b/scripts/plot/__gnuplot_has_feature__.m	Fri Nov 19 21:28:53 2010 -0500
@@ -38,7 +38,7 @@
 
   if (isempty (has_features))
     gnuplot_version = __gnuplot_version__ ();
-    versions = {"4.2.5", "4.3.0", "4.3", "4.3", "4.2", "4.2", "4.3", "4.3", "4.3"};
+    versions = {"4.2.5", "4.4", "4.4", "4.4", "4.2", "4.2", "4.4", "4.4", "4.4"};
     operators = {">=", ">=", ">=", ">=", ">=", ">=", ">=", ">=", ">="};
     have_features = logical (zeros (size (features)));
     for n = 1 : numel (have_features)