-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
58 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,12 @@ | ||
What's New | ||
#################################################### | ||
|
||
The latest version of the Alias Engine is ``v4.0.0``. | ||
The latest version of the Alias Engine is ``v4.1.1``. | ||
|
||
.. include:: v4.0.0.rst | ||
.. include:: v4.1.1.rst | ||
|
||
.. include:: v4.0.1.rst | ||
|
||
.. include:: v4.0.0.rst | ||
|
||
.. include:: v3.0.0.rst |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
v4.0.1 | ||
===================== | ||
|
||
Release highlights | ||
------------------ | ||
|
||
* Fix Alias Engine restart after Alias application exits unexpectedly |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
v4.1.1 | ||
===================== | ||
|
||
Release highlights | ||
------------------ | ||
|
||
* New publish mode "Export Selection" | ||
* New publish option to choose publish mode | ||
|
||
|
||
New Features | ||
------------- | ||
|
||
The Alias publish plugin "Publish to Flow Production Tracking" has a new Publish Mode option: | ||
|
||
.. image:: images/publish-export-selection.png | ||
:alt: Publish Export Selection | ||
:width: 800px | ||
:align: center | ||
|
||
\ | ||
|
||
The "Default" publish mode will publish the working file as is, as it did before introducing the Publish Mode option, there is no change in behavior. | ||
|
||
The "Export Selection" publish mode will publish only the selected objects in the Alias scene. | ||
|
||
.. note:: | ||
|
||
The working file will not be changed. This means that the published file will differ from the corresponding working file version. | ||
|
||
.. warning:: | ||
|
||
The "Export Selection" publish mode is not supported with Background Publishing. You must turn off the ``Background Processing`` setting in your configuration to use this publish mode. Refer to this `documentation <https://developers.shotgridsoftware.com/tk-multi-bg-publish/add_to_config.html#adding-this-app-to-your-config>`_ on how to turn off this setting. | ||
|
||
By default, the "Default" publish mode is selected. To change the default publish mode, you can modify your configuration file ``tk-multi-publish2.yml``, for example: | ||
|
||
.. code-block:: yaml | ||
settings.tk-multi-publish2.alias.asset_step: | ||
publish_plugins: | ||
- name: Publish to Flow Production Tracking | ||
hook: "{self}/publish_file.py:{engine}/tk-multi-publish2/basic/publish_session.py" | ||
settings: | ||
Publish Template: alias_asset_publish | ||
Publish Mode: Export Selection |