|
1 | | -**v0.7.4** |
| 1 | +## v0.7.5 |
| 2 | + |
| 3 | +- Add `clear()` to clear the scatter plot |
| 4 | +- Update the camera on refresh |
| 5 | +- Fix issue when drawing new points: do not wrap setting new points with withRaf(). Only wrap the pure draw call! |
| 6 | +- Fix a regression from removed scroll library |
| 7 | + |
| 8 | +## v0.7.4 |
2 | 9 |
|
3 | 10 | - Fix a rare glitch in the lasso selection where the lasso would be drawn with a far away point |
4 | 11 | - Smoothify lasso by lowering the min delay and min dist |
5 | 12 | - Update 2D camera and many dev packages |
6 | 13 | - Remove the minified ESM build as it's unnecessary |
7 | 14 |
|
8 | | -**v0.7.3** |
| 15 | +## v0.7.3 |
9 | 16 |
|
10 | 17 | - Fix glitch in the npm release of `v0.7.2`. |
11 | 18 |
|
12 | | -**v0.7.2** |
| 19 | +## v0.7.2 |
13 | 20 |
|
14 | 21 | - Provide proper ESM instead of pointing to the source code. |
15 | 22 |
|
16 | | -**v0.7.1** |
| 23 | +## v0.7.1 |
17 | 24 |
|
18 | 25 | - Replaced `hover` event with `pointover` and `pointout` to be able to know when a point is not hovered anymore. |
19 | 26 |
|
20 | | -**v0.7.0** |
| 27 | +## v0.7.0 |
21 | 28 |
|
22 | 29 | - Allow changing the lasso smoothness via `set({ lassoMinDelay, lassoMinDist })` where `lassoMinDelay` is the minimum number of milliseconds between mousemove events before the lasso is extended and `lassoMinDist` is the minimum number of pixels the mouse has to move. |
23 | 30 |
|
24 | | -**v0.6.0** |
| 31 | +## v0.6.0 |
25 | 32 |
|
26 | 33 | - Simplify API: `style()`, `attr()`, `scatterplot.canvas`, `scatterplot.regl`, and `scatterplot.version` are merged into `get()` and `set()`. The function signature is identical to `style()` and `attr()` so all you have to do is rename. |
27 | 34 | - Add recticle. It's not shown by default but can be activated with `set({ showRecticle, recticleColor })`. |
28 | 35 | - Fix a regression that caused interrupted panning |
29 | 36 |
|
30 | | -**v0.5.1** |
| 37 | +## v0.5.1 |
31 | 38 |
|
32 | 39 | - Fix a bug in categorical color encoding |
33 | 40 |
|
34 | | -**v0.5.0** |
| 41 | +## v0.5.0 |
35 | 42 |
|
36 | 43 | - Set default aspect ratio to 1. It can be changed via `attr({ aspectRatio })` |
37 | 44 | - Add property to set `lassoColor` via `style({ lassoColor })` |
|
42 | 49 | - Add tests for all public API endpoints |
43 | 50 | - Fix several smaller bugs |
44 | 51 |
|
45 | | -**v0.4.0** |
| 52 | +## v0.4.0 |
46 | 53 |
|
47 | 54 | - Use a combination of linear and log2 scaling for point size |
48 | 55 | - Add support for background images |
49 | 56 | - Add API documentation |
50 | 57 | - Switch to single quotes |
51 | 58 | - Export version |
52 | 59 |
|
53 | | -**v0.3.3** |
| 60 | +## v0.3.3 |
54 | 61 |
|
55 | 62 | - Add endpoint for changing the background color |
56 | 63 | - Allow setting view on initialization |
|
59 | 66 | - Fix issues with setting colors |
60 | 67 | - Fix resetting view |
61 | 68 |
|
62 | | -**v0.3.2** |
| 69 | +## v0.3.2 |
63 | 70 |
|
64 | 71 | - Update third party libraries |
65 | 72 | - Switch to browser-based tests |
66 | 73 | - Set more strict linting |
67 | 74 |
|
68 | | -**v0.3.1** |
| 75 | +## v0.3.1 |
69 | 76 |
|
70 | 77 | - Fix nasty floating point issue when working with large textures (> 100.000 points) |
71 | 78 | - Make point size dependent on zoom level |
72 | 79 |
|
73 | | -**v0.3.0** |
| 80 | +## v0.3.0 |
74 | 81 |
|
75 | 82 | - Optimize rendering: up to about 500K points render fine. Usable for up to 1M points. |
76 | 83 | - Add support for one categories and one value per point for color encoding. |
77 | 84 | - Add visual outline for selected points for better highlighting. |
78 | 85 | - Add test setup and some base tests. |
79 | 86 | - Many bug fixes and under the hood improvements. |
80 | 87 |
|
81 | | -**v0.2.0** |
| 88 | +## v0.2.0 |
82 | 89 |
|
83 | 90 | - Add fast lasso selection |
84 | 91 | - Support rotations |
85 | 92 |
|
86 | | -**v0.1.0** |
| 93 | +## v0.1.0 |
87 | 94 |
|
88 | 95 | - Initial working version. **Warning:** this version is not optimized yet and only works fluidly for up to 50.000 points. |
0 commit comments