From 29935e21389b86fba8c2df1bd76afa65dc30d9bb Mon Sep 17 00:00:00 2001 From: aramis_acg Date: Sun, 4 Apr 2010 14:19:33 +0000 Subject: [PATCH] Set overall version to 1.1. git-svn-id: https://assimp.svn.sourceforge.net/svnroot/assimp/trunk@644 67173fc5-114c-0410-ac8e-9d2fd5bffc1f --- code/AssimpPCH.cpp | 4 ++-- code/res/assimp.rc | 10 +++++----- port/dAssimp/assimp/loader.d | 4 ++-- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/code/AssimpPCH.cpp b/code/AssimpPCH.cpp index b1b2bf7b6..3b8232c65 100644 --- a/code/AssimpPCH.cpp +++ b/code/AssimpPCH.cpp @@ -25,13 +25,13 @@ ASSIMP_API const char* aiGetLegalString () { // ------------------------------------------------------------------------------------------------ // Get Assimp minor version ASSIMP_API unsigned int aiGetVersionMinor () { - return 5; + return 1; } // ------------------------------------------------------------------------------------------------ // Get Assimp major version ASSIMP_API unsigned int aiGetVersionMajor () { - return 0; + return 1; } // ------------------------------------------------------------------------------------------------ diff --git a/code/res/assimp.rc b/code/res/assimp.rc index a07113836..3bd6e9db6 100644 --- a/code/res/assimp.rc +++ b/code/res/assimp.rc @@ -31,8 +31,8 @@ LANGUAGE LANG_GERMAN, SUBLANG_GERMAN // VS_VERSION_INFO VERSIONINFO - FILEVERSION 1,0,SVNRevision, 0 - PRODUCTVERSION 1,0,SVNRevision,0 + FILEVERSION 1,1,SVNRevision, 0 + PRODUCTVERSION 1,1,SVNRevision,0 FILEFLAGSMASK 0x17L #ifdef _DEBUG FILEFLAGS 0x1L @@ -50,12 +50,12 @@ BEGIN VALUE "Comments", "Licensed under a 3-clause BSD license" VALUE "CompanyName", "ASSIMP Development Team" VALUE "FileDescription", "Open Asset Import Library" - VALUE "FileVersion", 1,0,SVNRevision,0 + VALUE "FileVersion", 1,1,SVNRevision,0 VALUE "InternalName", "assimp " - VALUE "LegalCopyright", "Copyright (C) 2006-2009" + VALUE "LegalCopyright", "Copyright (C) 2006-2010" VALUE "OriginalFilename", "assimpNN.dll" VALUE "ProductName", "Open Asset Import Library" - VALUE "ProductVersion", 1,0,SVNRevision,0 + VALUE "ProductVersion", 1,1,SVNRevision,0 ,0 END END diff --git a/port/dAssimp/assimp/loader.d b/port/dAssimp/assimp/loader.d index 3436cdbe6..b18610c2a 100644 --- a/port/dAssimp/assimp/loader.d +++ b/port/dAssimp/assimp/loader.d @@ -51,8 +51,8 @@ import assimp.api; import tango.io.Stdout; import tango.sys.SharedLib; -const uint ASSIMP_BINDINGS_MAJOR = 0; -const uint ASSIMP_BINDINGS_MINOR = 5; +const uint ASSIMP_BINDINGS_MAJOR = 1; +const uint ASSIMP_BINDINGS_MINOR = 1; /** * Loader class for dynamically loading the Assimp library.