You can subscribe to this list here.
2005 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(128) |
Dec
(65) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2006 |
Jan
(48) |
Feb
(132) |
Mar
(95) |
Apr
(47) |
May
(54) |
Jun
(2) |
Jul
(57) |
Aug
(109) |
Sep
(131) |
Oct
(186) |
Nov
(105) |
Dec
(78) |
2007 |
Jan
(125) |
Feb
(105) |
Mar
(52) |
Apr
(104) |
May
(63) |
Jun
(116) |
Jul
(76) |
Aug
|
Sep
(18) |
Oct
(93) |
Nov
(110) |
Dec
(169) |
2008 |
Jan
(90) |
Feb
(64) |
Mar
(41) |
Apr
(23) |
May
(6) |
Jun
(18) |
Jul
(10) |
Aug
(61) |
Sep
(139) |
Oct
(50) |
Nov
(55) |
Dec
(2) |
2009 |
Jan
|
Feb
(1) |
Mar
(62) |
Apr
(22) |
May
(17) |
Jun
(19) |
Jul
(40) |
Aug
(21) |
Sep
|
Oct
(40) |
Nov
(23) |
Dec
|
2010 |
Jan
(14) |
Feb
(40) |
Mar
(9) |
Apr
(11) |
May
(19) |
Jun
(4) |
Jul
(10) |
Aug
(22) |
Sep
(15) |
Oct
|
Nov
(2) |
Dec
|
2011 |
Jan
(13) |
Feb
(10) |
Mar
|
Apr
(13) |
May
|
Jun
|
Jul
(2) |
Aug
(4) |
Sep
|
Oct
|
Nov
|
Dec
|
2012 |
Jan
|
Feb
|
Mar
|
Apr
(33) |
May
(20) |
Jun
|
Jul
(8) |
Aug
(7) |
Sep
(2) |
Oct
|
Nov
|
Dec
|
From: Braden M. <br...@us...> - 2007-05-12 03:29:43
|
Update of /cvsroot/openvrml/openvrml In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv26508 Modified Files: ChangeLog Log Message: Protect the plugin_streambuf_map with a mutex. Index: ChangeLog =================================================================== RCS file: /cvsroot/openvrml/openvrml/ChangeLog,v retrieving revision 1.1494 retrieving revision 1.1495 diff -C2 -d -r1.1494 -r1.1495 *** ChangeLog 5 May 2007 06:09:05 -0000 1.1494 --- ChangeLog 12 May 2007 03:29:41 -0000 1.1495 *************** *** 1,2 **** --- 1,28 ---- + 2007-05-11 Braden McDaniel <br...@en...> + + Protect the plugin_streambuf_map with a mutex. + + * src/openvrml-xembed/main.cpp + (openvrml_xembed::command_istream_reader::operator()() const): + plugin_streambuf_map::find now returns a + shared_ptr<plugin_streambuf>. plugin_streambuf_map::erase now + takes a stream id. + * src/openvrml-xembed/plugin_streambuf.cpp + (openvrml_xembed::plugin_streambuf::init(size_t, const + std::string&, const std::string &)): Modified to use new + plugin_streambuf_map interface. + (openvrml_xembed::plugin_streambuf_map): Removed. + (openvrml_xembed::plugin_streambuf_map::find(size_t) const): Added + function. + (openvrml_xembed::plugin_streambuf_map::insert(size_t, const + boost::shared_ptr<plugin_streambuf> &)): Added function. + (openvrml_xembed::plugin_streambuf_map::erase(size_t)): Added + function. + * src/openvrml-xembed/plugin_streambuf.h + (openvrml_xembed::uninitialized_plugin_streambuf_map): Inherit + boost::noncopyable. + (openvrml_xembed::plugin_streambuf_map): Rather than just use a + std::map directly, protect it with a mutex. + 2007-05-05 Braden McDaniel <br...@en...> |
From: Braden M. <br...@us...> - 2007-05-12 03:29:19
|
Update of /cvsroot/openvrml/openvrml/src/openvrml-xembed In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv26475/src/openvrml-xembed Modified Files: Tag: OpenVRML-0_16-BRANCH main.cpp plugin_streambuf.cpp plugin_streambuf.h Log Message: Protect the plugin_streambuf_map with a mutex. Index: plugin_streambuf.cpp =================================================================== RCS file: /cvsroot/openvrml/openvrml/src/openvrml-xembed/plugin_streambuf.cpp,v retrieving revision 1.1.2.3 retrieving revision 1.1.2.4 diff -C2 -d -r1.1.2.3 -r1.1.2.4 *** plugin_streambuf.cpp 15 Mar 2007 22:41:42 -0000 1.1.2.3 --- plugin_streambuf.cpp 12 May 2007 03:29:18 -0000 1.1.2.4 *************** *** 72,77 **** this->initialized_ = true; const boost::shared_ptr<plugin_streambuf> this_ = shared_from_this(); ! succeeded = plugin_streambuf_map.insert(make_pair(stream_id, this_)) ! .second; g_assert(succeeded); this->streambuf_initialized_or_failed_.notify_all(); --- 72,76 ---- this->initialized_ = true; const boost::shared_ptr<plugin_streambuf> this_ = shared_from_this(); ! succeeded = plugin_streambuf_map_.insert(stream_id, this_); g_assert(succeeded); this->streambuf_initialized_or_failed_.notify_all(); *************** *** 139,146 **** } - - openvrml_xembed::uninitialized_plugin_streambuf_map - openvrml_xembed::uninitialized_plugin_streambuf_map_; - const boost::shared_ptr<openvrml_xembed::plugin_streambuf> openvrml_xembed::uninitialized_plugin_streambuf_map:: --- 138,141 ---- *************** *** 203,206 **** } ! openvrml_xembed::plugin_streambuf_map_t openvrml_xembed::plugin_streambuf_map; --- 198,235 ---- } + openvrml_xembed::uninitialized_plugin_streambuf_map + openvrml_xembed::uninitialized_plugin_streambuf_map_; ! ! const boost::shared_ptr<openvrml_xembed::plugin_streambuf> ! openvrml_xembed::plugin_streambuf_map::find(const size_t id) const ! { ! boost::mutex::scoped_lock lock(this->mutex_); ! map_t::const_iterator pos = this->map_.find(id); ! return pos == this->map_.end() ! ? boost::shared_ptr<plugin_streambuf>() ! : pos->second; ! } ! ! bool ! openvrml_xembed::plugin_streambuf_map:: ! insert(const size_t id, ! const boost::shared_ptr<plugin_streambuf> & streambuf) ! { ! boost::mutex::scoped_lock lock(this->mutex_); ! return this->map_.insert(make_pair(id, streambuf)).second; ! } ! ! /** ! * @brief Erase the entry corresponding to @p id. ! * ! * @return @c true if an entry was removed; @c false otherwise. ! */ ! bool openvrml_xembed::plugin_streambuf_map::erase(const size_t id) ! { ! boost::mutex::scoped_lock lock(this->mutex_); ! return this->map_.erase(id) > 0; ! } ! ! openvrml_xembed::plugin_streambuf_map ! openvrml_xembed::plugin_streambuf_map_; Index: main.cpp =================================================================== RCS file: /cvsroot/openvrml/openvrml/src/openvrml-xembed/main.cpp,v retrieving revision 1.1.2.5 retrieving revision 1.1.2.6 diff -C2 -d -r1.1.2.5 -r1.1.2.6 *** main.cpp 15 Mar 2007 22:41:42 -0000 1.1.2.5 --- main.cpp 12 May 2007 03:29:18 -0000 1.1.2.6 *************** *** 71,74 **** --- 71,75 ---- string command_line; while (getline(*this->in_, command_line)) { + using boost::shared_ptr; using std::istringstream; *************** *** 77,82 **** command_line_stream >> command; if (command == "get-url-result") { - using boost::shared_ptr; - std::string url; int result; --- 78,81 ---- *************** *** 88,93 **** streambuf->set_get_url_result(result); } else if (command == "new-stream") { - using boost::shared_ptr; - size_t stream_id; std::string type, url; --- 87,90 ---- *************** *** 115,137 **** size_t stream_id; command_line_stream >> stream_id; ! plugin_streambuf_map_t::iterator pos = ! plugin_streambuf_map.find(stream_id); ! if (pos == plugin_streambuf_map.end()) { ! g_warning("Attempt to destroy a nonexistent stream."); continue; } ! pos->second->buf_.set_eof(); ! plugin_streambuf_map.erase(pos); } else if (command == "write") { size_t stream_id, length; command_line_stream >> stream_id >> length; ! plugin_streambuf_map_t::const_iterator pos = ! plugin_streambuf_map.find(stream_id); ! if (pos == plugin_streambuf_map.end()) { g_warning("Attempt to write to a nonexistent stream."); continue; } for (size_t i = 0; i < length; ++i) { ! pos->second->buf_.put(this->in_->get()); } } else if (command == "load-url") { --- 112,135 ---- size_t stream_id; command_line_stream >> stream_id; ! const shared_ptr<plugin_streambuf> streambuf = ! plugin_streambuf_map_.find(stream_id); ! if (!streambuf) { ! g_warning("Attempt to destroy a nonexistent stream " ! "(with stream ID %lu).", stream_id); continue; } ! streambuf->buf_.set_eof(); ! plugin_streambuf_map_.erase(stream_id); } else if (command == "write") { size_t stream_id, length; command_line_stream >> stream_id >> length; ! const shared_ptr<plugin_streambuf> streambuf = ! plugin_streambuf_map_.find(stream_id); ! if (!streambuf) { g_warning("Attempt to write to a nonexistent stream."); continue; } for (size_t i = 0; i < length; ++i) { ! streambuf->buf_.put(this->in_->get()); } } else if (command == "load-url") { Index: plugin_streambuf.h =================================================================== RCS file: /cvsroot/openvrml/openvrml/src/openvrml-xembed/plugin_streambuf.h,v retrieving revision 1.1.2.2 retrieving revision 1.1.2.3 diff -C2 -d -r1.1.2.2 -r1.1.2.3 *** plugin_streambuf.h 12 Feb 2007 02:19:13 -0000 1.1.2.2 --- plugin_streambuf.h 12 May 2007 03:29:18 -0000 1.1.2.3 *************** *** 25,28 **** --- 25,29 ---- # include <set> # include <streambuf> + # include <boost/noncopyable.hpp> # include <boost/shared_ptr.hpp> # include <boost/enable_shared_from_this.hpp> *************** *** 66,70 **** }; ! extern class uninitialized_plugin_streambuf_map { mutable boost::mutex mutex_; typedef std::multimap<std::string, boost::shared_ptr<plugin_streambuf> > --- 67,71 ---- }; ! extern class uninitialized_plugin_streambuf_map : boost::noncopyable { mutable boost::mutex mutex_; typedef std::multimap<std::string, boost::shared_ptr<plugin_streambuf> > *************** *** 83,91 **** } uninitialized_plugin_streambuf_map_; ! typedef std::map<size_t, boost::shared_ptr<plugin_streambuf> > ! plugin_streambuf_map_t; ! ! extern plugin_streambuf_map_t plugin_streambuf_map; } --- 84,98 ---- } uninitialized_plugin_streambuf_map_; + extern class plugin_streambuf_map : boost::noncopyable { + mutable boost::mutex mutex_; + typedef std::map<size_t, boost::shared_ptr<plugin_streambuf> > map_t; + map_t map_; ! public: ! const boost::shared_ptr<plugin_streambuf> find(size_t id) const; ! bool insert(size_t id, ! const boost::shared_ptr<plugin_streambuf> & streambuf); ! bool erase(size_t id); ! } plugin_streambuf_map_; } |
From: Braden M. <br...@us...> - 2007-05-12 03:29:19
|
Update of /cvsroot/openvrml/openvrml In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv26475 Modified Files: Tag: OpenVRML-0_16-BRANCH ChangeLog Log Message: Protect the plugin_streambuf_map with a mutex. Index: ChangeLog =================================================================== RCS file: /cvsroot/openvrml/openvrml/ChangeLog,v retrieving revision 1.1310.2.169 retrieving revision 1.1310.2.170 diff -C2 -d -r1.1310.2.169 -r1.1310.2.170 *** ChangeLog 5 May 2007 06:07:15 -0000 1.1310.2.169 --- ChangeLog 12 May 2007 03:29:18 -0000 1.1310.2.170 *************** *** 1,2 **** --- 1,28 ---- + 2007-05-11 Braden McDaniel <br...@en...> + + Protect the plugin_streambuf_map with a mutex. + + * src/openvrml-xembed/main.cpp + (openvrml_xembed::command_istream_reader::operator()() const): + plugin_streambuf_map::find now returns a + shared_ptr<plugin_streambuf>. plugin_streambuf_map::erase now + takes a stream id. + * src/openvrml-xembed/plugin_streambuf.cpp + (openvrml_xembed::plugin_streambuf::init(size_t, const + std::string&, const std::string &)): Modified to use new + plugin_streambuf_map interface. + (openvrml_xembed::plugin_streambuf_map): Removed. + (openvrml_xembed::plugin_streambuf_map::find(size_t) const): Added + function. + (openvrml_xembed::plugin_streambuf_map::insert(size_t, const + boost::shared_ptr<plugin_streambuf> &)): Added function. + (openvrml_xembed::plugin_streambuf_map::erase(size_t)): Added + function. + * src/openvrml-xembed/plugin_streambuf.h + (openvrml_xembed::uninitialized_plugin_streambuf_map): Inherit + boost::noncopyable. + (openvrml_xembed::plugin_streambuf_map): Rather than just use a + std::map directly, protect it with a mutex. + 2007-05-05 Braden McDaniel <br...@en...> |
From: Braden M. <br...@us...> - 2007-05-05 06:09:21
|
Update of /cvsroot/openvrml/openvrml In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv5251 Modified Files: Tag: OpenVRML-0_16-BRANCH ChangeLog Log Message: Pass GNOME_PARAM_APP_DATADIR to gnome_program_init. Index: ChangeLog =================================================================== RCS file: /cvsroot/openvrml/openvrml/ChangeLog,v retrieving revision 1.1310.2.168 retrieving revision 1.1310.2.169 diff -C2 -d -r1.1310.2.168 -r1.1310.2.169 *** ChangeLog 30 Apr 2007 07:37:07 -0000 1.1310.2.168 --- ChangeLog 5 May 2007 06:07:15 -0000 1.1310.2.169 *************** *** 1,2 **** --- 1,8 ---- + 2007-05-05 Braden McDaniel <br...@en...> + + * src/openvrml-player/player.cpp + (main(int, char *[])): Pass GNOME_PARAM_APP_DATADIR to + gnome_program_init. + 2007-04-30 Braden McDaniel <br...@en...> |
From: Braden M. <br...@us...> - 2007-05-05 06:09:21
|
Update of /cvsroot/openvrml/openvrml/src/openvrml-player In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv5251/src/openvrml-player Modified Files: Tag: OpenVRML-0_16-BRANCH player.cpp Log Message: Pass GNOME_PARAM_APP_DATADIR to gnome_program_init. Index: player.cpp =================================================================== RCS file: /cvsroot/openvrml/openvrml/src/openvrml-player/player.cpp,v retrieving revision 1.1.2.21 retrieving revision 1.1.2.22 diff -C2 -d -r1.1.2.21 -r1.1.2.22 *** player.cpp 15 Apr 2007 16:36:32 -0000 1.1.2.21 --- player.cpp 5 May 2007 06:07:16 -0000 1.1.2.22 *************** *** 196,206 **** GnomeProgram * const program = ! gnome_program_init(app_id, ! PACKAGE_VERSION, ! LIBGNOMEUI_MODULE, ! argc, ! argv, ! GNOME_PARAM_GOPTION_CONTEXT, option_context, ! GNOME_PARAM_NONE); glade_init(); --- 196,208 ---- GnomeProgram * const program = ! gnome_program_init( ! app_id, ! PACKAGE_VERSION, ! LIBGNOMEUI_MODULE, ! argc, ! argv, ! GNOME_PARAM_GOPTION_CONTEXT, option_context, ! GNOME_PARAM_APP_DATADIR, OPENVRML_PLAYER_PKGDATADIR_, ! GNOME_PARAM_NONE); glade_init(); |
From: Braden M. <br...@us...> - 2007-05-05 06:09:21
|
Update of /cvsroot/openvrml/openvrml In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv5932 Modified Files: ChangeLog Log Message: Pass GNOME_PARAM_APP_DATADIR to gnome_program_init. Index: ChangeLog =================================================================== RCS file: /cvsroot/openvrml/openvrml/ChangeLog,v retrieving revision 1.1493 retrieving revision 1.1494 diff -C2 -d -r1.1493 -r1.1494 *** ChangeLog 30 Apr 2007 07:37:25 -0000 1.1493 --- ChangeLog 5 May 2007 06:09:05 -0000 1.1494 *************** *** 1,2 **** --- 1,8 ---- + 2007-05-05 Braden McDaniel <br...@en...> + + * src/openvrml-player/player.cpp + (main(int, char *[])): Pass GNOME_PARAM_APP_DATADIR to + gnome_program_init. + 2007-04-30 Braden McDaniel <br...@en...> |
From: Braden M. <br...@us...> - 2007-05-05 06:09:21
|
Update of /cvsroot/openvrml/openvrml/src/openvrml-player In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv5932/src/openvrml-player Modified Files: player.cpp Log Message: Pass GNOME_PARAM_APP_DATADIR to gnome_program_init. Index: player.cpp =================================================================== RCS file: /cvsroot/openvrml/openvrml/src/openvrml-player/player.cpp,v retrieving revision 1.22 retrieving revision 1.23 diff -C2 -d -r1.22 -r1.23 *** player.cpp 15 Apr 2007 16:36:49 -0000 1.22 --- player.cpp 5 May 2007 06:09:06 -0000 1.23 *************** *** 196,206 **** GnomeProgram * const program = ! gnome_program_init(app_id, ! PACKAGE_VERSION, ! LIBGNOMEUI_MODULE, ! argc, ! argv, ! GNOME_PARAM_GOPTION_CONTEXT, option_context, ! GNOME_PARAM_NONE); glade_init(); --- 196,208 ---- GnomeProgram * const program = ! gnome_program_init( ! app_id, ! PACKAGE_VERSION, ! LIBGNOMEUI_MODULE, ! argc, ! argv, ! GNOME_PARAM_GOPTION_CONTEXT, option_context, ! GNOME_PARAM_APP_DATADIR, OPENVRML_PLAYER_PKGDATADIR_, ! GNOME_PARAM_NONE); glade_init(); |
From: Braden M. <br...@us...> - 2007-04-30 07:37:30
|
Update of /cvsroot/openvrml/openvrml/src/libopenvrml-gl In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv30264/src/libopenvrml-gl Modified Files: Makefile.am Log Message: Updates for 0.16.4 release. Index: Makefile.am =================================================================== RCS file: /cvsroot/openvrml/openvrml/src/libopenvrml-gl/Makefile.am,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** Makefile.am 30 Dec 2006 23:37:44 -0000 1.8 --- Makefile.am 30 Apr 2007 07:37:25 -0000 1.9 *************** *** 1,3 **** ! LIBRARY_VERSION = 6:4:0 # | | | # +------+ | +---+ --- 1,3 ---- ! LIBRARY_VERSION = 6:5:0 # | | | # +------+ | +---+ |
From: Braden M. <br...@us...> - 2007-04-30 07:37:27
|
Update of /cvsroot/openvrml/openvrml In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv30264 Modified Files: ChangeLog NEWS README configure.ac Log Message: Updates for 0.16.4 release. Index: README =================================================================== RCS file: /cvsroot/openvrml/openvrml/README,v retrieving revision 1.79 retrieving revision 1.80 diff -C2 -d -r1.79 -r1.80 *** README 29 Apr 2007 19:05:12 -0000 1.79 --- README 30 Apr 2007 07:37:25 -0000 1.80 *************** *** 1,5 **** ! OpenVRML library version 0.16.3 Copyright 1998, 1999, 2000 Chris Morley <cm...@ve...> ! Copyright 2000, 2001, 2002, 2003, 2004, 2005, 2006 Braden McDaniel <br...@en...> Portions Copyright SGI and others --- 1,5 ---- ! OpenVRML library version 0.16.4 Copyright 1998, 1999, 2000 Chris Morley <cm...@ve...> ! Copyright 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007 Braden McDaniel <br...@en...> Portions Copyright SGI and others Index: NEWS =================================================================== RCS file: /cvsroot/openvrml/openvrml/NEWS,v retrieving revision 1.42 retrieving revision 1.43 diff -C2 -d -r1.42 -r1.43 *** NEWS 30 Dec 2006 23:37:43 -0000 1.42 --- NEWS 30 Apr 2007 07:37:25 -0000 1.43 *************** *** 1,2 **** --- 1,17 ---- + Changes new in version 0.16.4, 30 April, 2007 + ======================================================================== + + - openvrml-gtkplug has been renamed to openvrml-xembed. + + - Added openvrml-player, a stand-alone container for openvrml-xembed. + openvrml-player uses libcurl for resource fetching. + + - Fixed coordinate generation for Extrusion node rendering. + + - Fixed progressive rendering of JPEG images. + + - Various other minor bug fixes. + + Changes new in version 0.16.3, 30 December, 2006 ======================================================================== Index: configure.ac =================================================================== RCS file: /cvsroot/openvrml/openvrml/configure.ac,v retrieving revision 1.112 retrieving revision 1.113 diff -C2 -d -r1.112 -r1.113 *** configure.ac 28 Apr 2007 19:57:48 -0000 1.112 --- configure.ac 30 Apr 2007 07:37:25 -0000 1.113 *************** *** 1,3 **** ! AC_INIT([OpenVRML], [0.16.3], [ope...@li...]) AC_PREREQ([2.53]) AC_COPYRIGHT([Portions copyright 2000, 2001, 2002, 2003, 2004, 2005, 2006 Braden McDaniel]) --- 1,3 ---- ! AC_INIT([OpenVRML], [0.16.4], [ope...@li...]) AC_PREREQ([2.53]) AC_COPYRIGHT([Portions copyright 2000, 2001, 2002, 2003, 2004, 2005, 2006 Braden McDaniel]) Index: ChangeLog =================================================================== RCS file: /cvsroot/openvrml/openvrml/ChangeLog,v retrieving revision 1.1492 retrieving revision 1.1493 diff -C2 -d -r1.1492 -r1.1493 *** ChangeLog 29 Apr 2007 19:05:12 -0000 1.1492 --- ChangeLog 30 Apr 2007 07:37:25 -0000 1.1493 *************** *** 1,2 **** --- 1,22 ---- + 2007-04-30 Braden McDaniel <br...@en...> + + Updates for 0.16.4 release. + + * NEWS: Updated for 0.16.4 release. + * README: Updated for 0.16.4 release. + * configure.ac: Updated for 0.16.4 release. + * doc/Doxyfile: Updated for 0.16.4 release. + * ide-projects/Windows/VisualC8_0/OpenVRML/openvrml/openvrml.rc: + Updated for 0.16.4 release. + * ide-projects/Windows/VisualC8_0/OpenVRML/openvrml/openvrml.vcproj: + Updated for 0.16.4 release. + * ide-projects/Windows/VisualC8_0/OpenVRML/openvrml-gl/openvrml-gl.rc: + Updated for 0.16.4 release. + * mozilla-plugin/configure.ac: Updated for 0.16.4 release. + * src/libopenvrml/Makefile.am (LIBRARY_VERSION): Updated libtool + library version number. + * src/libopenvrml-gl/Makefile.am (LIBRARY_VERSION): Updated + libtool library version number. + 2007-04-29 Braden McDaniel <br...@en...> |
From: Braden M. <br...@us...> - 2007-04-30 07:37:27
|
Update of /cvsroot/openvrml/openvrml/doc In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv30264/doc Modified Files: Doxyfile Log Message: Updates for 0.16.4 release. Index: Doxyfile =================================================================== RCS file: /cvsroot/openvrml/openvrml/doc/Doxyfile,v retrieving revision 1.27 retrieving revision 1.28 diff -C2 -d -r1.27 -r1.28 *** Doxyfile 6 Mar 2007 07:28:42 -0000 1.27 --- Doxyfile 30 Apr 2007 07:37:25 -0000 1.28 *************** *** 5,9 **** #--------------------------------------------------------------------------- PROJECT_NAME = OpenVRML ! PROJECT_NUMBER = 0.16.3 OUTPUT_DIRECTORY = CREATE_SUBDIRS = NO --- 5,9 ---- #--------------------------------------------------------------------------- PROJECT_NAME = OpenVRML ! PROJECT_NUMBER = 0.16.4 OUTPUT_DIRECTORY = CREATE_SUBDIRS = NO |
From: Braden M. <br...@us...> - 2007-04-30 07:37:27
|
Update of /cvsroot/openvrml/openvrml/ide-projects/Windows/VisualC8_0/OpenVRML/openvrml In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv30264/ide-projects/Windows/VisualC8_0/OpenVRML/openvrml Modified Files: openvrml.rc openvrml.vcproj Log Message: Updates for 0.16.4 release. Index: openvrml.vcproj =================================================================== RCS file: /cvsroot/openvrml/openvrml/ide-projects/Windows/VisualC8_0/OpenVRML/openvrml/openvrml.vcproj,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** openvrml.vcproj 29 Apr 2007 04:06:48 -0000 1.11 --- openvrml.vcproj 30 Apr 2007 07:37:25 -0000 1.12 *************** *** 43,47 **** Optimization="0" AdditionalIncludeDirectories=".;..\..\..\..\..\src\libopenvrml;..\..\..\..\..\lib\antlr" ! PreprocessorDefinitions="WIN32;NOMINMAX;BOOST_SPIRIT_THREADSAFE;PACKAGE_VERSION=\"0.16.3\";BOOST_MPL_CFG_NO_PREPROCESSED_HEADERS;BOOST_MPL_LIMIT_VECTOR_SIZE=30;OPENVRML_BUILD_DLL;OPENVRML_ENABLE_RENDER_TEXT_NODE;OPENVRML_FT_CONST="const"" MinimalRebuild="false" BasicRuntimeChecks="0" --- 43,47 ---- Optimization="0" AdditionalIncludeDirectories=".;..\..\..\..\..\src\libopenvrml;..\..\..\..\..\lib\antlr" ! PreprocessorDefinitions="WIN32;NOMINMAX;BOOST_SPIRIT_THREADSAFE;PACKAGE_VERSION=\"0.16.4\";BOOST_MPL_CFG_NO_PREPROCESSED_HEADERS;BOOST_MPL_LIMIT_VECTOR_SIZE=30;OPENVRML_BUILD_DLL;OPENVRML_ENABLE_RENDER_TEXT_NODE;OPENVRML_FT_CONST="const"" MinimalRebuild="false" BasicRuntimeChecks="0" *************** *** 128,132 **** WholeProgramOptimization="true" AdditionalIncludeDirectories=".;..\..\..\..\..\src\libopenvrml;..\..\..\..\..\lib\antlr" ! PreprocessorDefinitions="WIN32;NOMINMAX;BOOST_SPIRIT_THREADSAFE;NDEBUG;PACKAGE_VERSION=\"0.16.3\";BOOST_MPL_CFG_NO_PREPROCESSED_HEADERS;BOOST_MPL_LIMIT_VECTOR_SIZE=30;OPENVRML_BUILD_DLL;OPENVRML_ENABLE_RENDER_TEXT_NODE;OPENVRML_FT_CONST="const"" StringPooling="true" RuntimeLibrary="2" --- 128,132 ---- WholeProgramOptimization="true" AdditionalIncludeDirectories=".;..\..\..\..\..\src\libopenvrml;..\..\..\..\..\lib\antlr" ! PreprocessorDefinitions="WIN32;NOMINMAX;BOOST_SPIRIT_THREADSAFE;NDEBUG;PACKAGE_VERSION=\"0.16.4\";BOOST_MPL_CFG_NO_PREPROCESSED_HEADERS;BOOST_MPL_LIMIT_VECTOR_SIZE=30;OPENVRML_BUILD_DLL;OPENVRML_ENABLE_RENDER_TEXT_NODE;OPENVRML_FT_CONST="const"" StringPooling="true" RuntimeLibrary="2" Index: openvrml.rc =================================================================== RCS file: /cvsroot/openvrml/openvrml/ide-projects/Windows/VisualC8_0/OpenVRML/openvrml/openvrml.rc,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** openvrml.rc 30 Dec 2006 23:37:43 -0000 1.5 --- openvrml.rc 30 Apr 2007 07:37:25 -0000 1.6 *************** *** 54,59 **** VS_VERSION_INFO VERSIONINFO ! FILEVERSION 7,2,1,0 ! PRODUCTVERSION 0,16,3,0 FILEFLAGSMASK 0x17L #ifdef _DEBUG --- 54,59 ---- VS_VERSION_INFO VERSIONINFO ! FILEVERSION 7,3,1,0 ! PRODUCTVERSION 0,16,4,0 FILEFLAGSMASK 0x17L #ifdef _DEBUG *************** *** 71,80 **** BEGIN VALUE "FileDescription", "OpenVRML Library" ! VALUE "FileVersion", "7, 2, 1, 0" VALUE "InternalName", "openvrml" ! VALUE "LegalCopyright", "Copyright (C) 2006" VALUE "OriginalFilename", "openvrml.dll" VALUE "ProductName", "OpenVRML Library" ! VALUE "ProductVersion", "0.16.3" END END --- 71,80 ---- BEGIN VALUE "FileDescription", "OpenVRML Library" ! VALUE "FileVersion", "7, 3, 1, 0" VALUE "InternalName", "openvrml" ! VALUE "LegalCopyright", "Copyright (C) 2007" VALUE "OriginalFilename", "openvrml.dll" VALUE "ProductName", "OpenVRML Library" ! VALUE "ProductVersion", "0.16.4" END END |
From: Braden M. <br...@us...> - 2007-04-30 07:37:27
|
Update of /cvsroot/openvrml/openvrml/mozilla-plugin In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv30264/mozilla-plugin Modified Files: configure.ac Log Message: Updates for 0.16.4 release. Index: configure.ac =================================================================== RCS file: /cvsroot/openvrml/openvrml/mozilla-plugin/configure.ac,v retrieving revision 1.21 retrieving revision 1.22 diff -C2 -d -r1.21 -r1.22 *** configure.ac 5 Mar 2007 08:21:20 -0000 1.21 --- configure.ac 30 Apr 2007 07:37:25 -0000 1.22 *************** *** 1,4 **** AC_PREREQ([2.53]) ! AC_INIT([OpenVRML Mozilla Plugin], [0.16.3], [ope...@li...]) AC_COPYRIGHT([Portions copyright 2004, 2005, 2006, 2007 Braden McDaniel]) --- 1,4 ---- AC_PREREQ([2.53]) ! AC_INIT([OpenVRML Mozilla Plugin], [0.16.4], [ope...@li...]) AC_COPYRIGHT([Portions copyright 2004, 2005, 2006, 2007 Braden McDaniel]) |
From: Braden M. <br...@us...> - 2007-04-30 07:37:27
|
Update of /cvsroot/openvrml/openvrml/ide-projects/Windows/VisualC8_0/OpenVRML/openvrml-gl In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv30264/ide-projects/Windows/VisualC8_0/OpenVRML/openvrml-gl Modified Files: openvrml-gl.rc Log Message: Updates for 0.16.4 release. Index: openvrml-gl.rc =================================================================== RCS file: /cvsroot/openvrml/openvrml/ide-projects/Windows/VisualC8_0/OpenVRML/openvrml-gl/openvrml-gl.rc,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** openvrml-gl.rc 30 Dec 2006 23:37:44 -0000 1.5 --- openvrml-gl.rc 30 Apr 2007 07:37:25 -0000 1.6 *************** *** 54,59 **** VS_VERSION_INFO VERSIONINFO ! FILEVERSION 6,4,0,0 ! PRODUCTVERSION 0,16,3,0 FILEFLAGSMASK 0x17L #ifdef _DEBUG --- 54,59 ---- VS_VERSION_INFO VERSIONINFO ! FILEVERSION 6,5,0,0 ! PRODUCTVERSION 0,16,4,0 FILEFLAGSMASK 0x17L #ifdef _DEBUG *************** *** 71,80 **** BEGIN VALUE "FileDescription", "OpenVRML OpenGL Renderer Library" ! VALUE "FileVersion", "6, 4, 0, 0" VALUE "InternalName", "openvrml-gl" ! VALUE "LegalCopyright", "Copyright (C) 2006" VALUE "OriginalFilename", "openvrml-gl.dll" VALUE "ProductName", "OpenVRML Library" ! VALUE "ProductVersion", "0.16.3" END END --- 71,80 ---- BEGIN VALUE "FileDescription", "OpenVRML OpenGL Renderer Library" ! VALUE "FileVersion", "6, 5, 0, 0" VALUE "InternalName", "openvrml-gl" ! VALUE "LegalCopyright", "Copyright (C) 2007" VALUE "OriginalFilename", "openvrml-gl.dll" VALUE "ProductName", "OpenVRML Library" ! VALUE "ProductVersion", "0.16.4" END END |
From: Braden M. <br...@us...> - 2007-04-30 07:37:27
|
Update of /cvsroot/openvrml/openvrml/src/libopenvrml In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv30264/src/libopenvrml Modified Files: Makefile.am Log Message: Updates for 0.16.4 release. Index: Makefile.am =================================================================== RCS file: /cvsroot/openvrml/openvrml/src/libopenvrml/Makefile.am,v retrieving revision 1.40 retrieving revision 1.41 diff -C2 -d -r1.40 -r1.41 *** Makefile.am 30 Dec 2006 23:37:44 -0000 1.40 --- Makefile.am 30 Apr 2007 07:37:25 -0000 1.41 *************** *** 63,67 **** $(X3DVRMLPARSER_BUILT_SOURCEFILES) ! LIBRARY_VERSION = 7:2:1 # | | | # +------+ | +---+ --- 63,67 ---- $(X3DVRMLPARSER_BUILT_SOURCEFILES) ! LIBRARY_VERSION = 7:3:1 # | | | # +------+ | +---+ |
From: Braden M. <br...@us...> - 2007-04-30 07:37:10
|
Update of /cvsroot/openvrml/openvrml/src/libopenvrml-gl In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv30063/src/libopenvrml-gl Modified Files: Tag: OpenVRML-0_16-BRANCH Makefile.am Log Message: Updates for 0.16.4 release. Index: Makefile.am =================================================================== RCS file: /cvsroot/openvrml/openvrml/src/libopenvrml-gl/Makefile.am,v retrieving revision 1.6.2.2 retrieving revision 1.6.2.3 diff -C2 -d -r1.6.2.2 -r1.6.2.3 *** Makefile.am 30 Dec 2006 23:37:07 -0000 1.6.2.2 --- Makefile.am 30 Apr 2007 07:37:10 -0000 1.6.2.3 *************** *** 1,3 **** ! LIBRARY_VERSION = 6:4:0 # | | | # +------+ | +---+ --- 1,3 ---- ! LIBRARY_VERSION = 6:5:0 # | | | # +------+ | +---+ |
From: Braden M. <br...@us...> - 2007-04-30 07:37:10
|
Update of /cvsroot/openvrml/openvrml/src/libopenvrml In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv30063/src/libopenvrml Modified Files: Tag: OpenVRML-0_16-BRANCH Makefile.am Log Message: Updates for 0.16.4 release. Index: Makefile.am =================================================================== RCS file: /cvsroot/openvrml/openvrml/src/libopenvrml/Makefile.am,v retrieving revision 1.37.2.3 retrieving revision 1.37.2.4 diff -C2 -d -r1.37.2.3 -r1.37.2.4 *** Makefile.am 30 Dec 2006 23:37:07 -0000 1.37.2.3 --- Makefile.am 30 Apr 2007 07:37:09 -0000 1.37.2.4 *************** *** 63,67 **** $(X3DVRMLPARSER_BUILT_SOURCEFILES) ! LIBRARY_VERSION = 7:2:1 # | | | # +------+ | +---+ --- 63,67 ---- $(X3DVRMLPARSER_BUILT_SOURCEFILES) ! LIBRARY_VERSION = 7:3:1 # | | | # +------+ | +---+ |
From: Braden M. <br...@us...> - 2007-04-30 07:37:09
|
Update of /cvsroot/openvrml/openvrml/ide-projects/Windows/VisualC8_0/OpenVRML/openvrml-gl In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv30063/ide-projects/Windows/VisualC8_0/OpenVRML/openvrml-gl Modified Files: Tag: OpenVRML-0_16-BRANCH openvrml-gl.rc Log Message: Updates for 0.16.4 release. Index: openvrml-gl.rc =================================================================== RCS file: /cvsroot/openvrml/openvrml/ide-projects/Windows/VisualC8_0/OpenVRML/openvrml-gl/openvrml-gl.rc,v retrieving revision 1.1.2.4 retrieving revision 1.1.2.5 diff -C2 -d -r1.1.2.4 -r1.1.2.5 *** openvrml-gl.rc 30 Dec 2006 23:37:07 -0000 1.1.2.4 --- openvrml-gl.rc 30 Apr 2007 07:37:09 -0000 1.1.2.5 *************** *** 54,59 **** VS_VERSION_INFO VERSIONINFO ! FILEVERSION 6,4,0,0 ! PRODUCTVERSION 0,16,3,0 FILEFLAGSMASK 0x17L #ifdef _DEBUG --- 54,59 ---- VS_VERSION_INFO VERSIONINFO ! FILEVERSION 6,5,0,0 ! PRODUCTVERSION 0,16,4,0 FILEFLAGSMASK 0x17L #ifdef _DEBUG *************** *** 71,80 **** BEGIN VALUE "FileDescription", "OpenVRML OpenGL Renderer Library" ! VALUE "FileVersion", "6, 4, 0, 0" VALUE "InternalName", "openvrml-gl" ! VALUE "LegalCopyright", "Copyright (C) 2006" VALUE "OriginalFilename", "openvrml-gl.dll" VALUE "ProductName", "OpenVRML Library" ! VALUE "ProductVersion", "0.16.3" END END --- 71,80 ---- BEGIN VALUE "FileDescription", "OpenVRML OpenGL Renderer Library" ! VALUE "FileVersion", "6, 5, 0, 0" VALUE "InternalName", "openvrml-gl" ! VALUE "LegalCopyright", "Copyright (C) 2007" VALUE "OriginalFilename", "openvrml-gl.dll" VALUE "ProductName", "OpenVRML Library" ! VALUE "ProductVersion", "0.16.4" END END |
From: Braden M. <br...@us...> - 2007-04-30 07:37:09
|
Update of /cvsroot/openvrml/openvrml/mozilla-plugin In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv30063/mozilla-plugin Modified Files: Tag: OpenVRML-0_16-BRANCH configure.ac Log Message: Updates for 0.16.4 release. Index: configure.ac =================================================================== RCS file: /cvsroot/openvrml/openvrml/mozilla-plugin/configure.ac,v retrieving revision 1.14.2.7 retrieving revision 1.14.2.8 diff -C2 -d -r1.14.2.7 -r1.14.2.8 *** configure.ac 5 Mar 2007 08:21:07 -0000 1.14.2.7 --- configure.ac 30 Apr 2007 07:37:09 -0000 1.14.2.8 *************** *** 1,4 **** AC_PREREQ([2.53]) ! AC_INIT([OpenVRML Mozilla Plugin], [0.16.3], [ope...@li...]) AC_COPYRIGHT([Portions copyright 2004, 2005, 2006, 2007 Braden McDaniel]) --- 1,4 ---- AC_PREREQ([2.53]) ! AC_INIT([OpenVRML Mozilla Plugin], [0.16.4], [ope...@li...]) AC_COPYRIGHT([Portions copyright 2004, 2005, 2006, 2007 Braden McDaniel]) |
From: Braden M. <br...@us...> - 2007-04-30 07:37:09
|
Update of /cvsroot/openvrml/openvrml In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv30063 Modified Files: Tag: OpenVRML-0_16-BRANCH ChangeLog NEWS README configure.ac Log Message: Updates for 0.16.4 release. Index: README =================================================================== RCS file: /cvsroot/openvrml/openvrml/README,v retrieving revision 1.65.2.14 retrieving revision 1.65.2.15 diff -C2 -d -r1.65.2.14 -r1.65.2.15 *** README 29 Apr 2007 19:04:55 -0000 1.65.2.14 --- README 30 Apr 2007 07:37:08 -0000 1.65.2.15 *************** *** 1,5 **** ! OpenVRML library version 0.16.3 Copyright 1998, 1999, 2000 Chris Morley <cm...@ve...> ! Copyright 2000, 2001, 2002, 2003, 2004, 2005, 2006 Braden McDaniel <br...@en...> Portions Copyright SGI and others --- 1,5 ---- ! OpenVRML library version 0.16.4 Copyright 1998, 1999, 2000 Chris Morley <cm...@ve...> ! Copyright 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007 Braden McDaniel <br...@en...> Portions Copyright SGI and others Index: NEWS =================================================================== RCS file: /cvsroot/openvrml/openvrml/NEWS,v retrieving revision 1.38.2.4 retrieving revision 1.38.2.5 diff -C2 -d -r1.38.2.4 -r1.38.2.5 *** NEWS 30 Dec 2006 23:37:06 -0000 1.38.2.4 --- NEWS 30 Apr 2007 07:37:07 -0000 1.38.2.5 *************** *** 1,2 **** --- 1,17 ---- + Changes new in version 0.16.4, 30 April, 2007 + ======================================================================== + + - openvrml-gtkplug has been renamed to openvrml-xembed. + + - Added openvrml-player, a stand-alone container for openvrml-xembed. + openvrml-player uses libcurl for resource fetching. + + - Fixed coordinate generation for Extrusion node rendering. + + - Fixed progressive rendering of JPEG images. + + - Various other minor bug fixes. + + Changes new in version 0.16.3, 30 December, 2006 ======================================================================== Index: configure.ac =================================================================== RCS file: /cvsroot/openvrml/openvrml/configure.ac,v retrieving revision 1.92.2.20 retrieving revision 1.92.2.21 diff -C2 -d -r1.92.2.20 -r1.92.2.21 *** configure.ac 28 Apr 2007 19:57:23 -0000 1.92.2.20 --- configure.ac 30 Apr 2007 07:37:08 -0000 1.92.2.21 *************** *** 1,3 **** ! AC_INIT([OpenVRML], [0.16.3], [ope...@li...]) AC_PREREQ([2.53]) AC_COPYRIGHT([Portions copyright 2000, 2001, 2002, 2003, 2004, 2005, 2006 Braden McDaniel]) --- 1,3 ---- ! AC_INIT([OpenVRML], [0.16.4], [ope...@li...]) AC_PREREQ([2.53]) AC_COPYRIGHT([Portions copyright 2000, 2001, 2002, 2003, 2004, 2005, 2006 Braden McDaniel]) Index: ChangeLog =================================================================== RCS file: /cvsroot/openvrml/openvrml/ChangeLog,v retrieving revision 1.1310.2.167 retrieving revision 1.1310.2.168 diff -C2 -d -r1.1310.2.167 -r1.1310.2.168 *** ChangeLog 29 Apr 2007 19:04:54 -0000 1.1310.2.167 --- ChangeLog 30 Apr 2007 07:37:07 -0000 1.1310.2.168 *************** *** 1,2 **** --- 1,22 ---- + 2007-04-30 Braden McDaniel <br...@en...> + + Updates for 0.16.4 release. + + * NEWS: Updated for 0.16.4 release. + * README: Updated for 0.16.4 release. + * configure.ac: Updated for 0.16.4 release. + * doc/Doxyfile: Updated for 0.16.4 release. + * ide-projects/Windows/VisualC8_0/OpenVRML/openvrml/openvrml.rc: + Updated for 0.16.4 release. + * ide-projects/Windows/VisualC8_0/OpenVRML/openvrml/openvrml.vcproj: + Updated for 0.16.4 release. + * ide-projects/Windows/VisualC8_0/OpenVRML/openvrml-gl/openvrml-gl.rc: + Updated for 0.16.4 release. + * mozilla-plugin/configure.ac: Updated for 0.16.4 release. + * src/libopenvrml/Makefile.am (LIBRARY_VERSION): Updated libtool + library version number. + * src/libopenvrml-gl/Makefile.am (LIBRARY_VERSION): Updated + libtool library version number. + 2007-04-29 Braden McDaniel <br...@en...> |
From: Braden M. <br...@us...> - 2007-04-30 07:37:09
|
Update of /cvsroot/openvrml/openvrml/doc In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv30063/doc Modified Files: Tag: OpenVRML-0_16-BRANCH Doxyfile Log Message: Updates for 0.16.4 release. Index: Doxyfile =================================================================== RCS file: /cvsroot/openvrml/openvrml/doc/Doxyfile,v retrieving revision 1.23.2.4 retrieving revision 1.23.2.5 diff -C2 -d -r1.23.2.4 -r1.23.2.5 *** Doxyfile 6 Mar 2007 07:28:29 -0000 1.23.2.4 --- Doxyfile 30 Apr 2007 07:37:08 -0000 1.23.2.5 *************** *** 5,9 **** #--------------------------------------------------------------------------- PROJECT_NAME = OpenVRML ! PROJECT_NUMBER = 0.16.3 OUTPUT_DIRECTORY = CREATE_SUBDIRS = NO --- 5,9 ---- #--------------------------------------------------------------------------- PROJECT_NAME = OpenVRML ! PROJECT_NUMBER = 0.16.4 OUTPUT_DIRECTORY = CREATE_SUBDIRS = NO |
From: Braden M. <br...@us...> - 2007-04-30 07:37:09
|
Update of /cvsroot/openvrml/openvrml/ide-projects/Windows/VisualC8_0/OpenVRML/openvrml In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv30063/ide-projects/Windows/VisualC8_0/OpenVRML/openvrml Modified Files: Tag: OpenVRML-0_16-BRANCH openvrml.rc openvrml.vcproj Log Message: Updates for 0.16.4 release. Index: openvrml.vcproj =================================================================== RCS file: /cvsroot/openvrml/openvrml/ide-projects/Windows/VisualC8_0/OpenVRML/openvrml/openvrml.vcproj,v retrieving revision 1.4.2.7 retrieving revision 1.4.2.8 diff -C2 -d -r1.4.2.7 -r1.4.2.8 *** openvrml.vcproj 29 Apr 2007 04:06:00 -0000 1.4.2.7 --- openvrml.vcproj 30 Apr 2007 07:37:08 -0000 1.4.2.8 *************** *** 43,47 **** Optimization="0" AdditionalIncludeDirectories=".;..\..\..\..\..\src\libopenvrml;..\..\..\..\..\lib\antlr" ! PreprocessorDefinitions="WIN32;NOMINMAX;BOOST_SPIRIT_THREADSAFE;PACKAGE_VERSION=\"0.16.3\";BOOST_MPL_CFG_NO_PREPROCESSED_HEADERS;BOOST_MPL_LIMIT_VECTOR_SIZE=30;OPENVRML_BUILD_DLL;OPENVRML_ENABLE_RENDER_TEXT_NODE;OPENVRML_FT_CONST="const"" MinimalRebuild="false" BasicRuntimeChecks="0" --- 43,47 ---- Optimization="0" AdditionalIncludeDirectories=".;..\..\..\..\..\src\libopenvrml;..\..\..\..\..\lib\antlr" ! PreprocessorDefinitions="WIN32;NOMINMAX;BOOST_SPIRIT_THREADSAFE;PACKAGE_VERSION=\"0.16.4\";BOOST_MPL_CFG_NO_PREPROCESSED_HEADERS;BOOST_MPL_LIMIT_VECTOR_SIZE=30;OPENVRML_BUILD_DLL;OPENVRML_ENABLE_RENDER_TEXT_NODE;OPENVRML_FT_CONST="const"" MinimalRebuild="false" BasicRuntimeChecks="0" *************** *** 128,132 **** WholeProgramOptimization="true" AdditionalIncludeDirectories=".;..\..\..\..\..\src\libopenvrml;..\..\..\..\..\lib\antlr" ! PreprocessorDefinitions="WIN32;NOMINMAX;BOOST_SPIRIT_THREADSAFE;NDEBUG;PACKAGE_VERSION=\"0.16.3\";BOOST_MPL_CFG_NO_PREPROCESSED_HEADERS;BOOST_MPL_LIMIT_VECTOR_SIZE=30;OPENVRML_BUILD_DLL;OPENVRML_ENABLE_RENDER_TEXT_NODE;OPENVRML_FT_CONST="const"" StringPooling="true" RuntimeLibrary="2" --- 128,132 ---- WholeProgramOptimization="true" AdditionalIncludeDirectories=".;..\..\..\..\..\src\libopenvrml;..\..\..\..\..\lib\antlr" ! PreprocessorDefinitions="WIN32;NOMINMAX;BOOST_SPIRIT_THREADSAFE;NDEBUG;PACKAGE_VERSION=\"0.16.4\";BOOST_MPL_CFG_NO_PREPROCESSED_HEADERS;BOOST_MPL_LIMIT_VECTOR_SIZE=30;OPENVRML_BUILD_DLL;OPENVRML_ENABLE_RENDER_TEXT_NODE;OPENVRML_FT_CONST="const"" StringPooling="true" RuntimeLibrary="2" Index: openvrml.rc =================================================================== RCS file: /cvsroot/openvrml/openvrml/ide-projects/Windows/VisualC8_0/OpenVRML/openvrml/openvrml.rc,v retrieving revision 1.1.2.4 retrieving revision 1.1.2.5 diff -C2 -d -r1.1.2.4 -r1.1.2.5 *** openvrml.rc 30 Dec 2006 23:37:07 -0000 1.1.2.4 --- openvrml.rc 30 Apr 2007 07:37:08 -0000 1.1.2.5 *************** *** 54,59 **** VS_VERSION_INFO VERSIONINFO ! FILEVERSION 7,2,1,0 ! PRODUCTVERSION 0,16,3,0 FILEFLAGSMASK 0x17L #ifdef _DEBUG --- 54,59 ---- VS_VERSION_INFO VERSIONINFO ! FILEVERSION 7,3,1,0 ! PRODUCTVERSION 0,16,4,0 FILEFLAGSMASK 0x17L #ifdef _DEBUG *************** *** 71,80 **** BEGIN VALUE "FileDescription", "OpenVRML Library" ! VALUE "FileVersion", "7, 2, 1, 0" VALUE "InternalName", "openvrml" ! VALUE "LegalCopyright", "Copyright (C) 2006" VALUE "OriginalFilename", "openvrml.dll" VALUE "ProductName", "OpenVRML Library" ! VALUE "ProductVersion", "0.16.3" END END --- 71,80 ---- BEGIN VALUE "FileDescription", "OpenVRML Library" ! VALUE "FileVersion", "7, 3, 1, 0" VALUE "InternalName", "openvrml" ! VALUE "LegalCopyright", "Copyright (C) 2007" VALUE "OriginalFilename", "openvrml.dll" VALUE "ProductName", "OpenVRML Library" ! VALUE "ProductVersion", "0.16.4" END END |
From: Braden M. <br...@us...> - 2007-04-29 19:05:14
|
Update of /cvsroot/openvrml/openvrml In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv1733 Modified Files: ChangeLog README Log Message: Added mention of the XEmbed control and OpenVRML Player to "License terms". Index: README =================================================================== RCS file: /cvsroot/openvrml/openvrml/README,v retrieving revision 1.78 retrieving revision 1.79 diff -C2 -d -r1.78 -r1.79 *** README 29 Apr 2007 07:25:36 -0000 1.78 --- README 29 Apr 2007 19:05:12 -0000 1.79 *************** *** 71,77 **** OpenGL(TM) is a trademark of Silicon Graphics, Inc. ! The Mozilla plug-in as well as the included example programs are ! available under the terms of the GNU General Public License (GPL), ! version 2. The full text of the GPL can be found in the file "COPYING". --- 71,78 ---- OpenGL(TM) is a trademark of Silicon Graphics, Inc. ! The XEmbed control, OpenVRML Player, and the Mozilla plug-in as ! well as the included example programs are available under the terms of ! the GNU General Public License (GPL), version 2. The full text of the ! GPL can be found in the file "COPYING". Index: ChangeLog =================================================================== RCS file: /cvsroot/openvrml/openvrml/ChangeLog,v retrieving revision 1.1491 retrieving revision 1.1492 diff -C2 -d -r1.1491 -r1.1492 *** ChangeLog 29 Apr 2007 07:25:36 -0000 1.1491 --- ChangeLog 29 Apr 2007 19:05:12 -0000 1.1492 *************** *** 1,4 **** --- 1,9 ---- 2007-04-29 Braden McDaniel <br...@en...> + * README: Added mention of the XEmbed control and OpenVRML Player + to "License terms". + + 2007-04-29 Braden McDaniel <br...@en...> + * README: Documented --disable-player configure option. |
From: Braden M. <br...@us...> - 2007-04-29 19:04:57
|
Update of /cvsroot/openvrml/openvrml In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv1387 Modified Files: Tag: OpenVRML-0_16-BRANCH ChangeLog README Log Message: Added mention of the XEmbed control and OpenVRML Player to "License terms". Index: README =================================================================== RCS file: /cvsroot/openvrml/openvrml/README,v retrieving revision 1.65.2.13 retrieving revision 1.65.2.14 diff -C2 -d -r1.65.2.13 -r1.65.2.14 *** README 29 Apr 2007 07:25:21 -0000 1.65.2.13 --- README 29 Apr 2007 19:04:55 -0000 1.65.2.14 *************** *** 71,77 **** OpenGL(TM) is a trademark of Silicon Graphics, Inc. ! The Mozilla plug-in as well as the included example programs are ! available under the terms of the GNU General Public License (GPL), ! version 2. The full text of the GPL can be found in the file "COPYING". --- 71,78 ---- OpenGL(TM) is a trademark of Silicon Graphics, Inc. ! The XEmbed control, OpenVRML Player, and the Mozilla plug-in as ! well as the included example programs are available under the terms of ! the GNU General Public License (GPL), version 2. The full text of the ! GPL can be found in the file "COPYING". Index: ChangeLog =================================================================== RCS file: /cvsroot/openvrml/openvrml/ChangeLog,v retrieving revision 1.1310.2.166 retrieving revision 1.1310.2.167 diff -C2 -d -r1.1310.2.166 -r1.1310.2.167 *** ChangeLog 29 Apr 2007 07:25:21 -0000 1.1310.2.166 --- ChangeLog 29 Apr 2007 19:04:54 -0000 1.1310.2.167 *************** *** 1,4 **** --- 1,9 ---- 2007-04-29 Braden McDaniel <br...@en...> + * README: Added mention of the XEmbed control and OpenVRML Player + to "License terms". + + 2007-04-29 Braden McDaniel <br...@en...> + * README: Documented --disable-player configure option. |
From: Braden M. <br...@us...> - 2007-04-29 07:25:38
|
Update of /cvsroot/openvrml/openvrml In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv26077 Modified Files: ChangeLog README Log Message: Documented --disable-player configure option. Index: README =================================================================== RCS file: /cvsroot/openvrml/openvrml/README,v retrieving revision 1.77 retrieving revision 1.78 diff -C2 -d -r1.77 -r1.78 *** README 29 Apr 2007 07:18:04 -0000 1.77 --- README 29 Apr 2007 07:25:36 -0000 1.78 *************** *** 192,195 **** --- 192,200 ---- the GL renderer be built. + --disable-player + Do not build openvrml-player. This is a GNOME application that + hosts the XEmbed control. It depends on GNOME (libgnomeui) and + libcurl. + --disable-mozilla-plugin Do not build the Mozilla plug-in. The Mozilla plug-in depends on Index: ChangeLog =================================================================== RCS file: /cvsroot/openvrml/openvrml/ChangeLog,v retrieving revision 1.1490 retrieving revision 1.1491 diff -C2 -d -r1.1490 -r1.1491 *** ChangeLog 29 Apr 2007 07:18:04 -0000 1.1490 --- ChangeLog 29 Apr 2007 07:25:36 -0000 1.1491 *************** *** 1,4 **** --- 1,8 ---- 2007-04-29 Braden McDaniel <br...@en...> + * README: Documented --disable-player configure option. + + 2007-04-29 Braden McDaniel <br...@en...> + * README: Added /src/openvrml-player to package directory layout. |
From: Braden M. <br...@us...> - 2007-04-29 07:25:22
|
Update of /cvsroot/openvrml/openvrml In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv26058 Modified Files: Tag: OpenVRML-0_16-BRANCH ChangeLog README Log Message: Documented --disable-player configure option. Index: README =================================================================== RCS file: /cvsroot/openvrml/openvrml/README,v retrieving revision 1.65.2.12 retrieving revision 1.65.2.13 diff -C2 -d -r1.65.2.12 -r1.65.2.13 *** README 29 Apr 2007 07:17:48 -0000 1.65.2.12 --- README 29 Apr 2007 07:25:21 -0000 1.65.2.13 *************** *** 192,195 **** --- 192,200 ---- the GL renderer be built. + --disable-player + Do not build openvrml-player. This is a GNOME application that + hosts the XEmbed control. It depends on GNOME (libgnomeui) and + libcurl. + --disable-mozilla-plugin Do not build the Mozilla plug-in. The Mozilla plug-in depends on Index: ChangeLog =================================================================== RCS file: /cvsroot/openvrml/openvrml/ChangeLog,v retrieving revision 1.1310.2.165 retrieving revision 1.1310.2.166 diff -C2 -d -r1.1310.2.165 -r1.1310.2.166 *** ChangeLog 29 Apr 2007 07:17:47 -0000 1.1310.2.165 --- ChangeLog 29 Apr 2007 07:25:21 -0000 1.1310.2.166 *************** *** 1,4 **** --- 1,8 ---- 2007-04-29 Braden McDaniel <br...@en...> + * README: Documented --disable-player configure option. + + 2007-04-29 Braden McDaniel <br...@en...> + * README: Added /src/openvrml-player to package directory layout. |