]> git.draconx.ca Git - gob-dx.git/blobdiff - ChangeLog
Release 2.0.11
[gob-dx.git] / ChangeLog
index 67edcbd5d66788dfd594099b936cf326f0ad24c0..2845d350e079007f1ff2380d012c4bf90e1537a9 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,166 @@
+Tue Oct 26 16:30:44 2004  George Lebl <jirka@5z.com>
+
+       * Release 2.0.11
+
+Tue Oct 26 16:27:44 2004  George Lebl <jirka@5z.com>
+
+       * src/main.c: fix compile when overrides and privates are used
+
+Wed Sep 22 17:12:25 2004  George Lebl <jirka@5z.com>
+
+       * Release 2.0.10
+
+Wed Sep 22 17:07:35 2004  George Lebl <jirka@5z.com>
+
+       * src/main.c: Apply patch from "K. Haley"
+         <haleykd@users.sourceforge.net> to play nice with glibs private
+         stuff and have the private structure be allocated by glib
+
+       * src/main.c, src/util.c: Apply patch from
+         Pierre Gay <gay-pierre@wanadoo.fr> to add the --file-sep=c option
+         which allows one to change the file separator character.
+
+       * doc/gob2.1.in: update docs
+
+       * src/parse.y: apply patch from debian bug#270546 by Frank
+         Lichtenheld <djpig@debian.org> to fix c++ compilation of linked
+         POINTER types by adding a proper cast at the right place
+
+       * src/main.c: always add string.h since it doesn't hurt and we missed
+         it on some occasions
+
+       * src/main.c: destroywith and unrefwith function get cast with
+         reinterpret_cast when using --for-cpp and don't get cast at all
+         for C, but for C we cast the pointer going into the function
+         to (gpointer).
+
+Tue Aug 10 16:32:00 2004  George Lebl <jirka@5z.com>
+
+       * src/main.c, src/parse.y, src/treefuncs.def: Apply patch from
+         Jean-Yves Lefort <jylefort@brutele.be> to support overriding
+         properties (g_object_class_override_property)
+       
+       * doc/gob2.1.in: update
+
+Thu Jul 29 10:47:31 2004  George Lebl <jirka@5z.com>
+
+       * configure.in, src/Makefile.am: Apply patch from "K. Haley"
+         <haleykd@users.sourceforge.net> to fix handling of NOINSTGOB
+         on certain platforms (apparently windows).
+
+Mon Jul 19 09:37:21 2004  George Lebl <jirka@5z.com>
+
+       * Release 2.0.9
+
+Mon Jul 19 09:30:18 2004  George Lebl <jirka@5z.com>
+
+       * src/main.c, src/test.gob, src/Makefile.am, src/parse.y:  Fix for
+         -Wbad-function-cast which is kind of a moronic warning when it
+         comes to enums so in non-C++ mode just use the generic gint and
+         guint casts for enums and flags, on the other hand C++ really
+         requires the proper enum casts, go figure.
+
+       * configure.in, NEWS: prepare for another release
+
+Thu Jul 08 16:22:56 2004  George Lebl <jirka@5z.com>
+
+       * src/main.c: Rework the unused var warning avoidance since it was
+         causing different warnings.  I sort of now assume we're using
+         gcc if we want no warnings, other compilers will likely get
+         warnings in places.  But they probably got some warnings anyway.
+         Also fixup all kinds of other places that cause warnings to popup.
+
+       * src/test.gob, src/Makefile.am:  Test for all kinds of warnings.
+
+Fri Jun 11 15:16:05 2004  George Lebl <jirka@5z.com>
+
+       * Release 2.0.8
+
+       * doc/gob2.1.in: quote the version in GOB2_CHECK
+
+Fri May 07 18:07:33 2004  George Lebl <jirka@5z.com>
+
+       * src/main.c: add -o,--output-dir command line option
+
+       * doc/gob2.1.in: document the above
+
+Tue May 04 22:34:00 2004  George Lebl <jirka@5z.com>
+
+       * src/parse.y, src/main.c, src/util.[ch]: move the make_me_type
+         to util and use it when making the boxed property set/get function
+         to fix boxed_type
+
+Tue Apr 13 11:32:51 2004  George Lebl <jirka@5z.com>
+
+       * doc/gob2.1.in: --always-private-header is NOT the default, but
+         --ondemand-private-header is the default.
+
+Tue Mar 30 17:32:47 2004  George Lebl <jirka@5z.com>
+
+       * Release 2.0.7
+
+Tue Mar 30 17:27:32 2004  George Lebl <jirka@5z.com>
+
+       * src/checks.[ch], src/main.c: check for classwide members with
+         destructors and warn there, since our classes are all static,
+         we never destroy them anyway so this never happens.  It all
+         depends on your setup, so we cannot do some atexit or whatnot.
+         Also disallow BOXED or FLAGS in signal arguments since that doesn't
+         work anyway and you can use POINTER and UINT instead.
+
+       * src/main.c, src/util.[ch]: fix the depracation fixing which broke
+         everything since g_strup/g_strdown had different semantics
+         then the new g_ascii_ versions.  So make our own
+         gob_strup/gob_strdown functions with the old semantics.
+
+       * src/main.c: use our error function exclusively instead of g_error.
+
+       * src/util.c: fix the error function to correctly follow exit_on_warn
+         and fix it when filename == NULL still
+
+       * src/test.gob: fix the test wrt BOXED and FLAGS
+
+Thu Feb 19 11:36:09 2004  George Lebl <jirka@5z.com>
+
+       * doc/gob2.1.in: further stupidity fix
+
+Thu Feb 19 11:31:40 2004  George Lebl <jirka@5z.com>
+
+       * doc/gob2.1.in, doc/makehtml.pl: fix a small error with the
+         documentation and suppor the \& escape in the makehtml.pl script
+
+Thu Feb 19 11:17:45 2004  George Lebl <jirka@5z.com>
+
+       * src/lexer.l, src/Makefile.am: Apply patch from Albert Chin-A-Young
+         <china@thewrittenword.com> to fix compilation on IBMs C compiler,
+         by tweaking the includes and removing the -W options from AM_CFLAGS
+         as those are supported only by gcc
+
+2003-02-08  Tomasz K³oczko <kloczek@pld.org.pl>
+
+       * gob2.m4: Trivial fix: added missing [] quotation macro name
+         defined in AC_DEFUN() (neccessary for aclocal from automake 1.8.x
+         and backward compatible with older auto tools).
+
+Tue Feb 03 12:57:45 2004  George Lebl <jirka@5z.com>
+
+       * src/main.c, src/util.c: Apply patch from Kjartan Maraas
+         <kmaraas@broadpark.no> to remove use of deprecated functions
+
+Wed Jan 21 09:24:12 2004  Nicolas Bruguier <gandalfn@club-internet.fr>
+
+       * src/main.c: add INT64 and UINT64 type support for signal 
+         and propeties
+
+Wed Aug 06 11:37:06 2003  George Lebl <jirka@5z.com>
+
+       * doc/gob2.1.in: very minor fix from my inbox from apr 03
+         by Trevor Spiteri
+
+Tue May 20 10:22:40 2003  George Lebl <jirka@5z.com>
+
+       * Release 2.0.6
+
 Tue May 20 10:18:10 2003  George Lebl <jirka@5z.com>
 
        * src/Makefile.am: fix some warnings related to newer automake