Fixed errors in Contributors list
This commit is contained in:
parent
83c396b13b
commit
910cfeea60
14
AUTHORS.txt
14
AUTHORS.txt
@ -1,6 +1,6 @@
|
||||
OpenSceneGraph Library 3.3.0
|
||||
|
||||
519 Contributors:
|
||||
517 Contributors:
|
||||
|
||||
Firstname Surname
|
||||
-----------------
|
||||
@ -59,6 +59,7 @@ Per Fahlberg
|
||||
Norman Vine
|
||||
Terry Welsh
|
||||
Serge Lages
|
||||
Romano José Magacho da Silva
|
||||
Lionel Lagarde
|
||||
Chris Denham
|
||||
Aurelien Albert
|
||||
@ -76,7 +77,6 @@ Glenn Waldron
|
||||
Gideon May
|
||||
Don Tidrow
|
||||
Stephane Lamoliatte
|
||||
Romano José Magacho da Silva
|
||||
Michael Gronager
|
||||
Martin Naylor
|
||||
Joakim Simonsson
|
||||
@ -157,7 +157,6 @@ Sebastien Grignard
|
||||
Sebastian Messerschmidt
|
||||
Ryan Kawicki
|
||||
Rudolf Wiedemann
|
||||
Romano Magacho
|
||||
Mikhail Izmestev
|
||||
Maria Ten
|
||||
Liang Aibin
|
||||
@ -194,6 +193,7 @@ Mattias Linde
|
||||
Mark Sciabica
|
||||
Marcin Prus
|
||||
Lee Butler
|
||||
Lars Nilsson
|
||||
Konstantin Sinitsyn
|
||||
Ken Sewell
|
||||
Julian Ortiz
|
||||
@ -259,7 +259,6 @@ Martijn Kragtwijk
|
||||
Marius Heise
|
||||
Marcin Hajder
|
||||
Lilith Bryant
|
||||
Lars Nilsson
|
||||
Kristofer Tingdahl
|
||||
Kevin Moiule
|
||||
Keith Steffen
|
||||
@ -297,6 +296,8 @@ Claus Scheiblauer
|
||||
Christophe Loustaunau
|
||||
Christian Ruzicka
|
||||
Brad Anderegg
|
||||
Björn Hein
|
||||
Björn Blissing
|
||||
Aric Aumann
|
||||
Andrew Sampson
|
||||
Andrew Lorino
|
||||
@ -413,7 +414,6 @@ Lewis Harmon
|
||||
Leigh Stivers
|
||||
Laurence Muller
|
||||
Laura Cerritelli
|
||||
Lars Nillson
|
||||
Kyle Centers
|
||||
Kristopher Bixler
|
||||
Konstantin Matveyev
|
||||
@ -475,6 +475,7 @@ Duvan Cope
|
||||
Duncan Cavens
|
||||
Drew Whitehouse
|
||||
Douglas A. Pouk
|
||||
Dmitry Marakasov
|
||||
Dean Iverson
|
||||
David Jung
|
||||
Danny Valente
|
||||
@ -498,9 +499,6 @@ Bruno Herbelin
|
||||
Brian Keener
|
||||
Brandon Hamm
|
||||
Bora Utka
|
||||
Björn Hein
|
||||
Björn Blissing
|
||||
Bjorn Blissing
|
||||
Bill Prendergast
|
||||
Bernardt Duvenhage
|
||||
Benoit Laniel
|
||||
|
95
ChangeLog
95
ChangeLog
@ -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
|
||||
|
||||
* include/osg/State: From Aurelien Albert, "I'm working with OSG
|
||||
|
@ -456,7 +456,10 @@ TypoCorrection typoCorrections[] =
|
||||
{"Eskland","Ekstrand"},
|
||||
{"Baeuerele","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"},
|
||||
{"Rommano", "Silva",
|
||||
"Romano", "José Magacho da Silva"},
|
||||
{"Romano", "Magacho",
|
||||
"Romano", "José Magacho da Silva"},
|
||||
{"Leandro", "Motta",
|
||||
"Leandro", "Motta Barros"},
|
||||
{"Leandro", "Motto",
|
||||
|
Loading…
Reference in New Issue
Block a user