packages feed

srt 0.1.0.0 → 0.1.1.0

raw patch · 3 files changed

+6/−10 lines, 3 filesPVP: major bump suggested

API removals or changes: PVP suggests a major version bump

API changes (from Hackage documentation)

- Media.Subtitles.SRT: Range :: Time -> Time -> Range
- Media.Subtitles.SRT: Time :: Int -> Int -> Int -> Int -> Time
- Media.Subtitles.SRT: [from] :: Range -> Time
- Media.Subtitles.SRT: [hour] :: Time -> Int
- Media.Subtitles.SRT: [millisecond] :: Time -> Int
- Media.Subtitles.SRT: [minute] :: Time -> Int
- Media.Subtitles.SRT: [second] :: Time -> Int
- Media.Subtitles.SRT: [to] :: Range -> Time
- Media.Subtitles.SRT: data Range
- Media.Subtitles.SRT: data Time
+ Media.Subtitles.SRT: Line :: Int -> Range -> Text -> Line
+ Media.Subtitles.SRT: SRT :: [Line] -> SRT
+ Media.Subtitles.SRT: [dialog] :: Line -> Text
+ Media.Subtitles.SRT: [index] :: Line -> Int
+ Media.Subtitles.SRT: [range] :: Line -> Range
+ Media.Subtitles.SRT: [unSRT] :: SRT -> [Line]
+ Media.Subtitles.SRT: data Line
+ Media.Subtitles.SRT: data SRT

Files

ChangeLog.md view
@@ -1,9 +1,5 @@-# Changelog for simple-media-timestamp--## v0.2.0.0--* Use non-plural fields.+# Changelog for srt -## v0.1.0.0+## v0.1.1.0 -* Add `Time` and `Range` types.+Export SRT datatypes.
src/Media/Subtitles/SRT.hs view
@@ -5,8 +5,8 @@ -- -- The SRT subtitle type. module Media.Subtitles.SRT-  ( Time (..),-    Range (..),+  ( Line (..),+    SRT (..),   ) where 
srt.cabal view
@@ -5,7 +5,7 @@ -- see: https://github.com/sol/hpack  name:           srt-version:        0.1.0.0+version:        0.1.1.0 synopsis:       The data type for SRT files. category:       Media author:         Daniel Firth