Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Initial version of #283 #284

Open
wants to merge 19 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,13 @@ pyblish Changelog

This contains all major version changes between pyblish releases.

Version 1.4.2
-------------

- Implemented #283, common processing loop
- Implemented #285, memory optimisation
- BACKWARD INCOMPATIBLE: `context != instance.context`, comparisons must now be made via `context.id` instead.

Version 1.4.1
-------------

Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Test-driven content creation for collaborative, creative projects.

Pyblish is a modular framework, consisting of many sub-projects. This project contains the primary API upon which all other projects build.

You may use this project as-is, or in conjunction with surrounding projects - such as [pyblish-maya][] for integration with Autodesk Maya, [pyblish-qml][] for a visual front-end and [pyblish-magenta][] for a starting point your publishing pipeline.
You may use this project as-is, or in conjunction with surrounding projects - such as [pyblish-maya][] for integration with Autodesk Maya, [pyblish-qml][] for a visual front-end and [pyblish-magenta][] for a starting point to your publishing pipeline.

[pyblish-maya]: https://github.com/pyblish/pyblish-maya
[pyblish-qml]: https://github.com/pyblish/pyblish-qml
Expand All @@ -40,7 +40,7 @@ pyblish-base is avaialble on PyPI.
$ pip install pyblish-base
```

Like all other Pyblish projects, it may also be clone as-is via Git and added to your PYTHONPATH.
Like all other Pyblish projects, it may also be cloned as-is via Git and added to your PYTHONPATH.

```bash
$ git clone https://github.com/pyblish/pyblish-base.git
Expand All @@ -58,8 +58,8 @@ $ export PYTHONPATH=$(pwd)/pyblish-base

Refer to the [getting started guide](http://learn.pyblish.com) for a gentle introduction to the framework and [the forums](http://forums.pyblish.com) for tips and tricks.

- [Learn Pyblish By Example](http://learn.pyblish.com)
- [Forums](http://forums.pyblish.com)
- [**learn**.pyblish.com](http://learn.pyblish.com)
- [**forums**.pyblish.com](http://forums.pyblish.com)

[travis-image]: https://travis-ci.org/pyblish/pyblish-base.svg?branch=master
[travis-link]: https://travis-ci.org/pyblish/pyblish-base
Expand All @@ -68,8 +68,8 @@ Refer to the [getting started guide](http://learn.pyblish.com) for a gentle intr

[cover-image]: https://coveralls.io/repos/pyblish/pyblish-base/badge.svg
[cover-link]: https://coveralls.io/r/pyblish/pyblish-base
[pypi-image]: https://badge.fury.io/py/pyblish.svg
[pypi-link]: http://badge.fury.io/py/pyblish
[pypi-image]: https://badge.fury.io/py/pyblish-base.svg
[pypi-link]: http://badge.fury.io/py/pyblish-base
[landscape-image]: https://landscape.io/github/pyblish/pyblish-base/master/landscape.png
[landscape-repo]: https://landscape.io/github/pyblish/pyblish-base/master
[gitter-image]: https://badges.gitter.im/Join%20Chat.svg
13 changes: 7 additions & 6 deletions pyblish/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,11 +69,6 @@
deregister_all_services,
registered_services,

register_callback,
deregister_callback,
deregister_all_callbacks,
registered_callbacks,

sort as sort_plugins,

registered_paths,
Expand All @@ -85,9 +80,15 @@
log,
time as __time,
emit,
main_package_path as __main_package_path
main_package_path as __main_package_path,

register_callback,
deregister_callback,
deregister_all_callbacks,
registered_callbacks,
)


from .logic import (
plugins_by_family,
plugins_by_host,
Expand Down
Loading