diff --git a/HGamer3D-Data.cabal b/HGamer3D-Data.cabal
--- a/HGamer3D-Data.cabal
+++ b/HGamer3D-Data.cabal
@@ -1,20 +1,24 @@
 Name:                HGamer3D-Data
-Version:             0.1.4
+Version:             0.1.5
 Synopsis:            Library to enable 3D game development for Haskell - Data
 Description:         
 	Library, to enable 3D game development for Haskell,
-	based on bindings to 3D Graphics, pyhsics engine and additional libraries.
-    Current implementation contains the following features: 
-      OGRE Binding, OIS Binding (limited functionality)
-      Platform: Windows only
-    Install following packages in sequence: HGamer3D-Data, HGamer3D-Ogre-Binding, HGamer3D-OIS-Binding, HGamer3D-API
+	based on bindings to 3D Graphics, Audio and GUI libraries.
+	THIS MODULE: Basic Data Types
+    List of features and modules: 
+	  Data Module (Basic Data Types),
+      OGRE Binding (3D Graphics Engine), 
+      OIS Binding (Input System),
+      cAudio Binding (Audio),
+      CEGUI Binding (GUI System),
+      APIs (Haskell style APIs, different ways, to approach API)
+    Platform: Windows only
 	License: Apache License, Version 2.0
-	
-	This part contains different Data types of the HGamer3D API
+	Install: see http://www.althainz.de/HGamer3D/Download-and-Installation.html
 	
 License:             OtherLicense
 License-file:        LICENSE
-Author:              Dr. Peter Althainz
+Author:              Peter Althainz
 Maintainer:          althainz@googlemail.com
 Build-Type:          Simple
 Cabal-Version:       >=1.2
@@ -35,4 +39,4 @@
   hs-source-dirs:    .
   Include-dirs:      . 
   build-depends:     haskell98
-  extra-libraries:   stdc++.dll
+  extra-libraries:   
diff --git a/HGamer3D/Data/Angle.hs b/HGamer3D/Data/Angle.hs
--- a/HGamer3D/Data/Angle.hs
+++ b/HGamer3D/Data/Angle.hs
@@ -2,7 +2,7 @@
 -- (A project to enable 3D game development in Haskell)
 -- For the latest info, see http://www.althainz.de/HGamer3D.html
 --
--- Copyright 2011 Dr. Peter Althainz
+-- (c) 2011 Peter Althainz
 --
 -- Licensed under the Apache License, Version 2.0 (the "License");
 -- you may not use this file except in compliance with the License.
diff --git a/HGamer3D/Data/Colour.hs b/HGamer3D/Data/Colour.hs
--- a/HGamer3D/Data/Colour.hs
+++ b/HGamer3D/Data/Colour.hs
@@ -2,7 +2,7 @@
 -- (A project to enable 3D game development in Haskell)
 -- For the latest info, see http://www.althainz.de/HGamer3D.html
 --
--- Copyright 2011 Dr. Peter Althainz
+-- (c) 2011 Peter Althainz
 --
 -- Licensed under the Apache License, Version 2.0 (the "License");
 -- you may not use this file except in compliance with the License.
diff --git a/HGamer3D/Data/HG3DClass.hs b/HGamer3D/Data/HG3DClass.hs
--- a/HGamer3D/Data/HG3DClass.hs
+++ b/HGamer3D/Data/HG3DClass.hs
@@ -5,7 +5,7 @@
 -- (A project to enable 3D game development in Haskell)
 -- For the latest info, see http://www.althainz.de/HGamer3D.html
 -- 
--- Copyright 2011 Dr. Peter Althainz
+-- (c) 2011 Peter Althainz
 -- 
 -- Licensed under the Apache License, Version 2.0 (the "License");
 -- you may not use this file except in compliance with the License.
diff --git a/HGamer3D/Data/Matrix4.hs b/HGamer3D/Data/Matrix4.hs
--- a/HGamer3D/Data/Matrix4.hs
+++ b/HGamer3D/Data/Matrix4.hs
@@ -2,7 +2,7 @@
 -- (A project to enable 3D game development in Haskell)
 -- For the latest info, see http://www.althainz.de/HGamer3D.html
 --
--- Copyright 2012 Dr. Peter Althainz
+-- (c) 2011 Peter Althainz
 --
 -- Licensed under the Apache License, Version 2.0 (the "License");
 -- you may not use this file except in compliance with the License.
diff --git a/HGamer3D/Data/Quaternion.hs b/HGamer3D/Data/Quaternion.hs
--- a/HGamer3D/Data/Quaternion.hs
+++ b/HGamer3D/Data/Quaternion.hs
@@ -2,7 +2,7 @@
 -- (A project to enable 3D game development in Haskell)
 -- For the latest info, see http://www.althainz.de/HGamer3D.html
 --
--- Copyright 2011 Dr. Peter Althainz
+-- (c) 2011 Peter Althainz
 --
 -- Licensed under the Apache License, Version 2.0 (the "License");
 -- you may not use this file except in compliance with the License.
diff --git a/HGamer3D/Data/Vector2.hs b/HGamer3D/Data/Vector2.hs
--- a/HGamer3D/Data/Vector2.hs
+++ b/HGamer3D/Data/Vector2.hs
@@ -2,7 +2,7 @@
 -- (A project to enable 3D game development in Haskell)
 -- For the latest info, see http://www.althainz.de/HGamer3D.html
 --
--- Copyright 2011 Dr. Peter Althainz
+-- (c) 2011 Peter Althainz
 --
 -- Licensed under the Apache License, Version 2.0 (the "License");
 -- you may not use this file except in compliance with the License.
diff --git a/HGamer3D/Data/Vector3.hs b/HGamer3D/Data/Vector3.hs
--- a/HGamer3D/Data/Vector3.hs
+++ b/HGamer3D/Data/Vector3.hs
@@ -2,7 +2,7 @@
 -- (A project to enable 3D game development in Haskell)
 -- For the latest info, see http://www.althainz.de/HGamer3D.html
 --
--- Copyright 2011 Dr. Peter Althainz
+-- (c) 2011 Peter Althainz
 --
 -- Licensed under the Apache License, Version 2.0 (the "License");
 -- you may not use this file except in compliance with the License.
diff --git a/HGamer3D/Data/Vector4.hs b/HGamer3D/Data/Vector4.hs
--- a/HGamer3D/Data/Vector4.hs
+++ b/HGamer3D/Data/Vector4.hs
@@ -2,7 +2,7 @@
 -- (A project to enable 3D game development in Haskell)
 -- For the latest info, see http://www.althainz.de/HGamer3D.html
 --
--- Copyright 2011 Dr. Peter Althainz
+-- (c) 2011 Peter Althainz
 --
 -- Licensed under the Apache License, Version 2.0 (the "License");
 -- you may not use this file except in compliance with the License.
diff --git a/LICENSE b/LICENSE
--- a/LICENSE
+++ b/LICENSE
@@ -1,4 +1,4 @@
-Copyright (c) 2012 Dr. Peter Althainz
+(c) 2011-2012 Peter Althainz
 
 Licensed under the Apache License, Version 2.0 (the "License");
 you may not use this file except in compliance with the License.
diff --git a/Setup.hs b/Setup.hs
--- a/Setup.hs
+++ b/Setup.hs
@@ -2,7 +2,7 @@
 -- (A project to enable 3D game development in Haskell)
 -- For the latest info, see http://www.althainz.de/HGamer3D.html
 --
--- Copyright 2011 Dr. Peter Althainz
+-- (c) 2011 Peter Althainz
 --
 -- Licensed under the Apache License, Version 2.0 (the "License");
 -- you may not use this file except in compliance with the License.
