diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,10 @@
+## 4.0.1.0
+
+*   Add Preferences link to context menu.  This is a convenient way to open the
+    Preferences if you don't have the menu shown by default.
+    [#171](https://github.com/cdepillabout/termonad/pull/171) Thanks
+    [@maridonkers](https://github.com/maridonkers)!
+
 ## 4.0.0.1
 
 *   Update Termonad to be able to be built with the latest versions of the
diff --git a/src/Termonad/Term.hs b/src/Termonad/Term.hs
--- a/src/Termonad/Term.hs
+++ b/src/Termonad/Term.hs
@@ -479,6 +479,7 @@
     menuModel <- menuNew
     menuAppend menuModel (Just "Copy") (Just "app.copy")
     menuAppend menuModel (Just "Paste") (Just "app.paste")
+    menuAppend menuModel (Just "Preferences") (Just "app.preferences")
     menu <- menuNewFromModel menuModel
     menuAttachToWidget menu vteTerm Nothing
     menuPopupAtPointer menu Nothing
diff --git a/termonad.cabal b/termonad.cabal
--- a/termonad.cabal
+++ b/termonad.cabal
@@ -1,7 +1,16 @@
 name:                termonad
-version:             4.0.0.1
+version:             4.0.1.0
 synopsis:            Terminal emulator configurable in Haskell
-description:         Please see <https://github.com/cdepillabout/termonad#readme README.md>.
+description:
+  Termonad is a terminal emulator configurable in Haskell.  It is extremely
+  customizable and provides hooks to modify the default behavior.  It can be
+  thought of as the \"XMonad\" of terminal emulators.  Termonad was featured on
+  an <https://www.youtube.com/watch?v=TLNr_gBv5HY episode> of
+  <https://www.youtube.com/channel/UCVls1GmFKf6WlTraIb_IaJg DistroTube>.  This
+  video gives a short overview of Termonad.
+  .
+  Please see <https://github.com/cdepillabout/termonad#readme README.md> for
+  more information.
 homepage:            https://github.com/cdepillabout/termonad
 license:             BSD3
 license-file:        LICENSE
