Skip to content

Commit

Permalink
Add 17.1 changes
Browse files Browse the repository at this point in the history
  • Loading branch information
zlovatt committed Jun 18, 2020
1 parent b1b7611 commit 6b0cb24
Show file tree
Hide file tree
Showing 3 changed files with 74 additions and 5 deletions.
19 changes: 16 additions & 3 deletions docs/introduction/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,22 @@ What's new and changed for scripting?

----

.. _Changelog.17.1.1:

`After Effects 17.1.1 <https://helpx.adobe.com/after-effects/using/whats-new/2020-1.html>`_ (May 2020)
************************************************************************************************************************************

- Scripting access to Shape Layer Stroke Taper, Stroke Waves, Offset Paths Copies, Offset Path Copy Offset
- Added relevant :ref:`match names <matchnames-layer-shapelayer>`
- Fixed an issue to allow negative values for :ref:`CompItem.displayStartTime`:
- Added :ref:`CompItem.displayStartFrame`
- Now matches the valid range allowed when setting the Start Timecode in the Composition Settings Dialog (-3:00:00:00 to 23:59:00:00).

----

.. _Changelog.17.0.1:

`After Effects 17.0.1`_
`After Effects 17.0.1 <https://helpx.adobe.com/after-effects/using/whats-new/2020.html>`_ (November 2019)
************************************************************************************************************************************

- Scripted creation and modification of Dropdown Menu Control items:
Expand Down Expand Up @@ -43,7 +56,7 @@ What's new and changed for scripting?

.. _Changelog.16.0:

`After Effects 16.0`_
`After Effects 16.0 <https://helpx.adobe.com/after-effects/using/whats-new/2019.html>`_ (October 2018)
************************************************************************************************************************************

- Scripting access to marker label and protectedRegion attributes:
Expand All @@ -64,7 +77,7 @@ What's new and changed for scripting?

.. _Changelog.15-1:

`After Effects 15.1`_
`After Effects 15.1 <https://helpx.adobe.com/after-effects/using/whats-new/2018.html>`_ (April 2018)
************************************************************************************************************************************

- :ref:`Project.autoFixExpressions` will now fix expression name references in single quotes (ex., ('Effect Name')), as well as double quotes.
Expand Down
26 changes: 24 additions & 2 deletions docs/items/compitem.rst
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,26 @@ An array containing three floating-point values, ``[R, G, B]``, in the range ``[

----

.. _CompItem.displayStartFrame:

CompItem.displayStartFrame
*********************************************

``app.project.item(index).displayStartFrame``

**Description**

The frame value of the beginning of the composition. This value is calculated using :ref:`CompItem.displayStartTime` and :ref:`CompItem.frameDuration`.

.. note::
This functionality was added in After Effects 17.1.

**Type**

Integer; read/write.

----

.. _CompItem.displayStartTime:

CompItem.displayStartTime
Expand All @@ -74,10 +94,12 @@ CompItem.displayStartTime

The time set as the beginning of the composition, in seconds. This is the equivalent of the Start Timecode or Start Frame setting in the Composition Settings dialog box.

.. note::
As of After Effects 17.1, the minimum value is ``-10800.0``. Before 17.1, the minimum value was 0.0

**Type**

Floating-point value in the range ``[0.0...86339.0]``
(1 second less than 25 hours); read/write.
Floating-point value in the range ``[-10800.0...86339.0]`` (-3:00:00:00 to 23:59:00:00); read/write.

----

Expand Down
34 changes: 34 additions & 0 deletions docs/matchnames/layer/shapelayer.rst
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,36 @@ Shape Layer Match Names
+--------------------+-------------------------------------+-----------------------+
| |
+--------------------+-------------------------------------+-----------------------+
| *Stroke Taper* | ``ADBE Vector Stroke Taper`` | Taper |
+ +-------------------------------------+-----------------------+
| | ``ADBE Vector Taper Start Width`` | Start Width |
+ +-------------------------------------+-----------------------+
| | ``ADBE Vector Taper Length Units`` | Length Units |
+ +-------------------------------------+-----------------------+
| | ``ADBE Vector Taper End Width`` | End Width |
+ +-------------------------------------+-----------------------+
| | ``ADBE Vector Taper End Ease`` | End Ease |
+ +-------------------------------------+-----------------------+
| | ``ADBE Vector Taper End Length`` | End Length |
+ +-------------------------------------+-----------------------+
| | ``ADBE Vector Taper Start Length`` | Start Length |
+ +-------------------------------------+-----------------------+
| | ``ADBE Vector Taper Start Ease`` | Start Ease |
+--------------------+-------------------------------------+-----------------------+
| |
+--------------------+-------------------------------------+-----------------------+
| *Stroke Wave* | ``ADBE Vector Stroke Wave`` | Wave |
+ +-------------------------------------+-----------------------+
| | ``ADBE Vector Taper Wave Amount`` | Amount |
+ +-------------------------------------+-----------------------+
| | ``ADBE Vector Taper Wave Units`` | Units |
+ +-------------------------------------+-----------------------+
| | ``ADBE Vector Taper Wave Phase`` | Phase |
+ +-------------------------------------+-----------------------+
| | ``ADBE Vector Taper Wavelength`` | Wavelength |
+--------------------+-------------------------------------+-----------------------+
| |
+--------------------+-------------------------------------+-----------------------+
| *Gradient Fill* | ``ADBE Vector Graphic - G-Fill`` | Gradient Fill |
+ +-------------------------------------+-----------------------+
| | ``ADBE Vector Blend Mode`` | Blend Mode |
Expand Down Expand Up @@ -179,6 +209,10 @@ Shape Layer Match Names
| | ``ADBE Vector Offset Line Join`` | Line Join |
+ +-------------------------------------+-----------------------+
| | ``ADBE Vector Offset Miter Limit`` | Miter Limit |
+ +-------------------------------------+-----------------------+
| | ``ADBE Vector Offset Copies`` | Copies |
+ +-------------------------------------+-----------------------+
| | ``ADBE Vector Offset Copy Offset`` | Copy Offset |
+--------------------+-------------------------------------+-----------------------+
| |
+--------------------+-------------------------------------+-----------------------+
Expand Down

0 comments on commit 6b0cb24

Please sign in to comment.