packages feed

gi-gtksource 3.0.25 → 3.0.26

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.GtkSource.Objects.Buffer: type BufferBracketMatchedCallback = Maybe TextIter " /@iter@/: if found, the location of the matching bracket." -> BracketMatchType " /@state@/: state of bracket matching." -> IO ()
+ GI.GtkSource.Objects.Buffer: type BufferBracketMatchedCallback = -- | /@iter@/: if found, the location of the matching bracket. Maybe TextIter -> -- | /@state@/: state of bracket matching. BracketMatchType -> IO ()
- GI.GtkSource.Objects.Buffer: type BufferHighlightUpdatedCallback = TextIter " /@start@/: the start of the updated region" -> TextIter " /@end@/: the end of the updated region" -> IO ()
+ GI.GtkSource.Objects.Buffer: type BufferHighlightUpdatedCallback = -- | /@start@/: the start of the updated region TextIter -> -- | /@end@/: the end of the updated region TextIter -> IO ()
- GI.GtkSource.Objects.Buffer: type BufferSourceMarkUpdatedCallback = TextMark " /@mark@/: the t'GI.GtkSource.Objects.Mark.Mark'" -> IO ()
+ GI.GtkSource.Objects.Buffer: type BufferSourceMarkUpdatedCallback = -- | /@mark@/: the t'GI.GtkSource.Objects.Mark.Mark' TextMark -> IO ()
- GI.GtkSource.Objects.Completion: type CompletionMoveCursorCallback = ScrollStep " /@step@/: The t'GI.Gtk.Enums.ScrollStep' by which to move the cursor" -> Int32 " /@num@/: The amount of steps to move the cursor" -> IO ()
+ GI.GtkSource.Objects.Completion: type CompletionMoveCursorCallback = -- | /@step@/: The t'GI.Gtk.Enums.ScrollStep' by which to move the cursor ScrollStep -> -- | /@num@/: The amount of steps to move the cursor Int32 -> IO ()
- GI.GtkSource.Objects.Completion: type CompletionMovePageCallback = ScrollStep " /@step@/: The t'GI.Gtk.Enums.ScrollStep' by which to move the page" -> Int32 " /@num@/: The amount of steps to move the page" -> IO ()
+ GI.GtkSource.Objects.Completion: type CompletionMovePageCallback = -- | /@step@/: The t'GI.Gtk.Enums.ScrollStep' by which to move the page ScrollStep -> -- | /@num@/: The amount of steps to move the page Int32 -> IO ()
- GI.GtkSource.Objects.Completion: type CompletionPopulateContextCallback = CompletionContext " /@context@/: The t'GI.GtkSource.Objects.CompletionContext.CompletionContext' for the current completion" -> IO ()
+ GI.GtkSource.Objects.Completion: type CompletionPopulateContextCallback = -- | /@context@/: The t'GI.GtkSource.Objects.CompletionContext.CompletionContext' for the current completion CompletionContext -> IO ()
- GI.GtkSource.Objects.GutterRenderer: type GutterRendererActivateCallback = TextIter " /@iter@/: a t'GI.Gtk.Structs.TextIter.TextIter'" -> Rectangle " /@area@/: a t'GI.Gdk.Structs.Rectangle.Rectangle'" -> Event " /@event@/: the event that caused the activation" -> IO ()
+ GI.GtkSource.Objects.GutterRenderer: type GutterRendererActivateCallback = -- | /@iter@/: a t'GI.Gtk.Structs.TextIter.TextIter' TextIter -> -- | /@area@/: a t'GI.Gdk.Structs.Rectangle.Rectangle' Rectangle -> -- | /@event@/: the event that caused the activation Event -> IO ()
- GI.GtkSource.Objects.GutterRenderer: type GutterRendererQueryActivatableCallback = TextIter " /@iter@/: a t'GI.Gtk.Structs.TextIter.TextIter'" -> Rectangle " /@area@/: a t'GI.Gdk.Structs.Rectangle.Rectangle'" -> Event " /@event@/: the t'GI.Gdk.Unions.Event.Event' that is causing the activatable query" -> IO Bool
+ GI.GtkSource.Objects.GutterRenderer: type GutterRendererQueryActivatableCallback = -- | /@iter@/: a t'GI.Gtk.Structs.TextIter.TextIter' TextIter -> -- | /@area@/: a t'GI.Gdk.Structs.Rectangle.Rectangle' Rectangle -> -- | /@event@/: the t'GI.Gdk.Unions.Event.Event' that is causing the activatable query Event -> IO Bool
- GI.GtkSource.Objects.GutterRenderer: type GutterRendererQueryDataCallback = TextIter " /@start@/: a t'GI.Gtk.Structs.TextIter.TextIter'" -> TextIter " /@end@/: a t'GI.Gtk.Structs.TextIter.TextIter'" -> [GutterRendererState] " /@state@/: the renderer state" -> IO ()
+ GI.GtkSource.Objects.GutterRenderer: type GutterRendererQueryDataCallback = -- | /@start@/: a t'GI.Gtk.Structs.TextIter.TextIter' TextIter -> -- | /@end@/: a t'GI.Gtk.Structs.TextIter.TextIter' TextIter -> -- | /@state@/: the renderer state [GutterRendererState] -> IO ()
- GI.GtkSource.Objects.GutterRenderer: type GutterRendererQueryTooltipCallback = TextIter " /@iter@/: a t'GI.Gtk.Structs.TextIter.TextIter'" -> Rectangle " /@area@/: a t'GI.Gdk.Structs.Rectangle.Rectangle'" -> Int32 " /@x@/: the x position (in window coordinates)" -> Int32 " /@y@/: the y position (in window coordinates)" -> Tooltip " /@tooltip@/: a t'GI.Gtk.Objects.Tooltip.Tooltip'" -> IO Bool
+ GI.GtkSource.Objects.GutterRenderer: type GutterRendererQueryTooltipCallback = -- | /@iter@/: a t'GI.Gtk.Structs.TextIter.TextIter' TextIter -> -- | /@area@/: a t'GI.Gdk.Structs.Rectangle.Rectangle' Rectangle -> -- | /@x@/: the x position (in window coordinates) Int32 -> -- | /@y@/: the y position (in window coordinates) Int32 -> -- | /@tooltip@/: a t'GI.Gtk.Objects.Tooltip.Tooltip' Tooltip -> IO Bool
- GI.GtkSource.Objects.MarkAttributes: type MarkAttributesQueryTooltipMarkupCallback = Mark " /@mark@/: The t'GI.GtkSource.Objects.Mark.Mark'." -> IO Text " __Returns:__ A tooltip. The string should be freed with 'GI.GLib.Functions.free' when done with it."
+ GI.GtkSource.Objects.MarkAttributes: type MarkAttributesQueryTooltipMarkupCallback = -- | /@mark@/: The t'GI.GtkSource.Objects.Mark.Mark'. Mark -> -- | __Returns:__ A tooltip. The string should be freed with -- 'GI.GLib.Functions.free' when done with it. IO Text
- GI.GtkSource.Objects.MarkAttributes: type MarkAttributesQueryTooltipTextCallback = Mark " /@mark@/: The t'GI.GtkSource.Objects.Mark.Mark'." -> IO Text " __Returns:__ A tooltip. The string should be freed with 'GI.GLib.Functions.free' when done with it."
+ GI.GtkSource.Objects.MarkAttributes: type MarkAttributesQueryTooltipTextCallback = -- | /@mark@/: The t'GI.GtkSource.Objects.Mark.Mark'. Mark -> -- | __Returns:__ A tooltip. The string should be freed with -- 'GI.GLib.Functions.free' when done with it. IO Text
- GI.GtkSource.Objects.View: type ViewChangeCaseCallback = ChangeCaseType " /@caseType@/: the case to use" -> IO ()
+ GI.GtkSource.Objects.View: type ViewChangeCaseCallback = -- | /@caseType@/: the case to use ChangeCaseType -> IO ()
- GI.GtkSource.Objects.View: type ViewChangeNumberCallback = Int32 " /@count@/: the number to add to the number at the current position" -> IO ()
+ GI.GtkSource.Objects.View: type ViewChangeNumberCallback = -- | /@count@/: the number to add to the number at the current position Int32 -> IO ()
- GI.GtkSource.Objects.View: type ViewLineMarkActivatedCallback = TextIter " /@iter@/: a t'GI.Gtk.Structs.TextIter.TextIter'" -> Event " /@event@/: the t'GI.Gdk.Unions.Event.Event' that activated the event" -> IO ()
+ GI.GtkSource.Objects.View: type ViewLineMarkActivatedCallback = -- | /@iter@/: a t'GI.Gtk.Structs.TextIter.TextIter' TextIter -> -- | /@event@/: the t'GI.Gdk.Unions.Event.Event' that activated the event Event -> IO ()
- GI.GtkSource.Objects.View: type ViewMoveLinesCallback = Bool " /@copy@/: 'P.True' if the line should be copied, 'P.False' if it should be moved. This parameter is deprecated and will be removed in a later version, it should be always 'P.False'." -> Int32 " /@count@/: the number of lines to move over. Only 1 and -1 are supported." -> IO ()
+ GI.GtkSource.Objects.View: type ViewMoveLinesCallback = -- | /@copy@/: 'P.True' if the line should be copied, 'P.False' if it should be -- moved. This parameter is deprecated and will be removed in a later -- version, it should be always 'P.False'. Bool -> -- | /@count@/: the number of lines to move over. Only 1 and -1 are -- supported. Int32 -> IO ()
- GI.GtkSource.Objects.View: type ViewMoveToMatchingBracketCallback = Bool " /@extendSelection@/: 'P.True' if the move should extend the selection" -> IO ()
+ GI.GtkSource.Objects.View: type ViewMoveToMatchingBracketCallback = -- | /@extendSelection@/: 'P.True' if the move should extend the selection Bool -> IO ()
- GI.GtkSource.Objects.View: type ViewMoveWordsCallback = Int32 " /@count@/: the number of words to move over" -> IO ()
+ GI.GtkSource.Objects.View: type ViewMoveWordsCallback = -- | /@count@/: the number of words to move over Int32 -> IO ()
- GI.GtkSource.Objects.View: type ViewSmartHomeEndCallback = TextIter " /@iter@/: a t'GI.Gtk.Structs.TextIter.TextIter'" -> Int32 " /@count@/: the count" -> IO ()
+ GI.GtkSource.Objects.View: type ViewSmartHomeEndCallback = -- | /@iter@/: a t'GI.Gtk.Structs.TextIter.TextIter' TextIter -> -- | /@count@/: the count Int32 -> IO ()

Files

ChangeLog.md view
@@ -1,3 +1,7 @@+### 3.0.26+++ Relax constraint on text+ ### 3.0.25  + Update to haskell-gi(-base)-0.26
README.md view
@@ -1,6 +1,6 @@ # Documentation Autogenerated documentation for this package can be found at -[https://hackage.haskell.org/package/gi-gtksource-3.0.25/docs/GI-GtkSource.html](https://hackage.haskell.org/package/gi-gtksource-3.0.25/docs/GI-GtkSource.html)+[https://hackage.haskell.org/package/gi-gtksource-3.0.26/docs/GI-GtkSource.html](https://hackage.haskell.org/package/gi-gtksource-3.0.26/docs/GI-GtkSource.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
@@ -18,7 +18,7 @@   where name = "GtkSource"         version = "3.0"         pkgName = "gi-gtksource"-        pkgVersion = "3.0.25"+        pkgVersion = "3.0.26"         overridesFile = Just "GtkSource.overrides"         verbose = False         outputDir = Nothing
gi-gtksource.cabal view
@@ -1,5 +1,5 @@ name:                 gi-gtksource-version:              3.0.25+version:              3.0.26 synopsis:             GtkSource bindings description:          Bindings for GtkSource, autogenerated by haskell-gi. homepage:             https://github.com/haskell-gi/haskell-gi@@ -29,7 +29,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 @@ -49,7 +49,7 @@                      gi-atk == 2.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