diff --git a/Setup.hs b/Setup.hs
--- a/Setup.hs
+++ b/Setup.hs
@@ -1,6 +1,6 @@
 -- This file is part of Qtah.
 --
--- Copyright 2015-2020 The Qtah Authors.
+-- Copyright 2015-2021 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
@@ -19,9 +19,9 @@
 {-# LANGUAGE CPP #-}
 
 import Control.Applicative ((<|>))
-import Control.Monad (unless, when)
+import Control.Monad (forM_, unless, when)
 import Data.Char (isDigit)
-import Data.List (isPrefixOf, isSuffixOf)
+import Data.List (intercalate, isPrefixOf, isSuffixOf)
 import Data.Maybe (fromMaybe)
 import Distribution.Package (pkgName, unPackageName)
 import Distribution.PackageDescription (
@@ -45,20 +45,15 @@
   )
 import Distribution.Simple.Program (
   Program,
-  getProgramOutput,
-  lookupProgram,
-  programPath,
   runDbProgram,
   simpleProgram,
   )
--- I don't think Distribution.Simple.Program exported ProgramDb back in
--- Cabal-1.22.5.0, so we import it from the Db submodule:
-import Distribution.Simple.Program.Db (ProgramDb)
 import Distribution.Simple.Setup (
   BuildFlags,
   CleanFlags,
   ConfigFlags,
   CopyDest (CopyTo, NoCopyDest),
+  RegisterFlags,
   buildNumJobs,
   buildVerbosity,
   cleanVerbosity,
@@ -70,6 +65,8 @@
   fromFlagOrDefault,
   installDistPref,
   installVerbosity,
+  regInPlace,
+  regVerbosity,
   )
 import Distribution.Simple.UserHooks (
   UserHooks (
@@ -78,7 +75,8 @@
     copyHook,
     hookedPrograms,
     instHook,
-    postConf
+    postConf,
+    regHook
     ),
   )
 #if MIN_VERSION_Cabal(2,0,0)
@@ -98,6 +96,9 @@
 import Distribution.Types.GenericPackageDescription (lookupFlagAssignment)
 #endif
 import Distribution.Verbosity (Verbosity, normal)
+import Graphics.UI.Qtah.Generator.Config (qmakeArguments, qmakeExecutable, qtVersion)
+import Graphics.UI.Qtah.Generator.Main (generateCpp)
+import Graphics.UI.Qtah.Generator.ListenerGen (generateListenerCpp)
 import System.Directory (
   createDirectoryIfMissing,
   doesDirectoryExist,
@@ -123,7 +124,7 @@
 
 qtahHooks :: UserHooks
 qtahHooks = simpleUserHooks
-  { hookedPrograms = [bashProgram, generatorProgram, listenerGenProgram, makeProgram]
+  { hookedPrograms = [bashProgram, makeProgram]
   , postConf = \args cf pd lbi -> do generateSources cf lbi
                                      postConf simpleUserHooks args cf pd lbi
   , buildHook = \pd lbi uh bf -> do doBuild lbi bf
@@ -137,6 +138,9 @@
                                                flagToMaybe $ installDistPref if'
                                     doInstall verbosity pd lbi dest
                                     instHook simpleUserHooks pd lbi uh if'
+  , regHook = \pd lbi uh rf -> do let verbosity = fromFlagOrDefault normal $ regVerbosity rf
+                                  doRegister verbosity lbi rf
+                                  regHook simpleUserHooks pd lbi uh rf
   , cleanHook = \pd z uh cf -> do doClean cf
                                   cleanHook simpleUserHooks pd z uh cf
   }
@@ -144,63 +148,25 @@
 bashProgram :: Program
 bashProgram = simpleProgram "bash"
 
-generatorProgram :: Program
-generatorProgram = simpleProgram "qtah-generator"
-
-listenerGenProgram :: Program
-listenerGenProgram = simpleProgram "qtah-listener-gen"
-
 makeProgram :: Program
 makeProgram = simpleProgram "make"
 
-findQmake :: ProgramDb -> Verbosity -> IO (FilePath, [String])
-findQmake programDb verbosity = do
-#if MIN_VERSION_Cabal(2,0,0)
-  let dieFn = die' verbosity
-#else
-  let dieFn = die
-#endif
-  generatorConfiguredProgram <-
-    maybe (dieFn $ packageName ++ ": Couldn't find qtah-generator.  Is it installed?") return $
-    lookupProgram generatorProgram programDb
-  output <-
-    lines <$> getProgramOutput verbosity generatorConfiguredProgram ["--qmake-executable"]
-  case output of
-    executable:args -> return (executable, args)
-    [] -> fail $ packageName ++
-          ": Couldn't ask qtah-generator for the location of qmake.  Received no output."
-
 generateSources :: ConfigFlags -> LocalBuildInfo -> IO ()
 generateSources configFlags localBuildInfo = do
   startDir <- getCurrentDirectory
   let cppSourceDir = startDir </> "cpp"
-      programDb = withPrograms localBuildInfo
-      verbosity = fromFlagOrDefault normal $ configVerbosity configFlags
-#if MIN_VERSION_Cabal(2,0,0)
-      dieFn = die' verbosity
-#else
-      dieFn = die
-#endif
 
   -- Parse the Qt version to use from flags and the environment, and export it
   -- to the generator.
   _ <- exportQtVersion configFlags localBuildInfo
 
-  listenerGenPath <- case lookupProgram listenerGenProgram programDb of
-    Nothing ->
-      dieFn $ packageName ++
-      ": Couldn't find qtah-listener-gen.  Is qtah-generator installed and on the path?"
-    Just configuredProgram -> return $ programPath configuredProgram
-
   -- Generate binding source code.
-  runDbProgram verbosity generatorProgram programDb ["--gen-cpp", "cpp"]
-  runDbProgram verbosity bashProgram programDb [listenerGenPath, "--gen-cpp-dir", "cpp"]
+  generateCpp cppSourceDir
+  generateListenerCpp cppSourceDir
 
   -- Run qmake to generate the makefile.
   setCurrentDirectory cppSourceDir
-  (qmakeExecutable, qmakeArguments) <- findQmake programDb verbosity
   callProcess qmakeExecutable $ qmakeArguments ++ ["qtah.pro"]
-
   setCurrentDirectory startDir
 
 doBuild :: LocalBuildInfo -> BuildFlags -> IO ()
@@ -222,10 +188,25 @@
 
 doInstall :: Verbosity -> PackageDescription -> LocalBuildInfo -> CopyDest -> IO ()
 doInstall verbosity packageDesc localBuildInfo copyDest = do
+  let libDir = libdir $ absoluteInstallDirs packageDesc localBuildInfo copyDest
+      dynlibDir = dynlibdir $ absoluteInstallDirs packageDesc localBuildInfo copyDest
+  installOrRegister verbosity localBuildInfo libDir (Just dynlibDir)
+
+doRegister :: Verbosity -> LocalBuildInfo -> RegisterFlags -> IO ()
+doRegister verbosity localBuildInfo regFlags =
+  when (fromFlagOrDefault False (regInPlace regFlags)) $ do
+    let libDir = buildDir localBuildInfo
+    createDirectoryIfMissing True libDir
+    installOrRegister verbosity localBuildInfo libDir Nothing
+
+installOrRegister :: Verbosity
+                  -> LocalBuildInfo
+                  -> FilePath
+                  -> Maybe FilePath
+                  -> IO ()
+installOrRegister verbosity localBuildInfo libDir maybeDynlibDir = do
   startDir <- getCurrentDirectory
   let cppSourceDir = startDir </> "cpp"
-      libDir = libdir $ absoluteInstallDirs packageDesc localBuildInfo copyDest
-      dynlibDir = dynlibdir $ absoluteInstallDirs packageDesc localBuildInfo copyDest
       programDb = withPrograms localBuildInfo
 
   -- Call the makefile to install the C++ shared library into the package's
@@ -234,9 +215,10 @@
   -- in `dynlibdir`, but when configuring depending packages Cabal searches for libraries
   -- only in `libdir`. Hacking it away right now with this duplication.
   runDbProgram verbosity makeProgram programDb
-    ["-C", cppSourceDir, "install", "INSTALL_ROOT=" ++ dynlibDir]
-  runDbProgram verbosity makeProgram programDb
     ["-C", cppSourceDir, "install", "INSTALL_ROOT=" ++ libDir]
+  forM_ maybeDynlibDir $ \dynlibDir ->
+    runDbProgram verbosity makeProgram programDb
+      ["-C", cppSourceDir, "install", "INSTALL_ROOT=" ++ dynlibDir]
 
   -- Also record what version of Qt we are using, so that qtah can check that
   -- it's using the same version.
@@ -294,7 +276,6 @@
 exportQtVersion :: ConfigFlags -> LocalBuildInfo -> IO String
 exportQtVersion configFlags localBuildInfo = do
   let verbosity = fromFlagOrDefault normal $ configVerbosity configFlags
-      programDb = withPrograms localBuildInfo
 #if MIN_VERSION_Cabal(2,0,0)
       dieFn = die' verbosity
 #else
@@ -376,21 +357,12 @@
     Nothing -> return ()
 
   -- Log a message showing which Qt qtah-generator is actually using.
-  generatorConfiguredProgram <-
-    maybe (dieFn $ packageName ++ ": Couldn't find qtah-generator.  Is it installed?") return $
-    lookupProgram generatorProgram programDb
-  qtVersionOutput <- getProgramOutput verbosity generatorConfiguredProgram ["--qt-version"]
-  qtVersion <- case lines qtVersionOutput of
-    [line] -> return line
-    _ -> dieFn $ concat
-         [packageName, ": Couldn't understand qtah-generator --qt-version output: ",
-          show qtVersionOutput]
-  notice verbosity $
-    concat [packageName, ": Using Qt ", qtVersion, "."]
+  let qtVersionStr = intercalate "." $ map show qtVersion
+  notice verbosity $ concat [packageName, ": Using Qt ", qtVersionStr, "."]
 
   -- Record the selected Qt version in a file for later installation.
   let qtVersionFile = buildDir localBuildInfo </> "qtah-qt-version"
   createDirectoryIfMissing True $ takeDirectory qtVersionFile
-  writeFile qtVersionFile $ unlines [qtVersion]
+  writeFile qtVersionFile $ qtVersionStr ++ "\n"
 
-  return qtVersion
+  return qtVersionStr
diff --git a/cpp/encode.cpp b/cpp/encode.cpp
--- a/cpp/encode.cpp
+++ b/cpp/encode.cpp
@@ -1,6 +1,6 @@
 // This file is part of Qtah.
 //
-// Copyright 2015-2020 The Qtah Authors.
+// Copyright 2015-2021 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
diff --git a/cpp/encode.hpp b/cpp/encode.hpp
--- a/cpp/encode.hpp
+++ b/cpp/encode.hpp
@@ -3,7 +3,7 @@
 
 // This file is part of Qtah.
 //
-// Copyright 2015-2020 The Qtah Authors.
+// Copyright 2015-2021 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
diff --git a/cpp/event.hpp b/cpp/event.hpp
--- a/cpp/event.hpp
+++ b/cpp/event.hpp
@@ -3,7 +3,7 @@
 
 // This file is part of Qtah.
 //
-// Copyright 2015-2020 The Qtah Authors.
+// Copyright 2015-2021 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
diff --git a/cpp/qtah.pro b/cpp/qtah.pro
--- a/cpp/qtah.pro
+++ b/cpp/qtah.pro
@@ -1,6 +1,6 @@
 # This file is part of Qtah.
 #
-# Copyright 2015-2020 The Qtah Authors.
+# Copyright 2015-2021 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
@@ -21,9 +21,18 @@
 
 TARGET = qtah
 TEMPLATE = lib
-VERSION = 0.7.0
+VERSION = 0.8.0
 # Doesn't seem to work here: CONFIG += c++11
 QMAKE_CXXFLAGS += -std=c++11
+
+# This flag is enabled by default only on Windows, and we want it disabled.
+# It causes separate debug/ and release/ directories to be created within the
+# build directory, causing us to be unable to find things where we expect
+# (e.g. qtah-qt-version).  See Qtah issue #50, as well as:
+#
+# https://doc.qt.io/qt-5/qmake-variable-reference.html
+# https://bugreports.qt.io/browse/QTCREATORBUG-13807
+CONFIG -= debug_and_release
 
 mac:QMAKE_SONAME_PREFIX = @rpath
 
diff --git a/cpp/qtahopenglwindow.hpp b/cpp/qtahopenglwindow.hpp
--- a/cpp/qtahopenglwindow.hpp
+++ b/cpp/qtahopenglwindow.hpp
@@ -3,7 +3,7 @@
 
 // This file is part of Qtah.
 //
-// Copyright 2015-2020 The Qtah Authors.
+// Copyright 2015-2021 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
diff --git a/cpp/qtahrasterwindow.hpp b/cpp/qtahrasterwindow.hpp
--- a/cpp/qtahrasterwindow.hpp
+++ b/cpp/qtahrasterwindow.hpp
@@ -3,7 +3,7 @@
 
 // This file is part of Qtah.
 //
-// Copyright 2015-2020 The Qtah Authors.
+// Copyright 2015-2021 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
diff --git a/cpp/wrap_qapplication.cpp b/cpp/wrap_qapplication.cpp
--- a/cpp/wrap_qapplication.cpp
+++ b/cpp/wrap_qapplication.cpp
@@ -1,6 +1,6 @@
 // This file is part of Qtah.
 //
-// Copyright 2015-2020 The Qtah Authors.
+// Copyright 2015-2021 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
diff --git a/cpp/wrap_qapplication.hpp b/cpp/wrap_qapplication.hpp
--- a/cpp/wrap_qapplication.hpp
+++ b/cpp/wrap_qapplication.hpp
@@ -3,7 +3,7 @@
 
 // This file is part of Qtah.
 //
-// Copyright 2015-2020 The Qtah Authors.
+// Copyright 2015-2021 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
diff --git a/cpp/wrap_qcoreapplication.cpp b/cpp/wrap_qcoreapplication.cpp
--- a/cpp/wrap_qcoreapplication.cpp
+++ b/cpp/wrap_qcoreapplication.cpp
@@ -1,6 +1,6 @@
 // This file is part of Qtah.
 //
-// Copyright 2015-2020 The Qtah Authors.
+// Copyright 2015-2021 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
diff --git a/cpp/wrap_qcoreapplication.hpp b/cpp/wrap_qcoreapplication.hpp
--- a/cpp/wrap_qcoreapplication.hpp
+++ b/cpp/wrap_qcoreapplication.hpp
@@ -3,7 +3,7 @@
 
 // This file is part of Qtah.
 //
-// Copyright 2015-2020 The Qtah Authors.
+// Copyright 2015-2021 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
diff --git a/cpp/wrap_qformlayout.cpp b/cpp/wrap_qformlayout.cpp
--- a/cpp/wrap_qformlayout.cpp
+++ b/cpp/wrap_qformlayout.cpp
@@ -1,6 +1,6 @@
 // This file is part of Qtah.
 //
-// Copyright 2015-2020 The Qtah Authors.
+// Copyright 2015-2021 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
diff --git a/cpp/wrap_qformlayout.hpp b/cpp/wrap_qformlayout.hpp
--- a/cpp/wrap_qformlayout.hpp
+++ b/cpp/wrap_qformlayout.hpp
@@ -3,7 +3,7 @@
 
 // This file is part of Qtah.
 //
-// Copyright 2015-2020 The Qtah Authors.
+// Copyright 2015-2021 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
diff --git a/cpp/wrap_qgridlayout.cpp b/cpp/wrap_qgridlayout.cpp
--- a/cpp/wrap_qgridlayout.cpp
+++ b/cpp/wrap_qgridlayout.cpp
@@ -1,6 +1,6 @@
 // This file is part of Qtah.
 //
-// Copyright 2015-2020 The Qtah Authors.
+// Copyright 2015-2021 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
diff --git a/cpp/wrap_qgridlayout.hpp b/cpp/wrap_qgridlayout.hpp
--- a/cpp/wrap_qgridlayout.hpp
+++ b/cpp/wrap_qgridlayout.hpp
@@ -3,7 +3,7 @@
 
 // This file is part of Qtah.
 //
-// Copyright 2015-2020 The Qtah Authors.
+// Copyright 2015-2021 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
diff --git a/cpp/wrap_qimage.cpp b/cpp/wrap_qimage.cpp
--- a/cpp/wrap_qimage.cpp
+++ b/cpp/wrap_qimage.cpp
@@ -1,6 +1,6 @@
 // This file is part of Qtah.
 //
-// Copyright 2015-2020 The Qtah Authors.
+// Copyright 2015-2021 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
diff --git a/cpp/wrap_qimage.hpp b/cpp/wrap_qimage.hpp
--- a/cpp/wrap_qimage.hpp
+++ b/cpp/wrap_qimage.hpp
@@ -3,7 +3,7 @@
 
 // This file is part of Qtah.
 //
-// Copyright 2015-2020 The Qtah Authors.
+// Copyright 2015-2021 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
diff --git a/cpp/wrap_qmetaclassinfo.cpp b/cpp/wrap_qmetaclassinfo.cpp
--- a/cpp/wrap_qmetaclassinfo.cpp
+++ b/cpp/wrap_qmetaclassinfo.cpp
@@ -1,6 +1,6 @@
 // This file is part of Qtah.
 //
-// Copyright 2015-2020 The Qtah Authors.
+// Copyright 2015-2021 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
diff --git a/cpp/wrap_qmetaclassinfo.hpp b/cpp/wrap_qmetaclassinfo.hpp
--- a/cpp/wrap_qmetaclassinfo.hpp
+++ b/cpp/wrap_qmetaclassinfo.hpp
@@ -3,7 +3,7 @@
 
 // This file is part of Qtah.
 //
-// Copyright 2015-2020 The Qtah Authors.
+// Copyright 2015-2021 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
diff --git a/cpp/wrap_qmetaobject.cpp b/cpp/wrap_qmetaobject.cpp
--- a/cpp/wrap_qmetaobject.cpp
+++ b/cpp/wrap_qmetaobject.cpp
@@ -1,6 +1,6 @@
 // This file is part of Qtah.
 //
-// Copyright 2015-2020 The Qtah Authors.
+// Copyright 2015-2021 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
diff --git a/cpp/wrap_qmetaobject.hpp b/cpp/wrap_qmetaobject.hpp
--- a/cpp/wrap_qmetaobject.hpp
+++ b/cpp/wrap_qmetaobject.hpp
@@ -3,7 +3,7 @@
 
 // This file is part of Qtah.
 //
-// Copyright 2015-2020 The Qtah Authors.
+// Copyright 2015-2021 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
diff --git a/cpp/wrap_qobject.cpp b/cpp/wrap_qobject.cpp
--- a/cpp/wrap_qobject.cpp
+++ b/cpp/wrap_qobject.cpp
@@ -1,6 +1,6 @@
 // This file is part of Qtah.
 //
-// Copyright 2015-2020 The Qtah Authors.
+// Copyright 2015-2021 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
diff --git a/cpp/wrap_qobject.hpp b/cpp/wrap_qobject.hpp
--- a/cpp/wrap_qobject.hpp
+++ b/cpp/wrap_qobject.hpp
@@ -3,7 +3,7 @@
 
 // This file is part of Qtah.
 //
-// Copyright 2015-2020 The Qtah Authors.
+// Copyright 2015-2021 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
diff --git a/cpp/wrap_qstring.cpp b/cpp/wrap_qstring.cpp
--- a/cpp/wrap_qstring.cpp
+++ b/cpp/wrap_qstring.cpp
@@ -1,6 +1,6 @@
 // This file is part of Qtah.
 //
-// Copyright 2015-2020 The Qtah Authors.
+// Copyright 2015-2021 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
diff --git a/cpp/wrap_qstring.hpp b/cpp/wrap_qstring.hpp
--- a/cpp/wrap_qstring.hpp
+++ b/cpp/wrap_qstring.hpp
@@ -3,7 +3,7 @@
 
 // This file is part of Qtah.
 //
-// Copyright 2015-2020 The Qtah Authors.
+// Copyright 2015-2021 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
diff --git a/qtah-cpp-qt5.cabal b/qtah-cpp-qt5.cabal
--- a/qtah-cpp-qt5.cabal
+++ b/qtah-cpp-qt5.cabal
@@ -1,16 +1,15 @@
 name: qtah-cpp-qt5
-version: 0.7.0
+version: 0.8.0
 synopsis: Qt bindings for Haskell - C++ library
 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-2020 The Qtah Authors.
+copyright: Copyright 2015-2021 The Qtah Authors.
 category: Graphics
 build-type: Custom
--- Cabal 1.20 is needed for BuildFlags.buildNumJobs.
-cabal-version: 1.20
+cabal-version: 2.0
 description:
   Qtah is a set of Qt bindings for Haskell.  This package contains the C++ side
   of the bindings.
@@ -48,7 +47,7 @@
   build-depends:
       base >=4 && <5
     , process >=1.2 && <1.7
-    , qtah-generator >=0.7 && <0.8
+    , qtah-generator >=0.8 && <0.9
   ghc-options: -W -fwarn-incomplete-patterns -fwarn-unused-do-bind
 
 custom-setup
@@ -58,3 +57,4 @@
     , directory
     , filepath
     , process
+    , qtah-generator >=0.8 && <0.9
diff --git a/src/Graphics/UI/Qtah/NothingToSeeHere.hs b/src/Graphics/UI/Qtah/NothingToSeeHere.hs
--- a/src/Graphics/UI/Qtah/NothingToSeeHere.hs
+++ b/src/Graphics/UI/Qtah/NothingToSeeHere.hs
@@ -1,6 +1,6 @@
 -- This file is part of Qtah.
 --
--- Copyright 2015-2020 The Qtah Authors.
+-- Copyright 2015-2021 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
