3.2.0 release notes formatting

This commit is contained in:
wiredfool 2016-04-01 06:58:41 -07:00
parent 344cb709ed
commit c01f51dfff

View File

@ -1,36 +1,36 @@
3.2.0 3.2.0
===== -----
New DDS and FTEX Image Plugins New DDS and FTEX Image Plugins
============================== ==============================
The `DdsImagePlugin` reading DXT1 and DXT5 encoded `.dds` images was The ``DdsImagePlugin`` reading DXT1 and DXT5 encoded ``.dds`` images was
added. DXT3 images are not currently supported. added. DXT3 images are not currently supported.
The `FtexImagePlugin` reads textures used for 3D objects in The ``FtexImagePlugin`` reads textures used for 3D objects in
Independence War 2: Edge Of Chaos. The plugin reads a single texture Independence War 2: Edge Of Chaos. The plugin reads a single texture
per file, in the `.ftc` (compressed) and `.ftu` (uncompressed) per file, in the ``.ftc`` (compressed) and ``.ftu`` (uncompressed)
formats. formats.
Updates to the GbrImagePlugin Updates to the GbrImagePlugin
============================= =============================
The `GbrImagePlugin` (GIMP brush format) has been updated to fix The ``GbrImagePlugin`` (GIMP brush format) has been updated to fix
support for version 1 files and add support for version 2 files. support for version 1 files and add support for version 2 files.
Passthrough Parameters for ImageDraw.text Passthrough Parameters for ImageDraw.text
========================================= =========================================
`ImageDraw.multiline_text` and `ImageDraw.multiline_size` take extra ``ImageDraw.multiline_text`` and ``ImageDraw.multiline_size`` take extra
spacing parameters above what are used in `ImageDraw.text` and spacing parameters above what are used in ``ImageDraw.text`` and
`ImageDraw.size`. These parameters can now be passed into ``ImageDraw.size``. These parameters can now be passed into
`ImageDraw.text` and `ImageDraw.size` and they will be passed through ``ImageDraw.text`` and ``ImageDraw.size`` and they will be passed through
to the corresponding multiline functions. to the corresponding multiline functions.
ImageSequence.Iterator changes ImageSequence.Iterator changes
============================== ==============================
`ImageSequence.Iterator` is now an actual iterator implementing the ``ImageSequence.Iterator`` is now an actual iterator implementing the
Iterator protocol. It is also now possible to seek to the first image Iterator protocol. It is also now possible to seek to the first image
of the file when using direct indexing. of the file when using direct indexing.