Bumped the version numbers up to 1.0 in preparation for 1.0-rc1.
This commit is contained in:
parent
6c70812928
commit
258425d649
@ -18,14 +18,14 @@
|
|||||||
|
|
||||||
extern "C" {
|
extern "C" {
|
||||||
|
|
||||||
#define OSG_VERSION_MAJOR 0
|
#define OSG_VERSION_MAJOR 1
|
||||||
#define OSG_VERSION_MINOR 9
|
#define OSG_VERSION_MINOR 0
|
||||||
#define OSG_VERSION_RELEASE 9
|
#define OSG_VERSION_RELEASE 0
|
||||||
#define OSG_VERSION_REVISION 1
|
#define OSG_VERSION_REVISION 0
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* osgGetVersion() returns the library version number.
|
* osgGetVersion() returns the library version number.
|
||||||
* Numbering convention : OpenSceneGraph-0.9.9 will return 0.9.9 from osgGetVersion.
|
* Numbering convention : OpenSceneGraph-1.0 will return 1.0 from osgGetVersion.
|
||||||
*
|
*
|
||||||
* This C function can be also used to check for the existence of the OpenSceneGraph
|
* This C function can be also used to check for the existence of the OpenSceneGraph
|
||||||
* library using autoconf and its m4 macro AC_CHECK_LIB.
|
* library using autoconf and its m4 macro AC_CHECK_LIB.
|
||||||
|
@ -20,7 +20,7 @@ extern "C" {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* osgDBGetVersion() returns the library version number.
|
* osgDBGetVersion() returns the library version number.
|
||||||
* Numbering convention : osg_src-0.8.31 will return 0.8.31 from getVersion_osg.
|
* Numbering convention : OpenSceneGraph-1.0 will return 1.0 from osgDBGetVersion.
|
||||||
*
|
*
|
||||||
* This C function can be also used to check for the existence of the OpenSceneGraph
|
* This C function can be also used to check for the existence of the OpenSceneGraph
|
||||||
* library using autoconf and its m4 macro AC_CHECK_LIB.
|
* library using autoconf and its m4 macro AC_CHECK_LIB.
|
||||||
|
@ -20,8 +20,8 @@
|
|||||||
extern "C" {
|
extern "C" {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* getVersion_osgGA() returns the library version number.
|
* osgGAGetVersion() returns the library version number.
|
||||||
* Numbering convention : osg_src-0.8-31 will return 0.8.31 from getVersion_osgGA.
|
* Numbering convention : OpenSceneGraph-1.0 will return 1.0 from osgGAGetVersion.
|
||||||
*
|
*
|
||||||
* This C function can be also used to check for the existence of the OpenSceneGraph
|
* This C function can be also used to check for the existence of the OpenSceneGraph
|
||||||
* library using autoconf and its m4 macro AC_CHECK_LIB.
|
* library using autoconf and its m4 macro AC_CHECK_LIB.
|
||||||
|
@ -19,7 +19,27 @@
|
|||||||
|
|
||||||
extern "C" {
|
extern "C" {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* osgParticleGetVersion() returns the library version number.
|
||||||
|
* Numbering convention : OpenSceneGraph-1.0 will return 1.0 from osgParticleGetVersion.
|
||||||
|
*
|
||||||
|
* This C function can be also used to check for the existence of the OpenSceneGraph
|
||||||
|
* library using autoconf and its m4 macro AC_CHECK_LIB.
|
||||||
|
*
|
||||||
|
* Here is the code to add to your configure.in:
|
||||||
|
\verbatim
|
||||||
|
#
|
||||||
|
# Check for the OpenSceneGraph Terrain library
|
||||||
|
#
|
||||||
|
AC_CHECK_LIB(osg, osgParticleGetVersion, ,
|
||||||
|
[AC_MSG_ERROR(OpenSceneGraph Terrain library not found. See http://www.openscenegraph.org)],)
|
||||||
|
\endverbatim
|
||||||
|
*/
|
||||||
OSGPARTICLE_EXPORT const char* osgParticleGetVersion();
|
OSGPARTICLE_EXPORT const char* osgParticleGetVersion();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* osgParticleGetLibraryName() returns the library name in human friendly form.
|
||||||
|
*/
|
||||||
OSGPARTICLE_EXPORT const char* osgParticleGetLibraryName();
|
OSGPARTICLE_EXPORT const char* osgParticleGetLibraryName();
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -21,7 +21,7 @@ extern "C" {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* osgProducerGetVersion() returns the library version number.
|
* osgProducerGetVersion() returns the library version number.
|
||||||
* Numbering convention : osg_src-0.8.31 will return 0.8.31.
|
* Numbering convention : OpenSceneGraph-1.0 will return 1.0 from osgProducerGetVersion.
|
||||||
*
|
*
|
||||||
* This C function can be also used to check for the existence of the OpenSceneGraph
|
* This C function can be also used to check for the existence of the OpenSceneGraph
|
||||||
* library using autoconf and its m4 macro AC_CHECK_LIB.
|
* library using autoconf and its m4 macro AC_CHECK_LIB.
|
||||||
|
@ -20,7 +20,7 @@ extern "C" {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* osgSimGetVersion() returns the library version number.
|
* osgSimGetVersion() returns the library version number.
|
||||||
* Numbering convention : OpenSceneGraph-Sim-0.1 will return 0.1 from osgSimgetVersion.
|
* Numbering convention : OpenSceneGraph-1.0 will return 1.0 from osgSimGetVersion.
|
||||||
*
|
*
|
||||||
* This C function can be also used to check for the existence of the OpenSceneGraph
|
* This C function can be also used to check for the existence of the OpenSceneGraph
|
||||||
* library using autoconf and its m4 macro AC_CHECK_LIB.
|
* library using autoconf and its m4 macro AC_CHECK_LIB.
|
||||||
|
@ -20,7 +20,7 @@ extern "C" {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* osgTerrainGetVersion() returns the library version number.
|
* osgTerrainGetVersion() returns the library version number.
|
||||||
* Numbering convention : OpenSceneGraph-0.1 will return 0.1 from osgTerraingetVersion.
|
* Numbering convention : OpenSceneGraph-1.0 will return 1.0 from osgTerrainGetVersion.
|
||||||
*
|
*
|
||||||
* This C function can be also used to check for the existence of the OpenSceneGraph
|
* This C function can be also used to check for the existence of the OpenSceneGraph
|
||||||
* library using autoconf and its m4 macro AC_CHECK_LIB.
|
* library using autoconf and its m4 macro AC_CHECK_LIB.
|
||||||
|
@ -19,8 +19,8 @@
|
|||||||
extern "C" {
|
extern "C" {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* getVersion_osg() returns the library version number.
|
* osgTextGetVersion() returns the library version number.
|
||||||
* Numbering convention : osg_src-0.8-31 will return 0.8.31 from getVersion_osg.
|
* Numbering convention : OpenSceneGraph-1.0 will return 1.0 from osgTextGetVersion.
|
||||||
*
|
*
|
||||||
* This C function can be also used to check for the existence of the OpenSceneGraph
|
* This C function can be also used to check for the existence of the OpenSceneGraph
|
||||||
* library using autoconf and its m4 macro AC_CHECK_LIB.
|
* library using autoconf and its m4 macro AC_CHECK_LIB.
|
||||||
|
@ -21,7 +21,7 @@ extern "C" {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* osgUtilGetVersion() returns the library version number.
|
* osgUtilGetVersion() returns the library version number.
|
||||||
* Numbering convention : osg_src-0.8-31 will return 0.8.31 from osgUtilGetVersion.
|
* Numbering convention : OpenSceneGraph-1.0 will return 1.0 from osgUtilGetVersion.
|
||||||
*
|
*
|
||||||
* This C function can be also used to check for the existence of the OpenSceneGraph
|
* This C function can be also used to check for the existence of the OpenSceneGraph
|
||||||
* library using autoconf and its m4 macro AC_CHECK_LIB.
|
* library using autoconf and its m4 macro AC_CHECK_LIB.
|
||||||
|
@ -14,7 +14,7 @@
|
|||||||
|
|
||||||
const char* osgGetVersion()
|
const char* osgGetVersion()
|
||||||
{
|
{
|
||||||
return "0.9.9";
|
return "1.0";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -14,7 +14,7 @@
|
|||||||
|
|
||||||
const char* osgDBGetVersion()
|
const char* osgDBGetVersion()
|
||||||
{
|
{
|
||||||
return "0.9.9";
|
return "1.0";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
const char* osgGAGetVersion()
|
const char* osgGAGetVersion()
|
||||||
{
|
{
|
||||||
return "0.9.9";
|
return "1.0";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
const char* osgParticleGetVersion()
|
const char* osgParticleGetVersion()
|
||||||
{
|
{
|
||||||
return "0.9.9";
|
return "1.0";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
const char* osgProducerGetVersion()
|
const char* osgProducerGetVersion()
|
||||||
{
|
{
|
||||||
return "0.9.9";
|
return "1.0";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
const char* osgSimGetVersion()
|
const char* osgSimGetVersion()
|
||||||
{
|
{
|
||||||
return "0.9.9";
|
return "1.0";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
const char* osgTerrainGetVersion()
|
const char* osgTerrainGetVersion()
|
||||||
{
|
{
|
||||||
return "0.9.9";
|
return "1.0";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
const char* osgTextGetVersion()
|
const char* osgTextGetVersion()
|
||||||
{
|
{
|
||||||
return "0.9.9";
|
return "1.0";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -14,7 +14,7 @@
|
|||||||
|
|
||||||
const char* osgUtilGetVersion()
|
const char* osgUtilGetVersion()
|
||||||
{
|
{
|
||||||
return "0.9.9";
|
return "1.0";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user