diff --git a/ChangeLog.md b/ChangeLog.md
--- a/ChangeLog.md
+++ b/ChangeLog.md
@@ -1,5 +1,11 @@
 # Changelog for gloss-export
 
+## 0.1.0.4
+Version bump  
+reintroduction of comment regarding image size limit
+
+contributers: Samuel Gélineau
+
 ## 0.1.0.3
 Version bump  
 removal of misleading comment in documentation
diff --git a/gloss-export.cabal b/gloss-export.cabal
--- a/gloss-export.cabal
+++ b/gloss-export.cabal
@@ -1,5 +1,5 @@
 name:           gloss-export
-version:        0.1.0.3
+version:        0.1.0.4
 Synopsis:       Export Gloss pictures to png, bmp, tga, tiff, gif and juicy-pixels-image
 description:    Please see the README on GitLab at <https://gitlab.com/timo-a/gloss-export#readme>
 homepage:       https://gitlab.com/timo-a/gloss-export#readme
@@ -34,8 +34,8 @@
     , OpenGLRaw                        <= 3.3.4.0
     -- I can't see where the respective functions come from... it works with the upper bound
     , JuicyPixels       >= 3.2      && <= 3.3.5
-    , vector            >= 0.9.1    && <= 0.12.1.2
-    , GLUT              >= 2.1.2.0  && <= 2.7.0.15
+    , vector            >= 0.9.1    && <= 0.12.3.0
+    , GLUT              >= 2.1.2.0  && <= 2.7.0.16
   exposed-modules:
       Graphics.Gloss.Export
     , Graphics.Gloss.Export.Image
diff --git a/src/Graphics/Gloss/Export.hs b/src/Graphics/Gloss/Export.hs
--- a/src/Graphics/Gloss/Export.hs
+++ b/src/Graphics/Gloss/Export.hs
@@ -1,4 +1,6 @@
--- | Main module for exporting gloss pictures to image files, gif animations and juicy-pixels image datatypes
+-- | Main module for exporting gloss pictures to image files, gif animations and juicy-pixels image datatypes.
+--   While no screen is displayed during the export process, the canvas is still limited to the screen's
+--   resolution.
 
 module Graphics.Gloss.Export
     (
