Skip to content

Latest commit

 

History

History
248 lines (145 loc) · 9.58 KB

CHANGES.md

File metadata and controls

248 lines (145 loc) · 9.58 KB

Full changelog

v0.9.0 - 2024-08-20

What's Changed

New Features

  • Add exporters for Jupyter VisPy viewers by @Carifio24 in #84
  • Add dendrogram viewer to Chart Studio exporter by @Carifio24 in #85

Bug Fixes

  • Prevent divide by zero when zoomed in on section with no data by @johnarban in #86

New Contributors

  • @johnarban made their first contribution in #86

Full Changelog: https://github.com/glue-viz/glue-plotly/compare/v0.8.1...v0.9.0

v0.8.1 - 2024-07-26

What's Changed

Bug Fixes

  • Add default viewer dimensions for Plotly-based viewers by @Carifio24 in #83

Other Changes

  • Remove viewer modebar via config by @Carifio24 in #82

Full Changelog: https://github.com/glue-viz/glue-plotly/compare/v0.8.0...v0.8.1

v0.8.0 - 2024-07-17

What's Changed

New Features

  • Add unique class to each viewer instance by @Carifio24 in #81

Other Changes

  • Initialize histogram viewer config with correct gaps by @Carifio24 in #80

Full Changelog: https://github.com/glue-viz/glue-plotly/compare/v0.7.5...v0.8.0

0.7.5 - 2024-07-10

What's Changed

Other Changes

  • Show axis lines by @Carifio24 in #78

Full Changelog: https://github.com/glue-viz/glue-plotly/compare/v0.7.4...v0.7.5

v0.7.4 - 2024-07-05

What's Changed

Bug Fixes

  • Add error handling to scatter layer artist by @Carifio24 in #77

Full Changelog: https://github.com/glue-viz/glue-plotly/compare/v0.7.3...v0.7.4

v0.7.3 - 2024-06-28

What's Changed

New Features

  • Add exporter for volume viewer by @Carifio24 in #70
  • Add export to HTML viewer tools by @Carifio24 in #71
  • Allow gaps between histogram bars and fix axis labels by @Carifio24 in #72

Bug Fixes

  • Fix CI issues and fix colormap validation with numpy 2 by @Carifio24 in #75

Documentation

  • Documentation updates by @Carifio24 in #69

Other Changes

  • Make selection box easier to see by @Carifio24 in #76

Full Changelog: https://github.com/glue-viz/glue-plotly/compare/v0.7.2...v0.7.3

v0.7.2 - 2024-05-10

What's Changed

Bug Fixes

  • Initialize all trace metadata IDs by @Carifio24 in #62
  • Updates to z-order manipulation by @Carifio24 in #63

Full Changelog: https://github.com/glue-viz/glue-plotly/compare/v0.7.1...v0.7.2

v0.7.1 - 2024-05-08

What's Changed

Bug Fixes

  • Update how traces are removed from dotplot layer artist by @Carifio24 in #61

Documentation

  • Improve example notebook by @Carifio24 in #60

Full Changelog: https://github.com/glue-viz/glue-plotly/compare/v0.7.0...v0.7.1

v0.7.0 - 2024-05-07

What's Changed

New Features

  • Add dotplot layer artist for histogram by @Carifio24 in #58

Full Changelog: https://github.com/glue-viz/glue-plotly/compare/v0.6.0...v0.7.0

v0.6.0 - 2024-04-10

What's Changed

New Features

  • Update image export for layer-specific stretch customizations by @Carifio24 in #52
  • Add hover and horizontal/vertical zoom tools by @Carifio24 in #56

Documentation

  • Add information to README by @Carifio24 in #48
  • Add image and GIF showing where to access export tools by @Carifio24 in #49
  • More README updates by @Carifio24 in #50

Full Changelog: https://github.com/glue-viz/glue-plotly/compare/v0.5.1...v0.6.0

v0.5.1 - 2023-10-04

What's Changed

Bug Fixes

  • Separate glue_qt and glue_jupyter import attempts by @Carifio24 in #47

Full Changelog: https://github.com/glue-viz/glue-plotly/compare/v0.5.0...v0.5.1

v0.5.0 - 2023-09-16

What's Changed

New Features

  • Add exporter for profile viewer by @Carifio24 in #26
  • Add exporter for table viewer by @Carifio24 in #27
  • Improve feedback to user from exporters by @Carifio24 in #25
  • Improvements to 2D scatter exporter by @Carifio24 in #28
  • Added web exporter, originally from glue.plugins.exporters.plotly by @astrofrog in #4
  • Share functionality between web and HTML 2D scatter exporters by @Carifio24 in #29
  • Share functionality between web and HTML histogram exporters by @Carifio24 in #30
  • Add profile viewer to web export by @Carifio24 in #31
  • Add exporter for dendrogram viewer by @Carifio24 in #39
  • Implementation of Plotly viewers and refactoring by @Carifio24 in #40
  • Add export tools for bqplot viewers by @Carifio24 in #45

Bug Fixes

  • Updates to 2D scatter sizing by @Carifio24 in #32
  • Close dialog in bqplot exporter when saving to a new file by @Carifio24 in #46

Other Changes

  • Refactor 3D scatter functionality by @Carifio24 in #33
  • Refactor image viewer export functionality by @Carifio24 in #35
  • Add unit tests for 2D scatter exporter by @Carifio24 in #36
  • Add basic tests for histogram and profile export by @Carifio24 in #38
  • Updates for glue-qt by @Carifio24 in #42
  • Bump minimum glue-core to 1.13.1 by @Carifio24 in #44

Full Changelog: https://github.com/glue-viz/glue-plotly/compare/v0.4.0...v0.5.0

v0.4.0 - 2022-10-24

What's Changed

New Features

  • Add support for 2D polar scatterplots. by @Carifio24 in #12
  • Set exported camera projection based on glue viewer state. by @Carifio24 in #13
  • Add support for error bars, vectors, point size scaling to 3D scatter exporter. by @Carifio24 in #18
  • Add exporter for image viewer. by @Carifio24 in #19
  • Add exporter for histogram viewer by @Carifio24 in #20

Bug Fixes

  • Allow exporting of plots with a categorical size attribute. by @Carifio24 in #14

New Contributors

  • @Carifio24 made their first contribution in #12
  • @dhomeier made their first contribution in #17

Full Changelog: https://github.com/glue-viz/glue-plotly/compare/v0.3...v0.4.0

0.3 - 2021-10-19

What's Changed

New Features

  • Add the ability to add hover information to each layer. in #11

Bug Fixes

  • Fix default background color of 2d and 3d scatter viewers to white. in #11

0.2 - 2020-01-22

What's Changed

Bug Fixes

  • Fixed a bug related to axis labels for 2d scatter plots. in #10

0.1 - 2019-06-18

  • Initial version with 2d and 3d HTML exporters.