-
Notifications
You must be signed in to change notification settings - Fork 5
/
NEWS
76 lines (55 loc) · 2.8 KB
/
NEWS
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
Version 0.9.38:
* Fixed bug in auto_reload
* Added command line option for auto reload
* Added mouse button and modifier info to the pick_coordinate jsonrpc command
* Moved make system to meson entirely with subprojects for 3rd parties
* Fixed yet another clipping bug
* Added jsonrpc commands get_transform and set_transform
* Created python example of how to use remote server to sync between two giv instances
* Fixed windows plugins for webp and fits formats
* Added support for a few select entity encoded characters e.g. Δ
* Fixed string parsing related crash
* Removed deprecated automake and scons build systems from source tree
Version 0.9.37:
* Added interactive option "I" for toggling image display
* Added option for showing ballons by default
* Added support for Quadratic bezier curves
Version 0.9.36:
* Fixed clipping bug of polygons
* Added logging option for better error reports
Version 0.9.35:
* Fixed several windows problems with missing plugins etc
* Giv now contains a -log flag for logging through spdlog. It is recommended to use for diagnostic all failures.
* There is a rudamentary option to "keep" a measurement and to "clear kept measurements".
Version 0.9.34:
* Giv now supports the display of Bezier Curves. See the examples/bezier.giv for an example of how to use it.
* Giv now supports tooltips of the label field of svg files.
Version 0.9.26: Multiple updates.
* Added horizontal and vertical measurement tools.
* Added ability of copying contents of coordinates, balloon contents, and distance to the clipboard.
* Lots of crashes.
* New dedicated remote control client giv-remote-client.
* Fixed several remote control protocol crashes.
* Added ellipses datasets
* Fixed several windows 64 bit-crashes.
Version 0.9.16: This is a major upgrade of giv with the following new
futures:
* Floating point, 16-bit images, and 32-bit images are now supported.
* Added a color bar widget that is shown for high bit rate images.
* Created a plugin structure for external loaders.
* Includes loaders for the npy-format, FITS-format, and a simple DICOM
reader.
* A new contrast tool has been written that allows interactively changing
contrast and brightness.
Version 0.9.12 : Added alpha support by adding a trailing /alpha after
the color name. E.g. "red/0.5"
Version 0.9.10 : Interactive quiver zoom has now been implemented. To
a quiver arrowto a datapoint, use the "Q dx dy" privitive. E.g. if a
point at 100,100 has a quiver vector of 0.1 use the following syntax:
100 100
Q 0.1 0.1
The original scale of the quiver plot is determined by the $quiver_scale
keyword. The color of the quiver arrow is set by $quiver_color.
When the data is viewed the scaling of the quiver arrows may be changed
interactively by using pressing Shift+Scroll Wheel.
See the example examples/quiver.giv for an example.