diff --git a/User Manual/6-changelog/changelog.md b/User Manual/6-changelog/changelog.md
index 79d58b22e79a5ec351fc25861869962ec5d05cb8..648fdf54800fa4c667347bb202c4a38dbdad6538 100644
--- a/User Manual/6-changelog/changelog.md	
+++ b/User Manual/6-changelog/changelog.md	
@@ -1,7 +1,9 @@
 #Changelog
 
 
-**VECTO 3.0.2 (2016-03-10)**
+**VECTO 3.0.2**
+
+***Build 434 (2016-03-10)***
 
 - New simulation modes:
     + Measured Speed
@@ -34,10 +36,17 @@
 - Bugfix: retarder takes the retarder ratio into account for lossmap lookup
 - Bugfix: use unique identifier for jobs in job list
 - Bugfix: error in triagulation of fuel consumption map
+
+***Build 448 (2016-03-24)***
+
+- Bugfix: set WHTC factors to a valid default value in engineering mode
+- Bugfix: first page of declaration report was missing
+- fixed inconsistencies in user manual
 - Bugfix: better error message roll resistance calculation could not be calculated
 - Bugfix: measured speed now calculates distance correctly
 - Bugfix: measured speed fills missing moddata columns (acc, dist, grad)
 - Bugfix: better error message when driving cycle is missing.
+- Bugfix: vectocmd errormsg when writing progress
 
 **VECTO 3.0.1**
 
diff --git a/User Manual/help.html b/User Manual/help.html
index 76541d5a9c71c709b43b3611efe26528858916cf..1fea0389b2d4873b102f53107c083d9091eca315 100644
--- a/User Manual/help.html	
+++ b/User Manual/help.html	
@@ -3557,7 +3557,8 @@ Auxiliary speed [rpm],Mechanical power [kW],Supply power [kW]
 </div>
 <div id="changelog" class="section level1">
 <h1>Changelog</h1>
-<p><strong>VECTO 3.0.2 (2016-03-10)</strong></p>
+<p><strong>VECTO 3.0.2</strong></p>
+<p><strong><em>Build 434 (2016-03-10)</em></strong></p>
 <ul>
 <li>New simulation modes:
 <ul>
@@ -3596,10 +3597,17 @@ Auxiliary speed [rpm],Mechanical power [kW],Supply power [kW]
 <li>Bugfix: retarder takes the retarder ratio into account for lossmap lookup</li>
 <li>Bugfix: use unique identifier for jobs in job list</li>
 <li>Bugfix: error in triagulation of fuel consumption map</li>
+</ul>
+<p><strong><em>Build 448 (2016-03-24)</em></strong></p>
+<ul>
+<li>Bugfix: set WHTC factors to a valid default value in engineering mode</li>
+<li>Bugfix: first page of declaration report was missing</li>
+<li>fixed inconsistencies in user manual</li>
 <li>Bugfix: better error message roll resistance calculation could not be calculated</li>
 <li>Bugfix: measured speed now calculates distance correctly</li>
 <li>Bugfix: measured speed fills missing moddata columns (acc, dist, grad)</li>
 <li>Bugfix: better error message when driving cycle is missing.</li>
+<li>Bugfix: vectocmd errormsg when writing progress</li>
 </ul>
 <p><strong>VECTO 3.0.1</strong></p>
 <ul>
diff --git a/VECTO/GUI/F_MAINForm.vb b/VECTO/GUI/F_MAINForm.vb
index 6a92dc8a0be28c1497d62338161114640ab2718f..6aaf3cea286fafa7b658ac538c012befb1be6eb3 100644
--- a/VECTO/GUI/F_MAINForm.vb
+++ b/VECTO/GUI/F_MAINForm.vb
@@ -539,9 +539,9 @@ Imports TUGraz.VectoCore.Utils
 		ModeUpdate()
 
 #If DEBUG Then
-		Dim LicCheck = False
+		Const LicCheck As Boolean = False
 #Else
-		Dim LicCheck = True
+		Const LicCheck as Boolean = True
 #End If
 
 		'License check
diff --git a/VectoConsole/Properties/Version.cs b/VectoConsole/Properties/Version.cs
index 7fb94ed5cad6629aaf45fd6911479d2c8a0d0496..2eeeb70dd05dbc02954cc3c90ef3fc5113e7dac3 100644
--- a/VectoConsole/Properties/Version.cs
+++ b/VectoConsole/Properties/Version.cs
@@ -30,5 +30,5 @@
 */
 
 using System.Reflection;
-[assembly: AssemblyVersion("3.0.2.434")]
-[assembly: AssemblyFileVersion("3.0.2.434")]
+[assembly: AssemblyVersion("3.0.2.448")]
+[assembly: AssemblyFileVersion("3.0.2.448")]
diff --git a/VectoCore/Properties/Version.cs b/VectoCore/Properties/Version.cs
index 7fb94ed5cad6629aaf45fd6911479d2c8a0d0496..2eeeb70dd05dbc02954cc3c90ef3fc5113e7dac3 100644
--- a/VectoCore/Properties/Version.cs
+++ b/VectoCore/Properties/Version.cs
@@ -30,5 +30,5 @@
 */
 
 using System.Reflection;
-[assembly: AssemblyVersion("3.0.2.434")]
-[assembly: AssemblyFileVersion("3.0.2.434")]
+[assembly: AssemblyVersion("3.0.2.448")]
+[assembly: AssemblyFileVersion("3.0.2.448")]