This repository was archived by the owner on Nov 27, 2024. It is now read-only.
Releases: willforde/script.module.codequick
Releases · willforde/script.module.codequick
Release v1.0.3
finally fixed auto submitter issue
Release v1.0.2
add testcase for content type issue
Release v1.0.1
create release on tag
v0.9.14
v0.9.13
Changed
- Deprecate the use of class based callbacks.
- Deprecate ability to pass playable url to listitem.set_callback(), use listitem.set_path() instead.
- Deprecate ability to pass a path to a callback when calling listitem.set_callback(), use a callback reference instead.
- Functions that except callbacks can now except a callback reference object. Better for performance.
- Some other performance tweaks.
Added
- Ability to get and set listitem params as attributes, e.g. item.info.genre = "Science Fiction".
- Listitem objects are now fully pickable.
Docs
Script.ref => https://scriptmodulecodequick.readthedocs.io/en/latest/api/script.html#codequick.script.Script.ref
Listitem.set_path -> https://scriptmodulecodequick.readthedocs.io/en/latest/api/listitem.html#codequick.listing.Listitem.set_path
v0.9.13-pre1
This is a pre release version.
Changed
- Deprecate the use of class based callbacks.
- Deprecate ability to pass playable url to listitem.set_callback(), use listitem.set_path() instead.
- Deprecate ability to pass a path to a callback when calling listitem.set_callback(), use a callback reference instead.
- Functions that except callbacks can now except a callback reference object. Better for performance.
Added
- Ability to get and set listitem params as attributes, e.g. item.info.genre = "Science Fiction".
- Listitem objects are now fully pickable.
Docs
Script.ref => https://scriptmodulecodequick.readthedocs.io/en/latest/api/script.html#codequick.script.Script.ref
Listitem.set_path -> https://scriptmodulecodequick.readthedocs.io/en/latest/api/listitem.html#codequick.listing.Listitem.set_path
v0.9.12
Fixed
- Attempt fix for 'import _strptime' failure.
Changed
- Run method now returns the exception that was raise when error occurs
- 'set_callback' now excepts a path to a callback.
- No need to always import callback modules. Modules are auto loaded based on the specified path.
- Some general improvements.
v0.9.10
changed
- Improved error handling
- Delayed callbacks can now be set to run only when there are no errors, or only when there are errors, or run regardless of errors or not.
- Delayed callbacks can now access the exception that was raised by setting an argument name to exception.
Added
- Added support to auto redirect to the first listitem if there is only one single listitem (optional)