Fixed errors in Contributors list

This commit is contained in:
Robert Osfield 2013-10-03 16:20:29 +00:00
parent 83c396b13b
commit 910cfeea60
3 changed files with 107 additions and 9 deletions

View File

@ -1,6 +1,6 @@
OpenSceneGraph Library 3.3.0 OpenSceneGraph Library 3.3.0
519 Contributors: 517 Contributors:
Firstname Surname Firstname Surname
----------------- -----------------
@ -59,6 +59,7 @@ Per Fahlberg
Norman Vine Norman Vine
Terry Welsh Terry Welsh
Serge Lages Serge Lages
Romano José Magacho da Silva
Lionel Lagarde Lionel Lagarde
Chris Denham Chris Denham
Aurelien Albert Aurelien Albert
@ -76,7 +77,6 @@ Glenn Waldron
Gideon May Gideon May
Don Tidrow Don Tidrow
Stephane Lamoliatte Stephane Lamoliatte
Romano José Magacho da Silva
Michael Gronager Michael Gronager
Martin Naylor Martin Naylor
Joakim Simonsson Joakim Simonsson
@ -157,7 +157,6 @@ Sebastien Grignard
Sebastian Messerschmidt Sebastian Messerschmidt
Ryan Kawicki Ryan Kawicki
Rudolf Wiedemann Rudolf Wiedemann
Romano Magacho
Mikhail Izmestev Mikhail Izmestev
Maria Ten Maria Ten
Liang Aibin Liang Aibin
@ -194,6 +193,7 @@ Mattias Linde
Mark Sciabica Mark Sciabica
Marcin Prus Marcin Prus
Lee Butler Lee Butler
Lars Nilsson
Konstantin Sinitsyn Konstantin Sinitsyn
Ken Sewell Ken Sewell
Julian Ortiz Julian Ortiz
@ -259,7 +259,6 @@ Martijn Kragtwijk
Marius Heise Marius Heise
Marcin Hajder Marcin Hajder
Lilith Bryant Lilith Bryant
Lars Nilsson
Kristofer Tingdahl Kristofer Tingdahl
Kevin Moiule Kevin Moiule
Keith Steffen Keith Steffen
@ -297,6 +296,8 @@ Claus Scheiblauer
Christophe Loustaunau Christophe Loustaunau
Christian Ruzicka Christian Ruzicka
Brad Anderegg Brad Anderegg
Björn Hein
Björn Blissing
Aric Aumann Aric Aumann
Andrew Sampson Andrew Sampson
Andrew Lorino Andrew Lorino
@ -413,7 +414,6 @@ Lewis Harmon
Leigh Stivers Leigh Stivers
Laurence Muller Laurence Muller
Laura Cerritelli Laura Cerritelli
Lars Nillson
Kyle Centers Kyle Centers
Kristopher Bixler Kristopher Bixler
Konstantin Matveyev Konstantin Matveyev
@ -475,6 +475,7 @@ Duvan Cope
Duncan Cavens Duncan Cavens
Drew Whitehouse Drew Whitehouse
Douglas A. Pouk Douglas A. Pouk
Dmitry Marakasov
Dean Iverson Dean Iverson
David Jung David Jung
Danny Valente Danny Valente
@ -498,9 +499,6 @@ Bruno Herbelin
Brian Keener Brian Keener
Brandon Hamm Brandon Hamm
Bora Utka Bora Utka
Björn Hein
Björn Blissing
Bjorn Blissing
Bill Prendergast Bill Prendergast
Bernardt Duvenhage Bernardt Duvenhage
Benoit Laniel Benoit Laniel

View File

@ -1,3 +1,98 @@
2013-10-03 08:45 robert
* include/osgUtil/IntersectionVisitor,
include/osgUtil/LineSegmentIntersector,
include/osgUtil/RayIntersector, src/osgUtil/CMakeLists.txt,
src/osgUtil/LineSegmentIntersector.cpp,
src/osgUtil/RayIntersector.cpp: From Jan Peciva, RayIntersector
implementation
2013-10-02 13:59 robert
* include/osgDB/ObjectWrapper, src/osgDB/InputStream.cpp,
src/osgDB/ObjectWrapper.cpp: From Colin McDonald and Robert
Osfield, "When a serializer shared library is loaded it registers
all of
the wrappers it contains. The registration creates a prototype
object for all of the wrapped classes. For some of the
higher-level
classes this can be a bit heavy.
I noticed a problem with a model which required a single class
from
osgSim. When osgdb_serializers_osgsim.so was loaded it registered
wrappers and created prototype objects for all of the osgSim
classes,
including osgSim::ScalarBar. The constructor for that class
creates
several drawables, and loads arial.ttf using the freetype plugin.
I
don't need that, and don't even ship the font or plugin with my
application, resulting in an unexplained warning message loading
the model.
I've modified the ObjectWrapper class to defer the prototype
object
creation until if & when actually required."
2013-10-02 11:29 robert
* src/osgPlugins/osc/osc/OscHostEndianness.h: From Dmitry
Marakasov, "These are FreeBSD bits for
src/osgPlugins/osc/osc/OscHostEndianness.h,
required to build newever OSG on this OS. Also corrects file name
in the error message - I was confused not to find
OSCHostEndianness.h
after I've got this error.
Tested by successfully building OSG 3.2.0 with this patch on
FreeBSD
9.1."
2013-10-02 11:28 robert
* include/osg/State: Re-ordered the public/protected sections to
keep the public section all together
2013-10-02 11:09 robert
* src/osgPlugins/stl/ReaderWriterSTL.cpp: From Björn Hein, "it
seems that for generating "per vertex normals" as stated in the
comment, two of them are missing. This results in wrong display
of
STL-files regarding normals. Following simple fix seems to work:
Index: ReaderWriterSTL.cpp
===================================================================
--- ReaderWriterSTL.cpp (Revision 13797)
+++ ReaderWriterSTL.cpp (Arbeitskopie)
@@ -108,6 +108,8 @@
++itr)
{
perVertexNormals->push_back(*itr);
+ perVertexNormals->push_back(*itr);
+ perVertexNormals->push_back(*itr);
}
geom->setNormalArray(perVertexNormals.get(),
osg::Array::BIND_PER_VERTEX);
"
2013-10-01 19:34 robert
* src/osgPresentation/Cursor.cpp, src/osgPresentation/Image.cpp,
src/osgPresentation/Movie.cpp: Fixed build with no automatic
ref_ptr<> conversion
2013-10-01 19:31 robert
* AUTHORS.txt, applications/osgversion/Contributors.cpp: Updated
AUTHORS files
2013-10-01 19:00 robert
* ChangeLog: Updated ChangeLog in prep for dev release
2013-10-01 17:01 robert 2013-10-01 17:01 robert
* include/osg/State: From Aurelien Albert, "I'm working with OSG * include/osg/State: From Aurelien Albert, "I'm working with OSG

View File

@ -456,7 +456,10 @@ TypoCorrection typoCorrections[] =
{"Eskland","Ekstrand"}, {"Eskland","Ekstrand"},
{"Baeuerele","Baeuerle"}, {"Baeuerele","Baeuerle"},
{"Bauerle","Baeuerle"}, {"Bauerle","Baeuerle"},
{"Baeurele","Baeuerle"} {"Baeurele","Baeuerle"},
{"Nillson","Nilsson"},
{"Bjorn","Björn"},
{"Björn","Björn"}
}; };
@ -596,6 +599,8 @@ NameCorrection nameCorrections[] =
"Romano", "José Magacho da Silva"}, "Romano", "José Magacho da Silva"},
{"Rommano", "Silva", {"Rommano", "Silva",
"Romano", "José Magacho da Silva"}, "Romano", "José Magacho da Silva"},
{"Romano", "Magacho",
"Romano", "José Magacho da Silva"},
{"Leandro", "Motta", {"Leandro", "Motta",
"Leandro", "Motta Barros"}, "Leandro", "Motta Barros"},
{"Leandro", "Motto", {"Leandro", "Motto",