Tweaked osgversion to catch typos and updates AUTHORS.txt
This commit is contained in:
parent
39256fff54
commit
8563e692a9
15
AUTHORS.txt
15
AUTHORS.txt
@ -1,6 +1,6 @@
|
|||||||
OpenSceneGraph Library 1.1
|
OpenSceneGraph Library 1.1
|
||||||
|
|
||||||
212 Contributors:
|
203 Contributors:
|
||||||
|
|
||||||
Firstname Surname
|
Firstname Surname
|
||||||
-----------------
|
-----------------
|
||||||
@ -92,7 +92,7 @@ Steve Lunsford
|
|||||||
Stanislav Blinov
|
Stanislav Blinov
|
||||||
Perry Miller
|
Perry Miller
|
||||||
Per Fahlberg
|
Per Fahlberg
|
||||||
Paul de Repentinguy
|
Paul de Repentingy
|
||||||
Nathan Monteleone
|
Nathan Monteleone
|
||||||
Michael Platings
|
Michael Platings
|
||||||
Max Behensky
|
Max Behensky
|
||||||
@ -110,6 +110,7 @@ Fabio Mierlo
|
|||||||
Donn Mielcarek
|
Donn Mielcarek
|
||||||
David Ergo
|
David Ergo
|
||||||
Brad Colbert
|
Brad Colbert
|
||||||
|
Andrew Sampson
|
||||||
Andreas Ekstrand
|
Andreas Ekstrand
|
||||||
Zbigniew Sroczynski
|
Zbigniew Sroczynski
|
||||||
Zach Deedler
|
Zach Deedler
|
||||||
@ -123,10 +124,8 @@ Vasily Radostev
|
|||||||
Uwe Woessner
|
Uwe Woessner
|
||||||
Tyge
|
Tyge
|
||||||
Troy Yee
|
Troy Yee
|
||||||
TrPageViewer
|
|
||||||
Tino Schwarze
|
Tino Schwarze
|
||||||
Thom Carlo
|
Thom Carlo
|
||||||
TestManipulator
|
|
||||||
Terrex
|
Terrex
|
||||||
Tanguy Fautré
|
Tanguy Fautré
|
||||||
SpotExponent
|
SpotExponent
|
||||||
@ -137,14 +136,11 @@ Roland Smeenk
|
|||||||
Robert Swain
|
Robert Swain
|
||||||
Reinhard Sainitzer
|
Reinhard Sainitzer
|
||||||
Qing Shen
|
Qing Shen
|
||||||
ProducerEventCallback
|
|
||||||
Philipp Siemoleit
|
Philipp Siemoleit
|
||||||
Paul Fredrikson
|
Paul Fredrikson
|
||||||
OrientationConverter
|
|
||||||
Nikolov Trajce
|
Nikolov Trajce
|
||||||
Nicolas Brodu
|
Nicolas Brodu
|
||||||
Nathan Cournia
|
Nathan Cournia
|
||||||
Mr Osfields
|
|
||||||
Morné Pistorius
|
Morné Pistorius
|
||||||
Mikkel Gjøl
|
Mikkel Gjøl
|
||||||
Michael Morrison
|
Michael Morrison
|
||||||
@ -158,8 +154,6 @@ Mathia Walker
|
|||||||
Mason Menninger
|
Mason Menninger
|
||||||
Martijn Kragtwijk
|
Martijn Kragtwijk
|
||||||
Louis Hamilton
|
Louis Hamilton
|
||||||
Logos
|
|
||||||
LineStipple
|
|
||||||
Lewis Harmon
|
Lewis Harmon
|
||||||
Kristopher Bixler
|
Kristopher Bixler
|
||||||
Karsten Weiss
|
Karsten Weiss
|
||||||
@ -181,7 +175,6 @@ George Papagiannakis
|
|||||||
Frank Warmerdam
|
Frank Warmerdam
|
||||||
Frank Lindeman
|
Frank Lindeman
|
||||||
Frank Lichtenheld
|
Frank Lichtenheld
|
||||||
Files
|
|
||||||
Ferdinand Cornelissen
|
Ferdinand Cornelissen
|
||||||
Fabien Dachicourt
|
Fabien Dachicourt
|
||||||
Edmond Gheury
|
Edmond Gheury
|
||||||
@ -205,10 +198,8 @@ Blake Williams
|
|||||||
Bart Gallet
|
Bart Gallet
|
||||||
Axel Volley
|
Axel Volley
|
||||||
Antoine Hue
|
Antoine Hue
|
||||||
Andrew Sampson
|
|
||||||
Andrew Reyonolds
|
Andrew Reyonolds
|
||||||
Andreas Jochens
|
Andreas Jochens
|
||||||
Andew Sampson
|
|
||||||
Anders Backman
|
Anders Backman
|
||||||
Allen Bierbaum
|
Allen Bierbaum
|
||||||
Alberto Jaspe
|
Alberto Jaspe
|
||||||
|
@ -168,6 +168,15 @@ bool validName(const std::string& first)
|
|||||||
if (first=="TextureRectangle") return false;
|
if (first=="TextureRectangle") return false;
|
||||||
if (first=="DeleteHandler") return false;
|
if (first=="DeleteHandler") return false;
|
||||||
if (first=="EventQueue") return false;
|
if (first=="EventQueue") return false;
|
||||||
|
if (first=="TrPageViewer") return false;
|
||||||
|
if (first=="TestManipulator") return false;
|
||||||
|
if (first=="ProducerEventCallback") return false;
|
||||||
|
if (first=="OrientationConverter") return false;
|
||||||
|
if (first=="Logos") return false;
|
||||||
|
if (first=="LineStipple") return false;
|
||||||
|
if (first=="Files") return false;
|
||||||
|
if (first=="Mr") return false;
|
||||||
|
if (first=="Osfields") return false;
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -250,6 +259,7 @@ std::string typoCorrection(const std::string& name)
|
|||||||
if (name=="Yefrei") return "Yefei";
|
if (name=="Yefrei") return "Yefei";
|
||||||
if (name=="Yfei") return "Yefei";
|
if (name=="Yfei") return "Yefei";
|
||||||
if (name=="Antonoine") return "Antoine";
|
if (name=="Antonoine") return "Antoine";
|
||||||
|
if (name=="Andew") return "Andrew";
|
||||||
return name;
|
return name;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -263,7 +273,7 @@ void nameCorrection(NamePair& name)
|
|||||||
if (name.first=="Paul" && name.second=="de")
|
if (name.first=="Paul" && name.second=="de")
|
||||||
{
|
{
|
||||||
name.first = "Paul";
|
name.first = "Paul";
|
||||||
name.second = "de Repentinguy";
|
name.second = "de Repentingy";
|
||||||
}
|
}
|
||||||
if (name.first=="Nick" && name.second=="")
|
if (name.first=="Nick" && name.second=="")
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user