gi-ges 1.0.1 → 1.0.2
raw patch · 4 files changed
+9/−5 lines, 4 filesdep ~textsetup-changedPVP: major bump suggested
API removals or changes: PVP suggests a major version bump
Dependency ranges changed: text
API changes (from Hackage documentation)
- GI.GES.Callbacks: type BaseEffectTimeTranslationFunc = BaseEffect " /@effect@/: The t'GI.GES.Objects.BaseEffect.BaseEffect' that is doing the time translation" -> Word64 " /@time@/: The @/GstClockTime/@ to translation" -> Map Text GValue " /@timePropertyValues@/: A table of child property name\/value pairs" -> IO Word64 " __Returns:__ The translated time."
+ GI.GES.Callbacks: type BaseEffectTimeTranslationFunc = -- | /@effect@/: The t'GI.GES.Objects.BaseEffect.BaseEffect' that is doing the time translation BaseEffect -> -- | /@time@/: The @/GstClockTime/@ to translation Word64 -> -- | /@timePropertyValues@/: A table of child -- property name\/value pairs Map Text GValue -> -- | __Returns:__ The translated time. IO Word64
- GI.GES.Callbacks: type BaseEffectTimeTranslationFunc_WithClosures = BaseEffect " /@effect@/: The t'GI.GES.Objects.BaseEffect.BaseEffect' that is doing the time translation" -> Word64 " /@time@/: The @/GstClockTime/@ to translation" -> Map Text GValue " /@timePropertyValues@/: A table of child property name\/value pairs" -> Ptr () " /@userData@/: Data passed to 'GI.GES.Objects.BaseEffect.baseEffectSetTimeTranslationFuncs'" -> IO Word64 " __Returns:__ The translated time."
+ GI.GES.Callbacks: type BaseEffectTimeTranslationFunc_WithClosures = -- | /@effect@/: The t'GI.GES.Objects.BaseEffect.BaseEffect' that is doing the time translation BaseEffect -> -- | /@time@/: The @/GstClockTime/@ to translation Word64 -> -- | /@timePropertyValues@/: A table of child -- property name\/value pairs Map Text GValue -> -- | /@userData@/: Data passed to 'GI.GES.Objects.BaseEffect.baseEffectSetTimeTranslationFuncs' Ptr () -> -- | __Returns:__ The translated time. IO Word64
- GI.GES.Callbacks: type CreateTrackElementFunc = Clip " /@clip@/: A t'GI.GES.Objects.Clip.Clip'" -> [TrackType] " /@type@/: A t'GI.GES.Flags.TrackType' to create a t'GI.GES.Objects.TrackElement.TrackElement' for" -> IO (Maybe TrackElement) " __Returns:__ The t'GI.GES.Objects.TrackElement.TrackElement' created by /@clip@/, or 'P.Nothing' if /@clip@/ can not provide a track element for the given /@type@/ or an error occurred."
+ GI.GES.Callbacks: type CreateTrackElementFunc = -- | /@clip@/: A t'GI.GES.Objects.Clip.Clip' Clip -> -- | /@type@/: A t'GI.GES.Flags.TrackType' to create a t'GI.GES.Objects.TrackElement.TrackElement' for [TrackType] -> -- | __Returns:__ The t'GI.GES.Objects.TrackElement.TrackElement' created -- by /@clip@/, or 'P.Nothing' if /@clip@/ can not provide a track element for the -- given /@type@/ or an error occurred. IO (Maybe TrackElement)
- GI.GES.Callbacks: type CreateTrackElementsFunc = Clip " /@clip@/: A t'GI.GES.Objects.Clip.Clip'" -> [TrackType] " /@type@/: A t'GI.GES.Flags.TrackType' to create t'GI.GES.Objects.TrackElement.TrackElement'-s for" -> IO [TrackElement] " __Returns:__ A list of the t'GI.GES.Objects.TrackElement.TrackElement'-s created by /@clip@/ for the given /@type@/, or 'P.Nothing' if no track elements are created or an error occurred."
+ GI.GES.Callbacks: type CreateTrackElementsFunc = -- | /@clip@/: A t'GI.GES.Objects.Clip.Clip' Clip -> -- | /@type@/: A t'GI.GES.Flags.TrackType' to create t'GI.GES.Objects.TrackElement.TrackElement'-s for [TrackType] -> -- | __Returns:__ A list of -- the t'GI.GES.Objects.TrackElement.TrackElement'-s created by /@clip@/ for the given /@type@/, or 'P.Nothing' -- if no track elements are created or an error occurred. IO [TrackElement]
- GI.GES.Callbacks: type ExtractableCheckId = GType " /@type@/: The t'GI.GES.Interfaces.Extractable.Extractable' type to check /@id@/ for" -> Text " /@id@/: The ID to check" -> IO Text " /(Can throw 'Data.GI.Base.GError.GError')/"
+ GI.GES.Callbacks: type ExtractableCheckId = -- | /@type@/: The t'GI.GES.Interfaces.Extractable.Extractable' type to check /@id@/ for GType -> -- | /@id@/: The ID to check Text -> -- | /(Can throw 'Data.GI.Base.GError.GError')/ IO Text
- GI.GES.Callbacks: type FillTrackElementFunc = Clip " /@clip@/: The t'GI.GES.Objects.Clip.Clip' controlling the track elements" -> TrackElement " /@trackElement@/: The t'GI.GES.Objects.TrackElement.TrackElement'" -> Element " /@nleobj@/: The nleobject that needs to be filled" -> IO Bool " __Returns:__ 'P.True' if the implementer successfully filled the /@nleobj@/."
+ GI.GES.Callbacks: type FillTrackElementFunc = -- | /@clip@/: The t'GI.GES.Objects.Clip.Clip' controlling the track elements Clip -> -- | /@trackElement@/: The t'GI.GES.Objects.TrackElement.TrackElement' TrackElement -> -- | /@nleobj@/: The nleobject that needs to be filled Element -> -- | __Returns:__ 'P.True' if the implementer successfully filled the /@nleobj@/. IO Bool
- GI.GES.Callbacks: type FormatterCanLoadURIMethod = Formatter -> Text -> IO () " /(Can throw 'Data.GI.Base.GError.GError')/"
+ GI.GES.Callbacks: type FormatterCanLoadURIMethod = Formatter -> Text -> -- | /(Can throw 'Data.GI.Base.GError.GError')/ IO ()
- GI.GES.Callbacks: type FormatterLoadFromURIMethod = Formatter " /@formatter@/: a t'GI.GES.Objects.Formatter.Formatter'" -> Timeline " /@timeline@/: a t'GI.GES.Objects.Timeline.Timeline'" -> Text " /@uri@/: a @/gchar/@ * pointing to a URI" -> IO () " __Returns:__ TRUE if the timeline data was successfully loaded from the URI, else FALSE. /(Can throw 'Data.GI.Base.GError.GError')/"
+ GI.GES.Callbacks: type FormatterLoadFromURIMethod = -- | /@formatter@/: a t'GI.GES.Objects.Formatter.Formatter' Formatter -> -- | /@timeline@/: a t'GI.GES.Objects.Timeline.Timeline' Timeline -> -- | /@uri@/: a @/gchar/@ * pointing to a URI Text -> -- | __Returns:__ TRUE if the timeline data was successfully loaded from the URI, -- else FALSE. /(Can throw 'Data.GI.Base.GError.GError')/ IO ()
- GI.GES.Callbacks: type FormatterSaveToURIMethod = Formatter " /@formatter@/: a t'GI.GES.Objects.Formatter.Formatter'" -> Timeline " /@timeline@/: a t'GI.GES.Objects.Timeline.Timeline'" -> Text " /@uri@/: a @/gchar/@ * pointing to a URI" -> Bool " /@overwrite@/: 'P.True' to overwrite file if it exists" -> IO () " __Returns:__ TRUE if the timeline data was successfully saved to the URI else FALSE. /(Can throw 'Data.GI.Base.GError.GError')/"
+ GI.GES.Callbacks: type FormatterSaveToURIMethod = -- | /@formatter@/: a t'GI.GES.Objects.Formatter.Formatter' Formatter -> -- | /@timeline@/: a t'GI.GES.Objects.Timeline.Timeline' Timeline -> -- | /@uri@/: a @/gchar/@ * pointing to a URI Text -> -- | /@overwrite@/: 'P.True' to overwrite file if it exists Bool -> -- | __Returns:__ TRUE if the timeline data was successfully saved to the URI -- else FALSE. /(Can throw 'Data.GI.Base.GError.GError')/ IO ()
- GI.GES.Callbacks: type MetaForeachFunc = MetaContainer " /@container@/: A t'GI.GES.Interfaces.MetaContainer.MetaContainer'" -> Text " /@key@/: The key for one of /@container@/\'s fields" -> GValue " /@value@/: The set value under /@key@/" -> IO ()
+ GI.GES.Callbacks: type MetaForeachFunc = -- | /@container@/: A t'GI.GES.Interfaces.MetaContainer.MetaContainer' MetaContainer -> -- | /@key@/: The key for one of /@container@/\'s fields Text -> -- | /@value@/: The set value under /@key@/ GValue -> IO ()
- GI.GES.Callbacks: type MetaForeachFunc_WithClosures = MetaContainer " /@container@/: A t'GI.GES.Interfaces.MetaContainer.MetaContainer'" -> Text " /@key@/: The key for one of /@container@/\'s fields" -> GValue " /@value@/: The set value under /@key@/" -> Ptr () " /@userData@/: User data" -> IO ()
+ GI.GES.Callbacks: type MetaForeachFunc_WithClosures = -- | /@container@/: A t'GI.GES.Interfaces.MetaContainer.MetaContainer' MetaContainer -> -- | /@key@/: The key for one of /@container@/\'s fields Text -> -- | /@value@/: The set value under /@key@/ GValue -> -- | /@userData@/: User data Ptr () -> IO ()
- GI.GES.Interfaces.MetaContainer: type MetaContainerNotifyMetaCallback = Text " /@key@/: The key for the /@container@/ field that changed" -> Maybe GValue " /@value@/: The new value under /@key@/" -> IO ()
+ GI.GES.Interfaces.MetaContainer: type MetaContainerNotifyMetaCallback = -- | /@key@/: The key for the /@container@/ field that changed Text -> -- | /@value@/: The new value under /@key@/ Maybe GValue -> IO ()
- GI.GES.Objects.Container: type ContainerChildAddedCallback = TimelineElement " /@element@/: The child that was added" -> IO ()
+ GI.GES.Objects.Container: type ContainerChildAddedCallback = -- | /@element@/: The child that was added TimelineElement -> IO ()
- GI.GES.Objects.Container: type ContainerChildRemovedCallback = TimelineElement " /@element@/: The child that was removed" -> IO ()
+ GI.GES.Objects.Container: type ContainerChildRemovedCallback = -- | /@element@/: The child that was removed TimelineElement -> IO ()
- GI.GES.Objects.Layer: type LayerActiveChangedCallback = Bool " /@active@/: Whether /@layer@/ has been made active or de-active in the /@tracks@/" -> [Track] " /@tracks@/: A list of t'GI.GES.Objects.Track.Track' which have been activated or deactivated" -> IO ()
+ GI.GES.Objects.Layer: type LayerActiveChangedCallback = -- | /@active@/: Whether /@layer@/ has been made active or de-active in the /@tracks@/ Bool -> -- | /@tracks@/: A list of t'GI.GES.Objects.Track.Track' -- which have been activated or deactivated [Track] -> IO ()
- GI.GES.Objects.Layer: type LayerClipAddedCallback = Clip " /@clip@/: The clip that was added" -> IO ()
+ GI.GES.Objects.Layer: type LayerClipAddedCallback = -- | /@clip@/: The clip that was added Clip -> IO ()
- GI.GES.Objects.Layer: type LayerClipRemovedCallback = Clip " /@clip@/: The clip that was removed" -> IO ()
+ GI.GES.Objects.Layer: type LayerClipRemovedCallback = -- | /@clip@/: The clip that was removed Clip -> IO ()
- GI.GES.Objects.MarkerList: type MarkerListMarkerAddedCallback = Word64 " /@position@/: the position of the added marker" -> Marker " /@marker@/: the t'GI.GES.Objects.Marker.Marker' that was added." -> IO ()
+ GI.GES.Objects.MarkerList: type MarkerListMarkerAddedCallback = -- | /@position@/: the position of the added marker Word64 -> -- | /@marker@/: the t'GI.GES.Objects.Marker.Marker' that was added. Marker -> IO ()
- GI.GES.Objects.MarkerList: type MarkerListMarkerMovedCallback = Word64 " /@previousPosition@/: the previous position of the marker" -> Word64 " /@newPosition@/: the new position of the marker" -> Marker " /@marker@/: the t'GI.GES.Objects.Marker.Marker' that was moved." -> IO ()
+ GI.GES.Objects.MarkerList: type MarkerListMarkerMovedCallback = -- | /@previousPosition@/: the previous position of the marker Word64 -> -- | /@newPosition@/: the new position of the marker Word64 -> -- | /@marker@/: the t'GI.GES.Objects.Marker.Marker' that was moved. Marker -> IO ()
- GI.GES.Objects.MarkerList: type MarkerListMarkerRemovedCallback = Marker " /@marker@/: the t'GI.GES.Objects.Marker.Marker' that was removed." -> IO ()
+ GI.GES.Objects.MarkerList: type MarkerListMarkerRemovedCallback = -- | /@marker@/: the t'GI.GES.Objects.Marker.Marker' that was removed. Marker -> IO ()
- GI.GES.Objects.Project: type ProjectAssetAddedCallback = Asset " /@asset@/: The t'GI.GES.Objects.Asset.Asset' that has been added to /@project@/" -> IO ()
+ GI.GES.Objects.Project: type ProjectAssetAddedCallback = -- | /@asset@/: The t'GI.GES.Objects.Asset.Asset' that has been added to /@project@/ Asset -> IO ()
- GI.GES.Objects.Project: type ProjectAssetLoadingCallback = Asset " /@asset@/: The t'GI.GES.Objects.Asset.Asset' that started loading" -> IO ()
+ GI.GES.Objects.Project: type ProjectAssetLoadingCallback = -- | /@asset@/: The t'GI.GES.Objects.Asset.Asset' that started loading Asset -> IO ()
- GI.GES.Objects.Project: type ProjectAssetRemovedCallback = Asset " /@asset@/: The t'GI.GES.Objects.Asset.Asset' that has been removed from /@project@/" -> IO ()
+ GI.GES.Objects.Project: type ProjectAssetRemovedCallback = -- | /@asset@/: The t'GI.GES.Objects.Asset.Asset' that has been removed from /@project@/ Asset -> IO ()
- GI.GES.Objects.Project: type ProjectErrorLoadingAssetCallback = GError " /@error@/: The t'GError' defining the error that occured, might be 'P.Nothing'" -> Text " /@id@/: The /@id@/ of the asset that failed loading" -> GType " /@extractableType@/: The /@extractableType@/ of the asset that failed loading" -> IO ()
+ GI.GES.Objects.Project: type ProjectErrorLoadingAssetCallback = -- | /@error@/: The t'GError' defining the error that occured, might be 'P.Nothing' GError -> -- | /@id@/: The /@id@/ of the asset that failed loading Text -> -- | /@extractableType@/: The /@extractableType@/ of the asset that -- failed loading GType -> IO ()
- GI.GES.Objects.Project: type ProjectErrorLoadingCallback = Timeline " /@timeline@/: The timeline that failed loading" -> GError " /@error@/: The t'GError' defining the error that occured" -> IO ()
+ GI.GES.Objects.Project: type ProjectErrorLoadingCallback = -- | /@timeline@/: The timeline that failed loading Timeline -> -- | /@error@/: The t'GError' defining the error that occured GError -> IO ()
- GI.GES.Objects.Project: type ProjectLoadedCallback = Timeline " /@timeline@/: The t'GI.GES.Objects.Timeline.Timeline' that completed loading" -> IO ()
+ GI.GES.Objects.Project: type ProjectLoadedCallback = -- | /@timeline@/: The t'GI.GES.Objects.Timeline.Timeline' that completed loading Timeline -> IO ()
- GI.GES.Objects.Project: type ProjectLoadingCallback = Timeline " /@timeline@/: The t'GI.GES.Objects.Timeline.Timeline' that started loading" -> IO ()
+ GI.GES.Objects.Project: type ProjectLoadingCallback = -- | /@timeline@/: The t'GI.GES.Objects.Timeline.Timeline' that started loading Timeline -> IO ()
- GI.GES.Objects.Project: type ProjectMissingUriCallback = GError " /@error@/: The error that happened" -> Asset " /@wrongAsset@/: The asset with the wrong ID, you should us it and its content only to find out what the new location is." -> IO (Maybe Text) " __Returns:__ The new URI of /@wrongAsset@/"
+ GI.GES.Objects.Project: type ProjectMissingUriCallback = -- | /@error@/: The error that happened GError -> -- | /@wrongAsset@/: The asset with the wrong ID, you should us it and its content -- only to find out what the new location is. Asset -> -- | __Returns:__ The new URI of /@wrongAsset@/ IO (Maybe Text)
- GI.GES.Objects.Timeline: type TimelineGroupAddedCallback = Group " /@group@/: The group that was added to /@timeline@/" -> IO ()
+ GI.GES.Objects.Timeline: type TimelineGroupAddedCallback = -- | /@group@/: The group that was added to /@timeline@/ Group -> IO ()
- GI.GES.Objects.Timeline: type TimelineGroupRemovedCallback = Group " /@group@/: The group that was removed from /@timeline@/" -> [Container] " /@children@/: A list of t'GI.GES.Objects.Container.Container'-s that _were_ the children of the removed /@group@/" -> IO ()
+ GI.GES.Objects.Timeline: type TimelineGroupRemovedCallback = -- | /@group@/: The group that was removed from /@timeline@/ Group -> -- | /@children@/: A list -- of t'GI.GES.Objects.Container.Container'-s that _were_ the children of the removed /@group@/ [Container] -> IO ()
- GI.GES.Objects.Timeline: type TimelineLayerAddedCallback = Layer " /@layer@/: The layer that was added to /@timeline@/" -> IO ()
+ GI.GES.Objects.Timeline: type TimelineLayerAddedCallback = -- | /@layer@/: The layer that was added to /@timeline@/ Layer -> IO ()
- GI.GES.Objects.Timeline: type TimelineLayerRemovedCallback = Layer " /@layer@/: The layer that was removed from /@timeline@/" -> IO ()
+ GI.GES.Objects.Timeline: type TimelineLayerRemovedCallback = -- | /@layer@/: The layer that was removed from /@timeline@/ Layer -> IO ()
- GI.GES.Objects.Timeline: type TimelineSelectElementTrackCallback = Clip " /@clip@/: The clip that /@trackElement@/ is being added to" -> TrackElement " /@trackElement@/: The element being added" -> IO Track " __Returns:__ A track to put /@trackElement@/ into, or 'P.Nothing' if it should be discarded."
+ GI.GES.Objects.Timeline: type TimelineSelectElementTrackCallback = -- | /@clip@/: The clip that /@trackElement@/ is being added to Clip -> -- | /@trackElement@/: The element being added TrackElement -> -- | __Returns:__ A track to put /@trackElement@/ into, or 'P.Nothing' if -- it should be discarded. IO Track
- GI.GES.Objects.Timeline: type TimelineSelectTracksForObjectCallback = Clip " /@clip@/: The clip that /@trackElement@/ is being added to" -> TrackElement " /@trackElement@/: The element being added" -> IO [Track] " __Returns:__ An array of t'GI.GES.Objects.Track.Track'-s that /@trackElement@/ should be added to, or 'P.Nothing' to not add the element to any track."
+ GI.GES.Objects.Timeline: type TimelineSelectTracksForObjectCallback = -- | /@clip@/: The clip that /@trackElement@/ is being added to Clip -> -- | /@trackElement@/: The element being added TrackElement -> -- | __Returns:__ An array of -- t'GI.GES.Objects.Track.Track'-s that /@trackElement@/ should be added to, or 'P.Nothing' to -- not add the element to any track. IO [Track]
- GI.GES.Objects.Timeline: type TimelineSnappingEndedCallback = TrackElement " /@obj1@/: The first element that was snapping" -> TrackElement " /@obj2@/: The second element that was snapping" -> Word64 " /@position@/: The position where the two objects were to be snapped to" -> IO ()
+ GI.GES.Objects.Timeline: type TimelineSnappingEndedCallback = -- | /@obj1@/: The first element that was snapping TrackElement -> -- | /@obj2@/: The second element that was snapping TrackElement -> -- | /@position@/: The position where the two objects were to be snapped to Word64 -> IO ()
- GI.GES.Objects.Timeline: type TimelineSnappingStartedCallback = TrackElement " /@obj1@/: The first element that is snapping" -> TrackElement " /@obj2@/: The second element that is snapping" -> Word64 " /@position@/: The position where the two objects will snap to" -> IO ()
+ GI.GES.Objects.Timeline: type TimelineSnappingStartedCallback = -- | /@obj1@/: The first element that is snapping TrackElement -> -- | /@obj2@/: The second element that is snapping TrackElement -> -- | /@position@/: The position where the two objects will snap to Word64 -> IO ()
- GI.GES.Objects.Timeline: type TimelineTrackAddedCallback = Track " /@track@/: The track that was added to /@timeline@/" -> IO ()
+ GI.GES.Objects.Timeline: type TimelineTrackAddedCallback = -- | /@track@/: The track that was added to /@timeline@/ Track -> IO ()
- GI.GES.Objects.Timeline: type TimelineTrackRemovedCallback = Track " /@track@/: The track that was removed from /@timeline@/" -> IO ()
+ GI.GES.Objects.Timeline: type TimelineTrackRemovedCallback = -- | /@track@/: The track that was removed from /@timeline@/ Track -> IO ()
- GI.GES.Objects.TimelineElement: type TimelineElementChildPropertyAddedCallback = Object " /@propObject@/: The child whose property has been registered" -> GParamSpec " /@prop@/: The specification for the property that has been registered" -> IO ()
+ GI.GES.Objects.TimelineElement: type TimelineElementChildPropertyAddedCallback = -- | /@propObject@/: The child whose property has been registered Object -> -- | /@prop@/: The specification for the property that has been registered GParamSpec -> IO ()
- GI.GES.Objects.TimelineElement: type TimelineElementChildPropertyRemovedCallback = Object " /@propObject@/: The child whose property has been unregistered" -> GParamSpec " /@prop@/: The specification for the property that has been unregistered" -> IO ()
+ GI.GES.Objects.TimelineElement: type TimelineElementChildPropertyRemovedCallback = -- | /@propObject@/: The child whose property has been unregistered Object -> -- | /@prop@/: The specification for the property that has been unregistered GParamSpec -> IO ()
- GI.GES.Objects.TimelineElement: type TimelineElementDeepNotifyCallback = Object " /@propObject@/: The child whose property has been set" -> GParamSpec " /@prop@/: The specification for the property that been set" -> IO ()
+ GI.GES.Objects.TimelineElement: type TimelineElementDeepNotifyCallback = -- | /@propObject@/: The child whose property has been set Object -> -- | /@prop@/: The specification for the property that been set GParamSpec -> IO ()
- GI.GES.Objects.Track: type TrackTrackElementAddedCallback = TrackElement " /@effect@/: The element that was added" -> IO ()
+ GI.GES.Objects.Track: type TrackTrackElementAddedCallback = -- | /@effect@/: The element that was added TrackElement -> IO ()
- GI.GES.Objects.Track: type TrackTrackElementRemovedCallback = TrackElement " /@effect@/: The element that was removed" -> IO ()
+ GI.GES.Objects.Track: type TrackTrackElementRemovedCallback = -- | /@effect@/: The element that was removed TrackElement -> IO ()
- GI.GES.Objects.TrackElement: type TrackElementControlBindingAddedCallback = ControlBinding " /@controlBinding@/: The control binding that has been added" -> IO ()
+ GI.GES.Objects.TrackElement: type TrackElementControlBindingAddedCallback = -- | /@controlBinding@/: The control binding that has been added ControlBinding -> IO ()
- GI.GES.Objects.TrackElement: type TrackElementControlBindingRemovedCallback = ControlBinding " /@controlBinding@/: The control binding that has been removed" -> IO ()
+ GI.GES.Objects.TrackElement: type TrackElementControlBindingRemovedCallback = -- | /@controlBinding@/: The control binding that has been removed ControlBinding -> IO ()
Files
- ChangeLog.md +4/−0
- README.md +1/−1
- Setup.hs +1/−1
- gi-ges.cabal +3/−3
ChangeLog.md view
@@ -1,3 +1,7 @@+### 1.0.2+++ Relax constraint on text+ 1.0.1 ===== + Initial release
README.md view
@@ -1,6 +1,6 @@ # Documentation Autogenerated documentation for this package can be found at -[https://hackage.haskell.org/package/gi-ges-1.0.1/docs/GI-GES.html](https://hackage.haskell.org/package/gi-ges-1.0.1/docs/GI-GES.html)+[https://hackage.haskell.org/package/gi-ges-1.0.2/docs/GI-GES.html](https://hackage.haskell.org/package/gi-ges-1.0.2/docs/GI-GES.html) For general documentation on using [haskell-gi](https://github.com/haskell-gi/haskell-gi) based bindings, see [the project page](https://github.com/haskell-gi/haskell-gi) or [the Wiki](https://github.com/haskell-gi/haskell-gi/wiki).
Setup.hs view
@@ -15,7 +15,7 @@ where name = "GES" version = "1.0" pkgName = "gi-ges"- pkgVersion = "1.0.1"+ pkgVersion = "1.0.2" overridesFile = Nothing verbose = False outputDir = Nothing
gi-ges.cabal view
@@ -1,5 +1,5 @@ name: gi-ges-version: 1.0.1+version: 1.0.2 synopsis: libges bindings description: Bindings for GStreamer Editing Services, autogenerated by haskell-gi. homepage: https://github.com/haskell-gi/haskell-gi@@ -26,7 +26,7 @@ library default-language: Haskell2010- default-extensions: NoImplicitPrelude, ScopedTypeVariables, CPP, OverloadedStrings, NegativeLiterals, ConstraintKinds, TypeFamilies, MultiParamTypeClasses, KindSignatures, FlexibleInstances, UndecidableInstances, DataKinds, FlexibleContexts, UndecidableSuperClasses+ default-extensions: NoImplicitPrelude, ScopedTypeVariables, CPP, OverloadedStrings, NegativeLiterals, ConstraintKinds, TypeFamilies, MultiParamTypeClasses, KindSignatures, FlexibleInstances, UndecidableInstances, DataKinds, FlexibleContexts, UndecidableSuperClasses, TypeOperators other-extensions: PatternSynonyms, ViewPatterns, TypeApplications ghc-options: -fno-warn-unused-imports -fno-warn-warnings-deprecations @@ -43,7 +43,7 @@ gi-gstvideo == 1.0.*, bytestring >= 0.10 && < 1, containers >= 0.5 && < 1,- text >= 1.0 && < 2,+ text >= 1.0 && < 3, transformers >= 0.4 && < 1 -- Disable overloading when compiling under GHC 8.2.x