Thomas Thomassen
Thomas Thomassen
There was a few noticeable changes between SU23 and SU24. We changed the underlying library that handled images. That caused some very subtle differences. For instance +/-1 in the RGB...
You mean converting the UTM coordinates into HK1980? No such support in the API. You'd have to find a way yourself to convert to any other coordinate systems.
A leaf is a drawing element that is not a containers (group / component). That's per design. Whether that was the best choice is a different matter, but if we...
Btw, avoid string comparison of class names when checking types - it quickly becomes a bottleneck. ```rb # instead of: if(cm != "Group" && entity.respond_to?(:definition)) entity = entity.definition end #...
Can you explain your scenario and use cases in more detail? Why do you need to drive the UI like this?
The whole linux job got skipped... 🤔 Could it be `if: ${{ github.env.PUBLISH_PYPI }}` that doesn't eval to true? The mac and win jobs doesn't have this conditional.
Looks like it, on the macOS build, the steps that also rely on the env variable was skipped: 
``` ( startsWith(github.ref, 'refs/tags') || (github.event_name == 'schedule') || ( (github.event_name == 'workflow_dispatch') && (github.ref == 'refs/heads/master') ) ) && (github.repository_owner == 'valhalla') ``` Is it possible to run the...
Btw, the workflow file uses both python 3.12 and 3.13 in it's jobs/steps. Is this intended? (not that I think it matters for the linux job not running)
> finally we published the first release of [`pyvalhalla-weekly`](https://pypi.org/project/pyvalhalla-weekly/3.5.1.post1.dev151/)  The `-git` part is now replaced by `-weekly`?