Releases: daviden1013/ie-viz
Releases · daviden1013/ie-viz
IE-VIZ v0.2.1
What's changed
- Fixed a bug in the filtering logic to handle entities with no attributes. Now, entities with no attributes will be included when "OR" logic is used; excluded when "AND" logic is used.
- Added horizontal scrollbar to entity and relation tables when they are too wide.
IE-VIZ v0.2.0
IE-VIZ v0.1.6
What's changed
- Fixed entity tooltip position issues. Previously, tooltips might sometimes be shifted to the right. Now they always align with entities.
- Added default color names for
color_map_func
. So thecolor_map_func
can either return a color name (e.g., blue, yellow) or a hex color code.def color_map_func(entity) -> str: if entity['attr']['<attribute key>'] == "<a certain value>": return "yellow" else: return "#03A9F4"
IE-VIZ v0.1.5
What's changed
Fixed entity tooltip size issues. Previously, when the tooltip is too long or wide, it flows beyond the screen. Now we restrict it to < 1/3 of the screen size and apply word wrap.
IE-VIZ v0.1.4
What's changed
Added dependence Flask-SocketIO >= 5.3.3