Skip to content

Commit 1ba4904

Browse files
committed
Update readme and release notes (0.27).
1 parent 2127d00 commit 1ba4904

File tree

2 files changed

+29
-7
lines changed

2 files changed

+29
-7
lines changed

README.md

Lines changed: 17 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ This extension allows to display graphical representation of C++ and C# variable
77

88
It supports Boost.Geometry and Boost.Polygon models, Boost.Variant, STL/Boost containers of values and points as well as C-style arrays, C# arrays and List. The extension has the following components:
99

10-
* **Debugger visualizers** for Boost.Array, Boost.Container, Boost.Geometry, Boost.MPL, Boost.Polygon, Boost.Tuple and Boost.Variant
11-
* **Geometry Watch** tool window displaying geometries in a common coordinate system, e.g. Boost.Geometry or Boost.Polygon polygons
12-
* **Graphical Watch** tool window displaying graphical representation of variables, e.g. Boost.Geometry models or vectors of values
13-
* **Plot Watch** tool window displaying plot representation of variables, e.g. vector of doubles
10+
* **Debugger visualizers** for Boost.Array, Boost.CircularBuffer, Boost.Container, Boost.Geometry, Boost.MPL, Boost.Polygon, Boost.Tuple and Boost.Variant
11+
* **Geometry Watch** tool window displaying geometries in a common coordinate system, e.g. Boost.Geometry, Boost.Polygon polygons, etc.
12+
* **Graphical Watch** tool window displaying graphical representation of variables, e.g. Boost.Geometry models, Boost.Gil images, vectors of values, etc.
13+
* **Plot Watch** tool window displaying plot representation of variables, e.g. vector of doubles, array of pairs, etc.
1414

1515
Feel free to report bugs, propose features and create pull requests. Any help is appreciated.
1616

@@ -45,6 +45,7 @@ To install after building double-click the *.vsix file from bin/Debug or bin/Rel
4545
Supported:
4646

4747
* Boost.Array: array
48+
* Boost.CircularBuffer: circular_buffer
4849
* Boost.Container: vector, static_vector
4950
* Boost.Geometry:
5051
* de9im: mask, matrix, static_mask
@@ -68,8 +69,9 @@ Supported:
6869
* C-style array
6970
* Pointer to elements with size specifier e.g.: `ptr,5`
7071
* Sequence of containers of point coordinates e.g.: `vec_x;vec_y`
71-
* STL: array, vector, deque, list
72+
* STL: array, vector, deque, list, set
7273
* Boost.Array: array
74+
* Boost.CircularBuffer: circular_buffer
7375
* Boost.Container: vector, static_vector
7476
* C#: array, List
7577
* 2D cartesian geometries
@@ -79,6 +81,8 @@ Supported:
7981
* user-defined point type
8082
* Non-cartesian geometries (spherical_equatorial and geographic)
8183
* Boost.Geometry: point, box, segment, referring_segment, polygon, multi_point, multi_linestring, multi_polygon, nsphere
84+
* Containers of geometries
85+
* Boost.Geometry: rtree (no direct memory access for now, so it may take long time to load)
8286
* Complex numbers
8387
* STL: complex
8488
* Variants of geometries
@@ -110,8 +114,9 @@ Supported:
110114
* C-style array
111115
* Pointer to elements with size specifier e.g.: `ptr,5`
112116
* Sequence of containers of point coordinates e.g.: `vec_x;vec_y`
113-
* STL: array, vector, deque, list
117+
* STL: array, vector, deque, list, set
114118
* Boost.Array: array
119+
* Boost.CircularBuffer: circular_buffer
115120
* Boost.Container: vector, static_vector
116121
* C#: array, List
117122
* 2D cartesian geometries
@@ -121,8 +126,12 @@ Supported:
121126
* user-defined point type
122127
* Non-cartesian geometries (spherical_equatorial and geographic)
123128
* Boost.Geometry: point, box, segment, referring_segment, polygon, multi_point, multi_linestring, multi_polygon, nsphere
129+
* Containers of geometries
130+
* Boost.Geometry: rtree (no direct memory access for now, so it may take long time to load)
124131
* Complex numbers
125132
* STL: complex
133+
* Images
134+
* Boost.Gil: image (incl. typedefs, e.g. rgb8_image_t, abgr16_image_t, cmyk32_image_t, rgb64f_planar_image_t, etc.)
126135
* Variants of geometries
127136
* Boost.Variant: variant
128137

@@ -151,8 +160,9 @@ Supported containers of values convertible to double and containers of points:
151160
* C-style array
152161
* Pointer to elements with size specifier e.g.: `ptr,5`
153162
* Sequence of containers of point coordinates e.g.: `vec_x;vec_y`
154-
* STL: array, vector, deque, list
163+
* STL: array, vector, deque, list, set
155164
* Boost.Array: array
165+
* Boost.CircularBuffer: circular_buffer
156166
* Boost.Container: vector, static_vector
157167
* C#: array, List
158168

Visual_Studio_2017/GraphicalDebugging/release_notes.txt

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
version 0.27
2+
3+
additions:
4+
- support for std::set
5+
- support for boost::circular_buffer
6+
- support for boost::gil::image
7+
- support for boost::geometry::index::rtree (no direct memory access for now, so it may take long time to load)
8+
- variable loading time check and possibility to stop if it takes too long
9+
10+
bugfixes:
11+
- updated debugger visualizers for boost::variant
12+
113
version 0.26
214

315
additions:

0 commit comments

Comments
 (0)