Skip to content

0.3.0

Compare
Choose a tag to compare
@hannesdelbeke hannesdelbeke released this 02 Mar 15:00
· 91 commits to main since this release

NEW FEATURES

  • SUPPORTS NOW ANY QT APP BY DEFAULT, no more need for making new modules in unimenu. 🚀
  • print errors when command from unimenu fails, now runs commands in try except
  • added unimenu.load_all_configs() which discovers all configs from the UNIMENU_CONFIG_PATH env var
  • add custom data support to the config
  • add unique id to menu nodes. not garantueed to be unique yet. example name PARENT1_PARENT2_LABEL
  • add support for teardown for qt nodes. enabling you to remove the menu e.g. on plugin unload.
  • added support for PySide6, to support modern apps such as CryEngine.
  • swapped Autodesk Max & Maya to use Qt instead of their native menubuilders. much cleaner for Max, menus now don't persist across sessions.

POSSIBLE BREAKING BACKWARDS COMPATIBLE
renamed dcc to app in code.
if you e.g. use unimenu.dccs.qt, you now need to swap to unimenu.apps.qt
note that this doesn't affect top level methods. so you likely are good.

OTHER

  • update README & wiki
  • update python version for pypi
  • updated sample code any_dcc_test.py to include more features