Updated ChangeLog and AUTHORS

git-svn-id: http://svn.openscenegraph.org/osg/OpenSceneGraph/trunk@14643 16af8721-9629-0410-8352-f15c8da7e697
remotes/origin/OpenSceneGraph-3.4
Robert Osfield 10 years ago
parent 1b1c987356
commit ace32ebe6c

@ -1,6 +1,6 @@
OpenSceneGraph Library 3.3.3
OpenSceneGraph Library 3.3.4
534 Contributors:
535 Contributors:
Firstname Surname
-----------------
@ -96,6 +96,7 @@ Johannes Baeuerle
Thomas Hogarth
Neil Hughes
Martin Beckett
Marc Helbling
Joran Jessurun
Gino van den Bergen
Frederic Marmond
@ -112,7 +113,6 @@ Rainer Oder
Nico Kruithof
Martin Aumueller
Mario Valle
Marc Helbling
Lukasz Izdebski
Jorge Izquierdo Ciges
Jordi Torres
@ -226,6 +226,7 @@ Christian Buchner
Charles Cole
Blake Williams
Björn Hein
Aurélien Chatelain
Antoine Hue
Andrew Bettison
Anders Backman

@ -1,3 +1,130 @@
2014-12-24 11:43 robert
* CMakeModules/FindCOLLADA.cmake: Removed debug message
2014-12-24 11:25 robert
* src/osgPlugins/obj/ReaderWriterOBJ.cpp,
src/osgPlugins/obj/obj.cpp, src/osgPlugins/obj/obj.h: From Marc
Helbling, Clément Léger, Aurélien Chatelain, Paul Cheyrou-Lagrèze
:
"a last submission for the obj plugin
* supports vertex color definition after vertex position by
Clément Léger
* supports zbrush vertex color definition (as #MRGB comment) by
Aurélien Chatelain
* adds a noReverseFace option to not mess with face definition by
Aurélien Chatelain
* makes material parsing case insensitive (by Paul
Cheyrou-Lagrèze and me)
* makes the plugin resilient to faulty vertex uv/normal
definition (i.e. when a too big index is referenced) by Aurélien
hatelain
"
2014-12-24 11:02 robert
* src/osgPlugins/ply/plyfile.cpp,
src/osgPlugins/ply/vertexData.cpp,
src/osgPlugins/ply/vertexData.h: From Aurélien Chatelain, "adds
support for
* quad primitives
* face definition with the "vertex_index" label (previously only
"vertex_indices" was supported)
* replaces normal computation by the SmoothingVisitor to avoid
code duplication
"
Submitted by Marc Helbling.
2014-12-24 10:55 robert
* include/osgUtil/MeshOptimizers, src/osgUtil/MeshOptimizers.cpp,
src/osgUtil/SmoothingVisitor.cpp: From Aurélien Chatelain, "the
smoothing visitor did not handle shared arrays. It may leads to
bad geometry arrays when a shared array is involved in the scene.
This submission adds shared array duplication (and moves the
SharedArrayOptimizer declaration in MeshOptimizer to make it
callable from the SmoothingVisitor)."
Submitted by Marc Helbling.
Edited by Robet Osfield to retain the usual OSG coding style.
2014-12-24 10:47 robert
* src/osgPlugins/stl/ReaderWriterSTL.cpp: From Aurélien Chatelain,
"updates the STL plugin:
* fixes vertex color support
* adds 'magics' color definition
* cleans options to make the plugin more consistent with other
plugins
* adds options to not tristrip geometries"
Submitted by Marc Helbling.
2014-12-24 10:14 robert
* src/osgTerrain/GeometryPool.cpp,
src/osgTerrain/shaders/terrain_displacement_mapping_CCC_frag.cpp,
src/osgTerrain/shaders/terrain_displacement_mapping_CC_frag.cpp,
src/osgTerrain/shaders/terrain_displacement_mapping_C_frag.cpp,
src/osgTerrain/shaders/terrain_displacement_mapping_flat_vert.cpp,
src/osgTerrain/shaders/terrain_displacement_mapping_frag.cpp:
Aded shaders for various combinations of layers.
2014-12-24 10:13 robert
* include/osgDB/ReadFile: Added
osgDB::readShaderFileWithFallback(..) convinience functions to
make it easier to set up reading external shader files with a
built in fallback.
2014-12-23 14:20 robert
* src/osgPlugins/dae/daeRGeometry.cpp: Added support for reading
Vec3 colour arrays
2014-12-23 12:10 robert
* CMakeModules/FindCOLLADA.cmake,
src/osgPlugins/dae/CMakeLists.txt,
src/osgPlugins/dae/daeRMaterials.cpp,
src/osgPlugins/dae/daeRSceneObjects.cpp,
src/osgPlugins/dae/daeRTransforms.cpp,
src/osgPlugins/dae/daeReader.cpp, src/osgPlugins/dae/daeReader.h,
src/osgPlugins/dae/daeWAnimations.cpp,
src/osgPlugins/dae/daeWMaterials.cpp,
src/osgPlugins/dae/daeWSceneObjects.cpp,
src/osgPlugins/dae/daeWTransforms.cpp,
src/osgPlugins/dae/daeWriter.h,
src/osgPlugins/dae/domSourceReader.h: Changes to allow the
COLLADA plugin to compile against the latest COLLADA DOM version
2.4 as well as retaining compatibility with the old 2.2 DOM.
2014-12-22 10:35 robert
* CMakeLists.txt: Added comment about using
-DCMAKE_DISABLE_FINDPACKAGE_* command line.
2014-12-22 09:50 robert
* include/osg/ref_ptr: Added doxygen comment for
ref_ptr<>::release().
2014-12-22 09:49 robert
* CMakeLists.txt: Updated version number after dev release
2014-12-19 11:00 robert
* src/osg/DisplaySettings.cpp, src/osgPlugins/dae/daeReader.h:
Windows build error and warning fixes
2014-12-19 10:25 robert
* AUTHORS.txt, ChangeLog: Updated ChangeLog and AUTHORS file for
dev release
2014-12-19 08:27 robert
* CMakeModules/FindGLIB.cmake: Added if () block to avoid script

@ -470,7 +470,8 @@ TypoCorrection typoCorrections[] =
{"Dannahuer","Dannhauer"},
{"Chebeav", "Chebaev"},
{"Messershmidt","Messerschmidt"},
{"Auelien","Aurelien"}
{"Auelien","Aurelien"},
{"Aurélien","Aurélien"}
};

Loading…
Cancel
Save