Skip to content

Commit

Permalink
Removes hard wrap from README changelog for better rendering
Browse files Browse the repository at this point in the history
  • Loading branch information
shidarin committed May 4, 2014
1 parent b7d017a commit 9c954fc
Showing 1 changed file with 13 additions and 32 deletions.
45 changes: 13 additions & 32 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -77,43 +77,24 @@ what the input file type is.
Changelog
---------

- Adds much greater ASC CDL XML compliance with the addition of many classes
that represent node concepts in the CDL XML schema.
- Moves ``viewing_desc`` and ``input_desc`` attributes and methods into the
base class ``AscColorSpaceBase``.
- Adds much greater ASC CDL XML compliance with the addition of many classes that represent node concepts in the CDL XML schema.
- Moves ``viewing_desc`` and ``input_desc`` attributes and methods into the base class ``AscColorSpaceBase``.
- Moved ``desc`` attribute and methods into the base class ``AscDescBase``.
- Adds ``ColorCollectionBase`` class for a basis of all collection type
nodes (``ColorCorrectionCollection`` , ``ColorDecisionList`` , etc).
- Adds ``MediaRef`` class which represents the MediaRef node of a
ColorDecision. This class allows convenient handling of files given as
media reference.
- Adds ``HALT_ON_ERROR`` module variable which determines certain exception
handling behavior. Exceptions that can normally be handled with default
behavior (such as negative Slope or Power values) will be dealt with
silently instead of stopping the program. Negative Slope and Power values,
for example, will clip to 0.0.
- Adds ``ColorCollectionBase`` class for a basis of all collection type nodes (``ColorCorrectionCollection`` , ``ColorDecisionList`` , etc).
- Adds ``MediaRef`` class which represents the MediaRef node of a ColorDecision. This class allows convenient handling of files given as media reference.
- Adds ``HALT_ON_ERROR`` module variable which determines certain exception handling behavior. Exceptions that can normally be handled with default behavior (such as negative Slope or Power values) will be dealt with silently instead of stopping the program. Negative Slope and Power values, for example, will clip to 0.0.
- ``ColorCorrection`` (formally ``AscCdl``) class changes:
- Renames ``AscCdl`` to ``ColorCorrection`` .
- Adds class level member dictionary, which allows lookup of a
``ColorCorrection`` instance by the unique ID.
- Adds class level member dictionary, which allows lookup of a ``ColorCorrection`` instance by the unique ID.
- ``ColorCorrection`` objects now require a unique ID to be instantiated.
- Removes ``metadata`` attribute of ``ColorCorrection`` .
- Moves SOP and SAT operations out of ``ColorCorrection`` into their own
classes, which are based on ``ColorNodeBase`` . The ``SatNode`` and
``SopNode`` classes are still meant to be children of
``ColorCorrection``.
- Added ``sop_node`` and ``sat_node`` attributes to access the child
``SatNode`` and ``SopNode`` .
- Removed ``metadata`` attribute, splitting it into the inherited
attributes of ``input_desc``, ``viewing_desc`` and ``desc``.
- ``desc`` attribute is now fully fleshed out as a list of all
encountered description fields.
- Renamed ``cc_id`` field to ``id``, shadowing the built in ``id`` within
the class.
- Slope, Offset and Power now return as a tuple instead of a list to
prevent index assignment, appending and extending.
- ``parse_cc`` should now parse a much greater variety of ``.cc`` files more
accurately.
- Moves SOP and SAT operations out of ``ColorCorrection`` into their own classes, which are based on ``ColorNodeBase`` . The ``SatNode`` and ``SopNode`` classes are still meant to be children of ``ColorCorrection``.
- Added ``sop_node`` and ``sat_node`` attributes to access the child ``SatNode`` and ``SopNode`` .
- Removed ``metadata`` attribute, splitting it into the inherited attributes of ``input_desc``, ``viewing_desc`` and ``desc``.
- ``desc`` attribute is now fully fleshed out as a list of all encountered description fields.
- Renamed ``cc_id`` field to ``id``, shadowing the built in ``id`` within the class.
- Slope, Offset and Power now return as a tuple instead of a list to prevent index assignment, appending and extending.
- ``parse_cc`` should now parse a much greater variety of ``.cc`` files more accurately.
- Now supports infinite Description fields
- Now supports Viewing and Input Description fields
- Significantly simplifies the function.
Expand Down

0 comments on commit 9c954fc

Please sign in to comment.