-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathCHANGELOG
120 lines (84 loc) · 2.87 KB
/
CHANGELOG
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
version 0.7.4
* Add support for `dumb` text terminal
* Add a `null` terminal that does not display anything
* Tests for 0.7 pass
version 0.7.3
* fix default size for pdf-like terminals.
version 0.7.2
* add `linestyle` option (corresponds to gnuplot's `dashtype`)
* update docs
* fix indexing bug in image plotting
version 0.7.1
* add `palette` option
* Use empty string as defaults for axis labels and title
* Add missing `plot!()` commands
* Update .travis.yml
* Fix tempdir problem in Windows
* Update changelog
version 0.7
* Require Julia 0.6
* New tutorial
* New syntax for plotting
* New `set` command to set defaults
* Add support for plotting complex vectors
* Improve and add tests
* Many internal fixes and code optimization
version 0.6
* Add support for grids
* Fix deprecations
* Restore histogram functionality broken by Julia update
* Remove support for Julia 0.3
version 0.5.7
* Update tests to use Julia's infrastructure
version 0.5.6
* Require Julia 0.5.
version 0.5.5
Update syntax again. Convert into a Julia package.
version 0.5.4
Update syntax to keep up with Julia.
version 0.5.3:
User visible:
* New terminals: aqua (OS X only) and EPS.
* Improved documentation.
* Compatibility with latest Julia syntax changes.
Under the hood:
* A few bug fixes and performance improvements.
version 0.5:
User visible:
* New high-level command imagesc.
* New high-level command surf.
* Support for printing to file; SVG, PNG, GIF and PDF formats supported.
* Add support for 'dots' plotstyle.
* Add a test framework and 93 tests.
* Remove artificial restrictions on mixing many images and curves on the
same figure.
* Images support explicit x, y coordinates.
* Updated and improved documentation.
Under the hood:
* A few small bug fixes.
* Code has been simplified in many places.
version 0.4:
User visible:
* Add support for x11 terminal
* Add support for printing to files (gif and svg)
* Add support for setting default values for all plot properties
* Improved documentation
Under the hood:
* Improved detection of invalid configurations
* No longer require 'figs' global variable
* Add new 'config' type to store configuration: this will allow the user
to configure many aspects of Gaston's behavior
* File organization has been completely revamped
version 0.3:
* Add 'high-level' plot() and histogram() functions
* Add error checking of arguments and types, to minimise risk of gnuplot
barfing on us on misconfigured plots
* Change type names to conform to Julia conventions (no underscores)
* Improved PDF documentation
* Fixed a few bugs
version 0.2:
* Add support for histograms, via the "boxes" plot style.
* Add example histogram to demos.
* Add support for rgbimage plot style
* Add rgbimage example to demos.
* Fix bug (issue #1 on bitbucket) in the way figure handles were used.