X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=ChangeLog.pre-2-8;h=313398951bda1f3d98339b198822dc906a0ab1d6;hb=b03e280bd1dcd55a05546ebb678bbfbfa9fbda03;hp=a428f40a4f736e1f5e8103937d952cdfe651faf4;hpb=7519c2338ae484135b44bbb7eb49719aea8c4ca3;p=platform%2Fupstream%2Fglib.git diff --git a/ChangeLog.pre-2-8 b/ChangeLog.pre-2-8 index a428f40..3133989 100644 --- a/ChangeLog.pre-2-8 +++ b/ChangeLog.pre-2-8 @@ -1,3 +1,212 @@ +Sun Aug 16 23:23:46 CDT 1998 Shawn T. Amundson + + * Released GLib 1.1.3 + + * gmodule/Makefile.am: added gmodule-dl.c and gmodule-dld.c to + EXTRA_DIST + * glib.spec: version = 1.1.3 + +Mon Aug 17 01:46:14 1998 Tim Janik + + * glib.m4: feature an extra MODULES parameter, so glib-config can + be invoked with the "gmodule" argument. + + * glib.h: changed the log level to G_LOG_LEVEL_CRITICAL for all + g_return*_if_fail statements, and made them issue a message + like "assertion `%s' failed". + + * gmessages.c (g_logv): ugh, don't pass log_domain as NULL to + g_log_find_domain. + +Sun Aug 16 20:28:27 1998 Tim Janik + + * version bump to 1.1.3, binary age 0, interface age 0. + + * glib.h: be nice to platforms that don't have gint64 and don't + issue #warning on every compilation. since glib doesn't require + gint64 itself, packages that need gint64 should test for this + themselves. + + * glib.h: + * gutils.c: added a new function g_vsnprintf(). + +Sun Aug 16 Elliot Lee + + glib.h: #error out if we don't recognize the SIZEOF_VOID_P + #warning if no gint64 + +Fri Aug 14 16:41:53 1998 Tim Janik + + * glib.h: added static inline functions for bit mask tests: + g_bit_nth_lsf, g_bit_nth_msf and g_bit_storage. + +Fri Aug 13 14:23:37 1998 Tim Janik + + * glib.h: + * gmessages.c: + revised the message handling system, which is now based on a new + mechanism g_log*. most of the assertment macros got adapted to + feature the new g_log() call with an additional specification of + the log level in a preprocessor macro G_LOG_DOMAIN. if G_LOG_DOMAIN + is undefined upon the includion of glib.h, it'll be defined with a + value of (NULL) and thus preserves the original bahaviour for + warning and error messages. the message handler setting functions + for g_warning, g_error and g_message are only provided for backwards + compatibility and might get removed somewhen. + + * Makefile.am: feature the G_LOG_DOMAIN macro to set the log domain + to "GLib" upon compilation. we currently have to add this definition + to the DEFS variable. + * testglib.c: we need an ugly #undef G_LOG_DOMAIN at the start + of this file currently, since automake doesn't support per target + _CFLAGS yet. + + * glib.h: changed some gints to gbooleans, made a few const corrections, + removed some superfluous G_STMT_START{}G_STMT_END wrappers, added some + in other required places. + + * gnode.c: + (g_node_prepend): + (g_node_insert_before): + (g_node_insert): + (g_node_append_data): + (g_node_prepend_data): + (g_node_insert_data_before): + (g_node_insert_data): + (g_node_append): + return (node), so these macros/functions can be usefully chained with + g_node_new(). + +Mon Aug 10 17:56:11 PDT 1998 Manish Singh + + * glib.h: it's GTime now, and it's back! + +Mon Aug 10 02:17:19 1998 Tim Janik + + * Makefile.am: minor hack to cause SUBDIRS (gmodule) to be build + last. we do this by making all-recursive-am depend on all-am. + +Sun Aug 9 15:56:11 1998 Tim Janik + + * configure.in: added GModule checks. generate files in gmodule/. + * glib-config.in: support library specifications `glib' and `gmodule'. + * Makefile.am: feature the gmodule/ subdir. + +Wed Aug 5 10:04:29 PDT 1998 Shawn T. Amundson + + * Released GLib 1.1.2 + +Wed Aug 05 01:15:36 1998 George Lebl + + * testglib.c: fix 64-bitness in g_prints, sizeof doesn't + seem to return int so I cast it for printing, probably + just cosmetic + +Tue Aug 4 19:54:06 PDT 1998 Shawn T. Amundson + + * Released GLib 1.1.1 + +Tue Aug 4 15:17:54 1998 Tim Janik + + * configure.in: version bump to 1.1.1, binary age 1, interface age 0. + * NEWS: updates. + * README: updates. + * INSTALL: updates and fixes. + * COPYING: include the GNU LGPL, rather than shipping an empty file. + * AUTHORS: listed original authors here, and added people who made + significant improvements to glib. + + * glib.h: + * gutils.c: implement g_get_current_dir() which returns a newly + allocated string, instead of a g_getcwd() variant that operates + on a static buffer. + export glib_interface_age and glib_binary_age. + as a convenience, macro definitions have been added for + g_node_insert_data, g_node_insert_data_before, g_node_append_data and + g_node_prepend_data. + + * testglib.c: minor cleanups, print current dir. + +Mon Aug 3 16:02:26 1998 Tim Janik + + * glib.h: + * gnode.c: change order of gpointer data; field in struct _GNode to + be partly binary compatible with GList and GSList. + +1998-08-03 Sebastian Wilhelmi + + * garray.c (g_ptr_array_remove_index): bugfix: index check for + array has been wrong. + +Fri Jul 31 22:17:05 1998 Tim Janik + + * testglib.c (g_node_test): added a GNode test. + +Fri Jul 31 09:08:16 1998 Tim Janik + + * Makefile.am: compile gnode.c. + + * glib.h: + * gnode.c: added implementation of n-way trees. + + * gtree.c (g_tree_traverse): added a warning to the switch() statement + which says that G_LEVEL_ORDER is not implemented. + +Mon Jul 27 00:17:30 CDT 1998 Shawn T. Amundson + + * Released GLib 1.1.0 + +Mon Jul 27 01:02:27 1998 Tim Janik + + * glib.h: #if 0'ed out the GTime definition, until it is definitively + needed. #if 0'ed out the g_getcwd() version, because it is the wrong + implementation. + +Sat Jul 25 16:09:00 1998 Mark Crichton + + * glib.h: gtime changed to g_time. gtime is used in + /usr/include/time.h in NetBSD, causing multiple headaches. + If this isn't the right way of fixing it.... ;) + +Thu Jul 23 00:29:14 1998 Tim Janik + + * glib.h: + * gscanner.c: new functions to make a scanner scope sensitive wrt + symbol lookups. + g_scanner_scope_foreach_symbol, g_scanner_scope_lookup_symbol, + g_scanner_scope_remove_symbol, g_scanner_scope_add_symbol and + g_scanner_set_scope. + g_scanner_add_symbol, g_scanner_remove_symbol and + g_scanner_foreach_symbol are now aliases for scope 0. + +Mon Jul 20 23:05:34 1998 George Lebl + + * glib.h: typo fixed for alphas for gint64 + +Tue Jul 14 09:05:18 1998 Tim Janik + + * glib.h: + * gutils.c: new fuction g_dirname() which returns a newlly + allocated string. + +Fri Jul 10 06:33:43 1998 Tim Janik + + * glib.h: + * gutils.h: added a bunch of utility/wrapper functions: + g_basename(), g_getcwd(), g_get_user_name(), g_get_real_name(), + g_get_home_dir(), g_get_tmp_dir(), g_get_prgname() and g_set_prgname(). + + * gutils.c: removed all g_str* functions. + * gstrfuncs.c: moved the bunch g_str* functions from gutils.c in this + place. this file shall never include to avoid clashes for + some of the g_str* functions on some OSes. + +Fri Jul 10 00:29:03 EEST 1998 Lauri Alanko + + * glib.h: + * ghash.c: Renamed g_hash_table_lookup_full to + g_hash_table_lookup_extended to conform with naming conventions. + Tue Jul 7 03:18:58 EEST 1998 Lauri Alanko * glib.h: