dia r4376 - in trunk: . app
- From: hans svn gnome org
- To: svn-commits-list gnome org
- Subject: dia r4376 - in trunk: . app
- Date: Sat, 11 Apr 2009 14:19:57 +0000 (UTC)
Author: hans
Date: Sat Apr 11 14:19:57 2009
New Revision: 4376
URL: http://svn.gnome.org/viewvc/dia?rev=4376&view=rev
Log:
2009-04-11 Hans Breuer <hans breuer org>
* app/app_procs.c : patch from Arunan Balasubramaniam, bug #573921 to
to reduce wakeups prefer g_timeout_add_seconds() over g_timeout_add()
Modified:
trunk/ChangeLog
trunk/NEWS
trunk/app/app_procs.c
trunk/config.h.win32
trunk/configure.in
Modified: trunk/NEWS
==============================================================================
--- trunk/NEWS (original)
+++ trunk/NEWS Sat Apr 11 14:19:57 2009
@@ -1,3 +1,8 @@
+dia-0.97-pre3: 2009-04-05
+
+ * even more bugs fixed:
+ http://bugzilla.gnome.org/buglist.cgi?product=dia&target_milestone=0.97&chfieldfrom=2009-02-15&chfieldto=2009-04-06
+
dia-0.97-pre2: 2009-02-15
* Quite some bugs fixed, at least:
Modified: trunk/app/app_procs.c
==============================================================================
--- trunk/app/app_procs.c (original)
+++ trunk/app/app_procs.c Sat Apr 11 14:19:57 2009
@@ -839,7 +839,11 @@
recent_file_history_init();
/* Set up autosave to check every 5 minutes */
+#if GLIB_CHECK_VERSION(2,14,0)
+ g_timeout_add_seconds(5*60, autosave_check_autosave, NULL);
+#else
g_timeout_add(5*60*1000, autosave_check_autosave, NULL);
+#endif
/* Create Diagram Tree Window */
create_tree_window();
Modified: trunk/config.h.win32
==============================================================================
--- trunk/config.h.win32 (original)
+++ trunk/config.h.win32 Sat Apr 11 14:19:57 2009
@@ -25,7 +25,7 @@
#endif
#define HAVE_LIBZ
-#define VERSION "0.97-pre2"
+#define VERSION "0.97-pre3"
/*
* We are linking libxml as DLL with either msvc or mingw, but this
Modified: trunk/configure.in
==============================================================================
--- trunk/configure.in (original)
+++ trunk/configure.in Sat Apr 11 14:19:57 2009
@@ -1,6 +1,6 @@
dnl Process this -*- autoconf -*- file with autoconf to produce a
dnl configure script.
-AC_INIT(dia, 0.97-pre2, http://bugzilla.gnome.org/enter_bug.cgi?product=dia)
+AC_INIT(dia, 0.97-pre3, http://bugzilla.gnome.org/enter_bug.cgi?product=dia)
AC_CONFIG_SRCDIR(app/diagram.c)
AM_INIT_AUTOMAKE(AC_PACKAGE_NAME,AC_PACKAGE_VERSION)
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]