Trame-vtk

Latest version: v2.8.15

Safety actively analyzes 723650 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

Page 7 of 12

2.4.2

Bug Fixes

- **behavior**: Implement handler for vtkOrientationMarkerWidget
([`01e035f`](https://github.com/Kitware/trame-vtk/commit/01e035ff6f8f3fd52717b627f6db57961f4debc1))

- **LocalView**: Add infrastructure to support behaviors
([`26e1945`](https://github.com/Kitware/trame-vtk/commit/26e194535c2e5ca910ebc053b16bd7abacd91cbe))

- **VtkRemoteLocalView**: Add support for widgets
([`79d106a`](https://github.com/Kitware/trame-vtk/commit/79d106ac2ffb432517bef8f57d80551ff699466d))

- **vue-vtk-js**: Bump version of vue-vtk-js
([`11c14b9`](https://github.com/Kitware/trame-vtk/commit/11c14b9b19a6fe1d8019c63c2d94806caf438954))

Signed-off-by: Patrick Avery <patrick.averykitware.com>

- **widgets**: Use proper order initialization
([`f3c0505`](https://github.com/Kitware/trame-vtk/commit/f3c05053a81786fc1627cd55f5a360b580c52a10))

Documentation

- **examples**: Add button toggles for widgets
([`ed307b3`](https://github.com/Kitware/trame-vtk/commit/ed307b32b888e9698e87f5f6af14b5f3cb2e4d8f))

- **examples**: Add pyvista axes widget examples
([`b1598f6`](https://github.com/Kitware/trame-vtk/commit/b1598f61c6a53d77acd5688026560069153e6886))

- **examples**: Simplify code
([`b9afcea`](https://github.com/Kitware/trame-vtk/commit/b9afceadd32a565aef380ec148a05d014e115687))

- **examples**: Update the widget ones
([`cdda471`](https://github.com/Kitware/trame-vtk/commit/cdda471df5c2364e7359c2d6533ffcd4e4b38cf0))

2.4.1

Bug Fixes

- **paraview**: Fix protocol
([`b72425c`](https://github.com/Kitware/trame-vtk/commit/b72425cdde30344b15cebf8dd1b11aa62701176f))

2.4.0

Bug Fixes

- **helper**: Update name to `_trame_server`
([`2b2b607`](https://github.com/Kitware/trame-vtk/commit/2b2b607da8abc3639b791c4411ffb22d9d3a147c))

This is the correct name

Signed-off-by: Patrick Avery <patrick.averykitware.com>

- **logger**: Add environment variable for setting serializer log level
([`3c1614c`](https://github.com/Kitware/trame-vtk/commit/3c1614c82f47528e71de69916baa22961177c3d9))

Now, only critical messages from serializers are printed by default, unless the
`TRAME_SERIALIZE_DEBUG` environment variable is set, in which case all logger output will be
printed from the serializers.

Signed-off-by: Patrick Avery <patrick.averykitware.com>

- **messages**: Only print no serializer warning once per instance type
([`65db322`](https://github.com/Kitware/trame-vtk/commit/65db3229b9b0d15183a3fa882a825b4a9ea745ea))

Signed-off-by: Patrick Avery <patrick.averykitware.com>

- **mouse_handler**: Apply a couple of fixes to mouse wheel event
([`45505ef`](https://github.com/Kitware/trame-vtk/commit/45505ef25bb76a4d04bddd9cecdc375999de9e1b))

First of all, this updates the interactor with the mouse position on a wheel event so that if there
are multiple renderers, the interactor can figure out which one needs to be updated.

Second, this forwards the event to the interactor, rather than applying a manual zoom to the camera
ourselves. This makes the behavior more consistent.

Third, this skips the zoom for the start event, since there appears to always be a wheel event right
after it.

Fixes: pyvista/pyvista4020

Signed-off-by: Patrick Avery <patrick.averykitware.com>

- **mouse_handler**: Only trigger animation registration on first "down"
([`88bac50`](https://github.com/Kitware/trame-vtk/commit/88bac500cbd3d6f3775a7cab9170c775a5683ff6))

This was copied over from the ParaView version of the mouse handler.

Signed-off-by: Patrick Avery <patrick.averykitware.com>

- **paraview**: Update mouse wheel to match VTK version
([`6f93186`](https://github.com/Kitware/trame-vtk/commit/6f931867e3b63aa59e03799495ade03c59b31abf))

Signed-off-by: Patrick Avery <patrick.averykitware.com>

- **vue-vtk-js**: Update vue-vtk-js to the newest version
([`eb7310d`](https://github.com/Kitware/trame-vtk/commit/eb7310dd9e763b069de438ad33db3173965c2e81))

This includes mouse position information for moving the mouse wheel, which we need.

Signed-off-by: Patrick Avery <patrick.averykitware.com>

- **vue-vtk-js**: Upgrade to prevent client error on unmount
([`3a2acee`](https://github.com/Kitware/trame-vtk/commit/3a2aceececd6f70e2bc4e78c309b051723eb9d45))

Signed-off-by: Patrick Avery <patrick.averykitware.com>

Chores

- **checks**: Remove checks for wslink
([`5fea67d`](https://github.com/Kitware/trame-vtk/commit/5fea67d77d09f9f6468f63814c617d9d3e1f6786))

It is required and we don't need to check for its presence.

Signed-off-by: Patrick Avery <patrick.averykitware.com>

- **future**: Remove unneeded future imports
([`dd57968`](https://github.com/Kitware/trame-vtk/commit/dd579681599e658cc891f93f7494f97556d03de6))

Signed-off-by: Patrick Avery <patrick.averykitware.com>

Code Style

- **formatting**: Fix flake8 and black issues
([`e69c80c`](https://github.com/Kitware/trame-vtk/commit/e69c80c64cce9b3cbd827a27efb743d5edf9e76f))

Signed-off-by: Patrick Avery <patrick.averykitware.com>

Features

- **protocols**: Copy protocols from VTK exactly
([`9fe3c26`](https://github.com/Kitware/trame-vtk/commit/9fe3c261bc78a8814e1f4bab37ac6df3977144d8))

This copies the protocols and render_window_serializer from VTK exactly as they are. Further commits
will modify the code.

Signed-off-by: Patrick Avery <patrick.averykitware.com>

Refactoring

- **case**: Convert most variables from camelCase to snake_case
([`ba9beaf`](https://github.com/Kitware/trame-vtk/commit/ba9beaf5060ab2b992a85d7ae701f3f4853deba2))

I went through the code and automatically converted most of the variables from camelCase to
snake_case using regex in vim. I skipped a couple of cases in particular:

1. Anything that started with `vtk` (this might be a VTK object) 2. Anything in quotes (since they
might be strings sent to VTK.js)

There were, however, some things still that were modified that should not have been. I tried to
manually fix these, but I may have not caught everything, so we should do testing to verify.

Signed-off-by: Patrick Avery <patrick.averykitware.com>

- **initializeSerializers()**: Reduce repetition
([`7e8b213`](https://github.com/Kitware/trame-vtk/commit/7e8b21332a3c4b3edd901047fb0568ec169012ed))

Signed-off-by: Patrick Avery <patrick.averykitware.com>

- **paraview**: Copy paraview protocols into repo
([`43fdc97`](https://github.com/Kitware/trame-vtk/commit/43fdc97989a16f5bf72b9d73ce7a591523acecf9))

This also splits them up into separate files.

Signed-off-by: Patrick Avery <patrick.averykitware.com>

- **paraview**: Fix import path for vtk_mesh
([`b3578a7`](https://github.com/Kitware/trame-vtk/commit/b3578a7d3b8aabb6ef0fa3b76c5280b3ba9e0c62))

Signed-off-by: Patrick Avery <patrick.averykitware.com>

- **protocols**: Break up protocols into separate files
([`7336447`](https://github.com/Kitware/trame-vtk/commit/73364475eb881b1752779ee558f1d87ad4a2f327))

Signed-off-by: Patrick Avery <patrick.averykitware.com>

- **protocols**: Remove unused protocols
([`d24e998`](https://github.com/Kitware/trame-vtk/commit/d24e9984d46b2bea194ea3e8a15a7208bfeba00c))

Signed-off-by: Patrick Avery <patrick.averykitware.com>

- **protocols**: Use local versions of protocols
([`315f06f`](https://github.com/Kitware/trame-vtk/commit/315f06fc99acf293c6dcbc6fc2457f1880cd07f1))

This appears to be working at least on a basic level.

Signed-off-by: Patrick Avery <patrick.averykitware.com>

- **pwf**: Move pwf serializer into lookup_tables
([`1ef8fd9`](https://github.com/Kitware/trame-vtk/commit/1ef8fd97682e262214e80dbde7889617c5a9c40c))

Signed-off-by: Patrick Avery <patrick.averykitware.com>

- **registry**: Remove unused context variable
([`5fd2640`](https://github.com/Kitware/trame-vtk/commit/5fd26407a1077874d7427c49407c7cf8d55bbb8e))

Signed-off-by: Patrick Avery <patrick.averykitware.com>

- **render_window_serializer**: Rename to serializers
([`1bec149`](https://github.com/Kitware/trame-vtk/commit/1bec1497279b1c95337bf9245ab7bfcccd730810))

This name fits better since it contains all kinds of serializers.

Signed-off-by: Patrick Avery <patrick.averykitware.com>

- **serialize**: Break up serializers into separate files
([`57d5f0d`](https://github.com/Kitware/trame-vtk/commit/57d5f0debab099e5918fed00e1c66c9556bd22b6))

Signed-off-by: Patrick Avery <patrick.averykitware.com>

- **serializers**: Apply patches from addon_serializer
([`a93a540`](https://github.com/Kitware/trame-vtk/commit/a93a5400f542c529024e18941f9323c7623cea12))

This takes the patches being applied in addon_serializer.py and puts them directly in the render
window serializer. We should verify that there are no issues. But I did notice some discrepancies:

1. I saw no difference in `extractRequiredFields()` 2. The addon serializer did not call
`registerInstanceSerializer()` on `vtkStructuredPoints` with the modified `imagedataSerializer`
(only difference is that extent is used instead of dimensions). 3. The addon serializer did not
call `registerInstanceSerializer()` on `vtkColorTransferFunction` with the modified
`colorTransferFunctionSerializer`. 4. `genericMapperSerializer()` only had debug message
modifications

Signed-off-by: Patrick Avery <patrick.averykitware.com>

- **serializers**: Move into subdirectory
([`114a83b`](https://github.com/Kitware/trame-vtk/commit/114a83b5ac4265a9d989b85ef0e389367fc10b76))

The file will be broken apart soon as well.

Signed-off-by: Patrick Avery <patrick.averykitware.com>

- **serializers**: Move one directory up
([`bd6c3da`](https://github.com/Kitware/trame-vtk/commit/bd6c3da1caf27837a7691ce95437155970473692))

It should be a sibling of the protocols, not a child.

Signed-off-by: Patrick Avery <patrick.averykitware.com>

- **updateZoomFromWheel**: Remove duplicated code
([`c9c07da`](https://github.com/Kitware/trame-vtk/commit/c9c07da41b71ecfbd6afa65db7ceeaf0609c5572))

Signed-off-by: Patrick Avery <patrick.averykitware.com>

- **utils**: Copy utils from vtk web
([`d338893`](https://github.com/Kitware/trame-vtk/commit/d338893528675ba17d24ed9c386ec27cfac67656))

This is one less dependency we need from vtkmodules.web

Signed-off-by: Patrick Avery <patrick.averykitware.com>

- **web**: Remove last use of vtkmodules.web
([`fcef60a`](https://github.com/Kitware/trame-vtk/commit/fcef60a42f19dac24bdede46ccda98758b75b8eb))

The functions being used were copied over.

Signed-off-by: Patrick Avery <patrick.averykitware.com>

2.3.5

Bug Fixes

- Axes serializer
([`cc2136d`](https://github.com/Kitware/trame-vtk/commit/cc2136df0d4ff850f25f791ffc76f3ae2ba10a92))

2.3.4

Bug Fixes

- **RemoteView**: Support no size at startup
([`29c5587`](https://github.com/Kitware/trame-vtk/commit/29c5587f0ca72c78972d6304a48d469231d523e6))

2.3.3

Bug Fixes

- **RemoteView**: Initial still_ratio
([`130ff9a`](https://github.com/Kitware/trame-vtk/commit/130ff9a0c146e91ac2230f8cc81fc5eb468d6b73))

fix 25

Page 7 of 12

© 2025 Safety CLI Cybersecurity Inc. All Rights Reserved.