Browse Source

version bump 0.3.3

git-svn-id: http://zengl.googlecode.com/svn/branches/0.3.x@1916 6573c10b-8653-0410-9706-d32479e959fb
dr.andru 13 years ago
parent
commit
f2c69282e8
4 changed files with 6 additions and 4 deletions
  1. 2 2
      src/Lazarus/ZenGL-win.lpi
  2. BIN
      src/ZenGL.res
  3. 2 0
      src/zgl_math_2d.pas
  4. 2 2
      tools/ZenFont(LCL)/uMain.pas

+ 2 - 2
src/Lazarus/ZenGL-win.lpi

@@ -16,9 +16,9 @@
     <VersionInfo>
       <UseVersionInfo Value="True"/>
       <MinorVersionNr Value="3"/>
-      <RevisionNr Value="2"/>
+      <RevisionNr Value="3"/>
       <CharSet Value="04B0"/>
-      <StringTable CompanyName="Kemka Andrey aka Andru" FileDescription="Cross-platform game development library" InternalName="ZenGL" LegalCopyright="Kemka Andrey aka Andru" OriginalFilename="ZenGL" ProductName="ZenGL" ProductVersion="0.3.2"/>
+      <StringTable CompanyName="Kemka Andrey aka Andru" FileDescription="Cross-platform game development library" InternalName="ZenGL" LegalCopyright="Kemka Andrey aka Andru" OriginalFilename="ZenGL" ProductName="ZenGL" ProductVersion="0.3.3"/>
     </VersionInfo>
     <BuildModes Count="4">
       <Item1 Name="Release" Default="True"/>

BIN
src/ZenGL.res


+ 2 - 0
src/zgl_math_2d.pas

@@ -25,6 +25,8 @@ unit zgl_math_2d;
 interface
 
 const
+  EPS = 0.000001;
+
   pi      = 3.141592654;
   rad2deg = 57.29578049;
   deg2rad = 0.017453292;

+ 2 - 2
tools/ZenFont(LCL)/uMain.pas

@@ -331,8 +331,8 @@ begin
 
   if SaveFontDialog.Execute() Then
     begin
-      name := file_GetName( UTF8ToAnsi( SaveFontDialog.FileName ) );
-      dir  := file_GetDirectory( UTF8ToAnsi( SaveFontDialog.FileName ) );
+      name := file_GetName( SaveFontDialog.FileName );
+      dir  := file_GetDirectory( SaveFontDialog.FileName );
       fontgen_SaveFont( fg_Font, dir + name );
     end;
 end;