packages feed

qtah-examples 0.5.0 → 0.6.0

raw patch · 4 files changed

+10/−11 lines, 4 filesdep ~containersdep ~hoppy-runtimedep ~qtah-qt5setup-changed

Dependency ranges changed: containers, hoppy-runtime, qtah-qt5

Files

Setup.hs view
@@ -1,6 +1,6 @@ -- This file is part of Qtah. ----- Copyright 2015-2018 The Qtah Authors.+-- Copyright 2015-2019 The Qtah Authors. -- -- This program is free software: you can redistribute it and/or modify -- it under the terms of the GNU Lesser General Public License as published by
qtah-examples.cabal view
@@ -1,15 +1,15 @@ name: qtah-examples-version: 0.5.0+version: 0.6.0 synopsis: Example programs for Qtah Qt bindings homepage: http://khumba.net/projects/qtah license: LGPL-3 license-files: LICENSE.GPL, LICENSE.LGPL author: Bryan Gardiner <bog@khumba.net> maintainer: Bryan Gardiner <bog@khumba.net>-copyright: Copyright 2015-2018 The Qtah Authors.+copyright: Copyright 2015-2019 The Qtah Authors. category: Graphics build-type: Simple-cabal-version: >=1.10+cabal-version: 1.20 description:   Qtah is a set of Qt bindings for Haskell.  This package contains example   programs to demonstrate use of the bindings.@@ -25,9 +25,9 @@       base >=4 && <5     , binary >=0.7 && <0.9     , bytestring >=0.10 && <0.11-    , containers <0.6+    , containers <0.7     , filepath >=1.0 && <1.5-    , hoppy-runtime >=0.5 && <0.6-    , qtah-qt5 >=0.5 && <0.6-  ghc-options: -W -fwarn-incomplete-patterns -fwarn-unused-do-bind -dynamic+    , hoppy-runtime >=0.7 && <0.8+    , qtah-qt5 >=0.6 && <0.7+  ghc-options: -rtsopts -W -fwarn-incomplete-patterns -fwarn-unused-do-bind -dynamic   default-language: Haskell2010
src/Graphics/UI/Qtah/Example/Notepad.hs view
@@ -1,6 +1,6 @@ -- This file is part of Qtah. ----- Copyright 2015-2018 The Qtah Authors.+-- Copyright 2015-2019 The Qtah Authors. -- -- This program is free software: you can redistribute it and/or modify -- it under the terms of the GNU Lesser General Public License as published by
src/Main.hs view
@@ -1,6 +1,6 @@ -- This file is part of Qtah. ----- Copyright 2015-2018 The Qtah Authors.+-- Copyright 2015-2019 The Qtah Authors. -- -- This program is free software: you can redistribute it and/or modify -- it under the terms of the GNU Lesser General Public License as published by@@ -59,7 +59,6 @@     , exDescription = "A notepad program for editing text files."     , exMain = Notepad.run     }-   ]  examplesByTitle :: M.Map String Example