diff --git a/src/unitgrade.egg-info/PKG-INFO b/src/unitgrade.egg-info/PKG-INFO
index ec77f8e1bb796d9f2c49ff2783010c2b85ad9f19..e790654b2830951d04fccb8d4f9537a114c0fb74 100644
--- a/src/unitgrade.egg-info/PKG-INFO
+++ b/src/unitgrade.egg-info/PKG-INFO
@@ -1,6 +1,6 @@
 Metadata-Version: 2.1
 Name: unitgrade
-Version: 0.1.30.15
+Version: 1.0.0.0
 Summary: A student homework/exam evaluation framework build on pythons unittest framework.
 Home-page: https://lab.compute.dtu.dk/tuhe/unitgrade
 Author: Tue Herlau
diff --git a/src/unitgrade/framework.py b/src/unitgrade/framework.py
index b84c10f3410c3ceb8e2e4ef793b90cc326d27b5b..404d30728eb0efd288d0c449e535931ff6e45060 100644
--- a/src/unitgrade/framework.py
+++ b/src/unitgrade/framework.py
@@ -85,7 +85,7 @@ class Report:
     pack_imports = []
     individual_imports = []
 
-    _remote_check_cooldown_seconds = 1  # Seconds between remote check of report.
+    _remote_check_cooldown_seconds = 60*60*2  # Seconds between remote check of report.
     nL = 120  # Maximum line width
     _config = None  # Private variable. Used when collecting results from student computers. Should only be read/written by teacher and never used for regular evaluation.
     _setup_mode = False # True if test is being run in setup-mode, i.e. will not fail because of bad configurations, etc.
@@ -219,8 +219,8 @@ class Report:
             print(self._file())
             raise Exception("Unitgrade> You are trying to check the remote version of a *_tests_complete.py-file, and you will potentially overwrite part of this file.")
 
-        print("CHECKING THE REMOTE VERSION. ")
-
+        # print("CHECKING THE REMOTE VERSION. ")
+        print("Unitgrade> Checking the remote version...")
         url = self.url
         if not url.endswith("/"):
             url += "/"
@@ -232,6 +232,8 @@ class Report:
             t = db['last_check_time']
             if (time.time() - t) < self._remote_check_cooldown_seconds:
                 return
+            db['last_check_time'] = time.time()
+
 
         if self.url.startswith("https://gitlab"):
             # Try to turn url into a 'raw' format.
diff --git a/src/unitgrade/version.py b/src/unitgrade/version.py
index 931cb7bbf47e268fc24ebc607e4ba62bf854b722..d56676944101bbe0b0676635ca2320026244af9a 100644
--- a/src/unitgrade/version.py
+++ b/src/unitgrade/version.py
@@ -1 +1 @@
-__version__ = "0.1.30.15"
+__version__ = "1.0.0.0"