packages feed

isobmff-builder 0.2.0.1 → 0.2.0.2

raw patch · 2 files changed

+8/−7 lines, 2 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

isobmff-builder.cabal view
@@ -1,6 +1,6 @@ name:                isobmff-builder-version:             0.2.0.1-synopsis:            A (bytestring-) builder for the ISO base media file format ISO-14496-12+version:             0.2.0.2+synopsis:            A (bytestring-) builder for the ISO-14496-12 base media file format description:         Please see README.md homepage:            https://github.com/sheyll/isobmff-builder#readme license:             BSD3
src/Data/ByteString/IsoBaseFileFormat/Boxes/Box.hs view
@@ -2,11 +2,12 @@  -- | Definition of the most basic element in an ISOBMFF file: a /box/.  See -- Chapter 4 in the standard document.  A box is a container with a type, a--- size, possible some data and some nested boxes.  The standard defines - among--- other characteristics - what boxes exist, what data they contain and how they--- are nested into each other.  This library tries to capture some of these--- characteristics using modern Haskell type system features to provide compile--- checks for (partial) standard compliance.+-- size, some data and some nested boxes. The standard defines - among other+-- characteristics - available box types and their semantics, the fields they+-- contain and how they are nested into each other.  This library tries to+-- capture some of these characteristics using modern Haskell type system+-- features, in order to provide compile time checks for (partial) standard+-- compliance. module Data.ByteString.IsoBaseFileFormat.Boxes.Box        (module Data.ByteString.IsoBaseFileFormat.Boxes.Box, module X)        where