# HG changeset patch # User Ben Abbott # Date 1290220133 18000 # Node ID 301c5aff54ee5cec3b1eafdd6a6d8796326cd933 # Parent cf5f87246c9061aaff09e8feaf2c2fbbd165ba8a __gnuplot_has_feature__.m: Since there is not gnuplot 4.3.x release, replace reference to version 4.3 with 4.4. diff --git a/scripts/ChangeLog b/scripts/ChangeLog --- a/scripts/ChangeLog +++ b/scripts/ChangeLog @@ -1,3 +1,8 @@ +2010-11-19 Ben Abbott + + * 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 * plot/text.m: Ensure text position property is set after units diff --git a/scripts/plot/__gnuplot_has_feature__.m b/scripts/plot/__gnuplot_has_feature__.m --- a/scripts/plot/__gnuplot_has_feature__.m +++ b/scripts/plot/__gnuplot_has_feature__.m @@ -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)