File: RELEASE_NOTES

package info (click to toggle)
gnuplot 6.0.2%2Bdfsg1-2
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 14,940 kB
  • sloc: ansic: 95,319; cpp: 7,590; makefile: 2,470; javascript: 2,328; sh: 1,531; lisp: 664; perl: 304; pascal: 191; tcl: 88; python: 46
file content (346 lines) | stat: -rw-r--r-- 16,087 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
		Gnuplot Version 6.0.2 Release Notes
		===================================

This is the second incremental release for gnuplot stable version 6.0.
In addition to the usual minor bug fixes, it contains several new features
from the development version of gnuplot that didn't quite make it into
the initial version 6 release.

NEW (backported from development version)
-----------------------------------------

- plot style "with hsteps" enables a variety of new plot types
  For examples, see
	* https://gnuplot.info/demo_6.0/hsteps.html
	* https://gnuplot.info/demo_6.0/logic_timing.html
	* https://gnuplot.info/demo_6.0/rank_sequence.html

- 3D plot style "with filledcurves" provides additional flexibility in creating
  the family of plot styles that includes waterfall plots and fence plots.
  See
	* https://gnuplot.info/demo_6.0/waterfallplot.html

- Terminal input when gnuplot is linked against the BSD editline library
  now correctly handles UTF-8 characters.  UTF-8 input has always worked
  for configuration options readline=gnu or readline=builtin; now it also
  works for
      ./configure --with-readline=bsd

  This change should in particular benefit users of Debian and MacOS
  binaries, which are typically linked against the editline library.

- Polygons in a 3D plot ("splot ... with polygons") can use palette coloring
  and pm3d lighting.

- General binary keyword option "blank=NaN" facilitates using binary input
  data for plot styles that would require blank lines in a text input data
  stream. See
	* https://gnuplot.info/demo_6.0/binary_polygon.html

- "linestyle variable" is accepted as a color specifier in plot commands.
  The primary distinction between this as "linecolor variable" is that
  linestyle properties are cleared by the next "reset" command.
  This allows definition of a temporary color sequence affected only one plot.

CHANGES
-------

- Local variables are reimplemented to provide a better-defined scope
  and faster evaluation of function blocks.
- Existing plot styles steps, histeps, fsteps, and fillsteps are
  reimplemented to use the new hsteps code.
- Boxplot outlier position (horizontal displacement) is controlled by "set jitter".
- The content of $GPVAL_LAST_MULTIPLOT is appended to the output from "save"
  so that loading the saved file regenerates a full multiplot rather than
  only the final component.

FIXES
-----

- reworked generation of logscale axis tic marks                 (Bugs 2372 2717)
- Do not save extraneous commands to $GPVAL_LAST_MULTIPLOT       (Bug 2714)
- svg: modify gnuplot_svg.js to work in local standalone mode    (Bug 2715)
- wxt: release per-thread font data before entering "persist"    (Bug 2693)
- "set table": honor "nosurface" keyword in splot
- "set table": honor "set format z" when z is printed from plot
- better contouring near the edge of a z-clipped surface
- handle mousing of logscale axes in inactive plot windows       (Bug 2723)
- "set tics scale" does not change other axis tick properties    (Bug 2724)
- points with variable color value NaN should not be drawn       (Bug 2737)
- "set term tikz nostandalone" should suppress the latex wrapper (Bug 2740)
- handle unusual case of intersecting pm3d surfaces              (Bug 2744)
- prevent use-after-free if a function block has no "return"     (Bug 2745)

KNOWN ISSUES
------------

- Support for replot and pan/zoom mouse operations in multiplot mode is still
  incomplete. Expect further improvement in subsequent releases.
- TeXLive2024 pdflatex does not like some of the UTF-8 characters in the user manual.
  The distribution includes a pre-built copy of gnuplot.pdf but if you want
  to rebuild it from the source in docs/gnuplot.doc please use lualatex instead.
  You can either replace the definition PDFLATEX=pdflatex with PDFLATEX=lualatex
  in the Makefile or provide this in the environment during configuration
  $ PDFLATEX=lualatex ./configure

Gnuplot development is tracked in a git repository on SourceForge.
You can generate a complete history of changes using "git log"
after downloading:

<pre>
    git clone -b branch-6-0-stable git://git.code.sf.net/p/gnuplot/gnuplot-main
    git log
</pre>

Release Notes date:  19 December 2024


			Changes in 6.0.1
			================

* CHANGE Use of data source '-' inside a multiplot is an error; use a local datablock instead
* CHANGE gd: scale "dot" (pointtype 0) by current linewidth		Bug 2690
* FIX	 configure script modified to accommodate Fedora dependencies	Bug 2706
* FIX	 mp: configure --with-metapost failed to include mp terminal
* FIX	 empty field in csv file should not generate a tic label	Bug 2667 2672
* FIX	 Do not autoscale or extend axis ranges while zooming		Bug 2679 2680
* FIX	 svg: set default fill properties for depth-sorted pm3d objects
* FIX	 x11: Empirical correction for bad rotation of enhanced text	Bug 2661
* FIX	 wxt: Add exception handler for mouse event processing		Bug 2680 2683
* FIX	 wxt: make right-mouse zoom box independent of terminal scaling	Bug 2578
* FIX	 regression: border color of objects with fillstyle "empty"	Bug 2686
* FIX	 "set colorbox border {<lt>}" parsing error
* FIX	 gd x11:  very short arrows were not drawn at all		Bug 2690
* FIX	 qt wxt x11: "set term" from a script causes next pause to fail	Bug 2703
* FIX	 tikz: fix use of palettes with a fixed number of colors	Bug 2706
* FIX	 "stats ... name FOO" Do not delete existing variables FOO_*	Bug 2695
* FIX	 order-dependent parsing of 2D plots with "fs solid fc variable"

		Features introduced in version 6
		================================

For a detailed list of new features, with illustrations, see
  http://gnuplot.info/docs_6.0/NewFeatures.html

For more example plots see
  http://gnuplot.info/demo_6.0/

- Function blocks and scoped variables
- Larger collection of special and complex-valued functions
- New plot styles
	o 2D plot style `with surface` works in 2D polar coordinates to produce a
	  solid-fill gridded representation of the plane. This is analogous to the
	  use of dgrid3d and pm3d to produce a 3D gridded surface.
	o 2D plot style `with sectors` renders one annular segment ("sector") for
	  each line of input data. This style can generate pie and donut charts,
	  windrose charts, and a polar equivalent to sparse-matrix heatmaps.
	o 2D plot style `with lines` now has a filter option `sharpen`.
	  This filter detects spikes in a function plot that would be missed or
	  under-represented due to coarse sampling.  It adds an additional
	  sampling point at the location of each such peak.
	o 3D plot style `with contourfill` produces 2D or 3D surfaces with
	  distinct z-ranges indicated by solid color fill.
- Hulls, masks, and smoothing
	o A cluster of 2D points can be replaced by a bounding polygon ("hull").
	  Both convex hulls and concave hulls (χ-shapes) are supported.
	o Any hull or other closed path can be used as a mask to display only
	  selected regions of a pm3d surface or image plot.
	o New smoothing option "smooth path" can be used on 2D and 3D curves
	  that are not monotonic on x or y.  This allows smoothing of hulls.
- Named palettes
	o The current palette can be saved to a named colormap for future us.
	o A predefined palette named "viridis" is provided.
	o Plots can specify a previously saved palette by name.
	  This permits the use of multiple palettes in a single plot command.
	o Named palettes can be edited to contain an alpha channel.
- New built-in functions and array operations
	o palette(z) returns the current RGB palette color mapping for z.
	o rgbcolor("name") returns the 32bit ARGB value for a named color.
	o index(Array, element) returns the first index i for which Array[i]
	  is equal to element.
	o split("string", "separator") unpacks the fields in a string into
	  an array of strings.
	o join(array, "separator") is the complement to split().
	  It concatenates the elements of a string array into a single string.
	o `stats <non-existent file>` yields a testable value with no error;
	  useful to avoid errors or warnings in scripts.
- Program control flow
	o New syntax if {...} else if {...} else {...}
	o XDG base directory conventions for configuration files are supported.
	o `unset warnings` suppresses output of warning messages to the console.
	o The `fit` command is protected by exception handling. Control always
	  returns to the next line of input even in the case of fit errors.
	  On return FIT_ERROR is non-zero if an error occurred.
	o "Watchpoints"  are target values associated with individual plots
	  in a graph. As that plot is drawn, each component line segment is
	  monitored to see if its endpoints bracket the target value of a
	  watchpoint coordinate (x, y, or z) or function f(x,y).
	  If a match is found, the [x,y] coordinates of the match point are
	  saved for later use.  Possible uses include
		- find the intersection points of two curves
		- find zeros of a function
		- find and notate where a dependent variable or function f(x,y)
		  crosses a threshold value
		- use the mouse to track values along multiple plots simultaneously
- New terminals and terminal options
	o Terminals that display graphics in the same window as text entry now
	  support pseudo-mousing; i.e. they respond to arrow keys and other
	  hot-key bindings during "pause mouse".
	o New terminals kittygd and kittycairo provide in-window graphics for
	  terminal emulators that support the kitty protocol.
	o New terminal webp generates a single frame or an animation sequence
	  using webp encoding. Frames are generated using pngcairo,
	  then encoded through the WebPAnimEncoder API.
	o New terminal block for text-mode pseudo-graphics uses Unicode block
	  or Braille characters to offer improved resolution compared to the
	  dumb or caca terminals.
	o latex terminals standalone mode updated to work with texlive2023
- Miscellaneous other new features
	o Multiplots can now be saved, replotted, and resized interactively.
	  This is a change from all previous gnuplot versions, where only the
	  most recent component of a multiplot could be replotted.
	o The command sequence that generates the current multiplot is saved to
	  a datablock $GPVAL_LAST_MULTIPLOT.
	o New command "remultiplot" replays the saved command sequence. 
	o Time unit settings for major and minor axis tics.  For example,
	  minor tic marks can be placed at exactly one month intervals.
	o The character sequence $# in a using specifier evaluates to the total
	  number of columns available in the current line of data.
	  "plot FOO using 0:(column($# - 1))" plots the last-but-one field of each row.
	o keyword binvalue=avg plots the average, rather than the sum, of binned data.
	o "set colorbox bottom" places the color box underneath the plot.
	o "set pm3d spotlight" adds a user-controlled spotlight to the lighting model.
	o New key layout options to force specific width or number of columns.
	  Automatic positioning of the key on the page can be manually tweaked
	  by giving an offset.
	o "set isotropic" adjusts the axis scaling in both 2D and 3D plots such
	  that x, y, and z axes all have the same scale.
	o Text rotation angles are not limited to integral degree values.
	o Data-driven color assignments in plot style "histograms".
	o A keyentry with no given plot style can be used to place a secondary title
	  in the key or, in combintation with "title", to create two columns of text.

		Notes for packagers and testers
		===============================

Obsolete or deprecated components
---------------------------------

The "gnuplot mode" elisp and TeX files for use with emacs are now
maintained as a separate project: https://github.com/bruceravel/gnuplot-mode
so there is no longer a configuration option --with-lisp-files.

LaTeX-related terminal drivers latex, emtex, eepic, and tpic are no longer
built by default.  Their closest equivalent is the new pict2e terminal, but
LaTeX users who want support for the full range of gnuplot plot styles are
recommended to use the cairolatex or tikz terminals.

Configuration options for interactive use
-----------------------------------------

The 6.0 source code supports three primary cross-platform interactive
modes in addition to several platform-specific modes.

1) Qt

   The qt terminal supports interactive display with menu-driven
   output to png, svg or pdf.  If either Qt6 or Qt5 is detected by the
   configure script, this will be the default terminal.  It is now the
   fastest and most full-featured interactive terminal option.

   To disable this terminal or force use of Qt5 even if Qt6 is present
	$ ./configure --with-qt=qt5
	$ ./configure --without-qt
	   
2) Cairo/pango/wxWidgets

   This set of terminals includes pngcairo, pdfcairo, epscairo, and cairolatex
   for output to a file. The wxt terminal provides interactive display
   All of these will be built by default if the configuration script finds
   the required libcairo, libpango, libcairo, libwxgtk, and related
   support libraries

   To disable these terminals:
       $ ./configure --without-cairo
       $ ./configure --with-cairo --disable-wxwidgets
       
3) X11 (the "classic" interactive interface)
   This used to be the preferred interactive interface, but the newer
   wxt and qt terminals offer nicer output and a wider range of features.


Output to files
---------------

Of course the terminals (output modes) present in previous gnuplot versions
are also still available. These include, among many more obscure options:

- PostScript (*.ps or *.eps)
- svg
- png/jpeg/gif output via libgd graphics library
- png/pdf/eps output via cairo graphics library
- TeX/LaTeX including TikZ and ConTeXt
- Bitmapped output to support older devices (e.g. HP deskjet, epson, and
  seiko printers, pbm bitmapped graphics files) is available if needed
  but is no longer configured in by default.
      ./configure --with-bitmap-terminals

Output of inline graphics to terminal emulator or linux console
---------------------------------------------------------------

The sixel and kitty terminals display graphics in-line with the commands
typed in a suitable terminal emulator window.  For example "xterm -ti 340"
emulates a vt340 with indexed color sixel graphics.
The KDE desktop konsole terminal provides RGB color sixel graphics
and 32-bit color + alpha channel graphics using the kitty protocol.
The yaft terminal emulator can provide sixel graphics at linux console
level with no x11 or other windowing system active.

Generating interactive plots for web display
--------------------------------------------

- Mouseable output for display on the web can be created using either
  the canvas terminal (HTML5 2D canvas element) or the svg terminal.
  Both allow zooming, toggling plot elements on/off, and user-scriptable
  hot keys.

			Other Notes
			===========

Installation
------------

You can download a source tarball for the current gnuplot version
from the gnuplot development site on SourceForge.
	http://sourceforge.net/projects/gnuplot

Some platform-specific installation tips are given in the INSTALL
file of the source package; the short version for linux/unix-like
systems is to unpack the tarball and then
<PRE>
build it:
      cd gnuplot-6.0.2 ; ./configure ; make
test it:
      make check
install it:
      make install
</PRE>

Pay careful attention to the output of the ./configure script.
It may indicate that some output modes have been omitted because the
necessary support libraries were not found.  In general you need to have
previously installed the "*-devel-*" versions of these libraries.


Support
-------
Please report all bugs and installation problems to the bug tracker
on SourceForge:
	https://sourceforge.net/p/gnuplot/bugs/

Development
-----------
Gnuplot development is ongoing. The development branch contains preliminary
implementations of new features.  The current development version is 6.1.
Bug fixes for version 6.0 will appear in patchlevel releases 6.0.1, 6.0.2, etc.
approximately twice a year or as needed to correct a serious regression.