Thanks for your interest in improving Render Queue Manager!
- Clone the repository.
- Zip the root (containing
rqm/) or create a symlink inside your Blender scripts/addons folder. - Enable the add-on in Blender preferences.
- Keep modules focused (
properties,outputs,queue_ops,ui,utils). - Avoid heavy side effects in module import scope.
- Prefer small functions; log warnings instead of raising unless fatal.
Use semantic-like tuple in bl_info['version']. Bump patch for fixes, minor for features.
- Describe feature or fix clearly.
- Note any user-facing changes.
- Update
CHANGELOG.md.
Register a preprocessor via:
import rqm
rqm.queue_ops.JOB_PREPROCESSORS.append(lambda job, scene: (True, ''))Return (False, 'reason') to skip a job.
By contributing you agree your code is MIT licensed.