[Goodies-dev] Goodie releases with 4.4.0

Remco den Breeje remco at vioco.nl
Sun Jan 21 17:07:13 CET 2007


Hi Nick,

I just fixed an annoying bug in the datetime-plugin which is quite
critical and occurred about every second config-read.
Attached the patch which shows the differences.

Bumped version to 0.4.2 on svn (tags/datetime_0_4_2/)

Is there enough time to include this version instead of 0.4.1?

Thanks,

Remco

On Tue 16 Jan 2007 at 12:59, remco at sx.mine.nu wrote:
> Hi Nick,
> 
> I guess xfce4-datetime-plugin version 0.4.1 (the one you released
> yourself ;)) is ready for the xfce 4.4.0 release.
> 
> http://goodies.xfce.org/releases/xfce4-datetime-plugin/
> 
> or svn://xfce-goodies/xfce4-datetime-plugin/tags/datetime_0_4_1/
> 
> Thanks,
> 
> Remco
> 
> On Tue 16 Jan 2007 at 10:10, Nick Schermer wrote:
> > Since we're still aiming to release Xfce 4.4.0 this weekend, I'd like
> > to know which goodies are ready for a final release. I'll also create
> > a new goodies installer, so please tell me which version of your
> > goodies is ready for 4.4.0.
> > If you have time to do a version bump and release the goodie yourself
> > it would be great, if you don't have time for this, drop the new
> > version number and I'll create/upload/tag and release the tarball
> > together with 4.4.0.
> > 
> > These goodies are already checked in for the installer:
> > xfce4-battery-plugin (0.5.0)
> > xfce4-clipman-plugin (0.6.0)
> > xfce4-eyes-plugin (4.4.0)
> > xfce4-weather-plugin (0.6.0)
> > 
> > Notes:
> > 1) I'LL ONLY ADD GOODIES TO THE INSTALLER FROM THE DEVELOPERS THAT
> > RESPOND TO THIS EMAIL.
> > 2) Thunar plugins won't part of the installer (Maybe a separate
> > installer, Benny?)
> > 3) You have to checking your goodie before Sunday, so I have some time
> > to prepare the releases.
> > 4) If there is no way to disable some of the plugins that depend on
> > gnome libs, they won't be part of the installer.
> > 
> > Greets,
> > Nick
> > _______________________________________________
> > Goodies-dev mailing list
> > Goodies-dev at xfce.org
> > http://foo-projects.org/mailman/listinfo/goodies-dev
> > 
> 
> ----- End forwarded message -----
> _______________________________________________
> Goodies-dev mailing list
> Goodies-dev at xfce.org
> http://foo-projects.org/mailman/listinfo/goodies-dev
> 
-------------- next part --------------
--- tags/datetime_0_4_1/panel-plugin/datetime.c	2007-01-15 10:16:04.000000000 +0100
+++ tags/datetime_0_4_2/panel-plugin/datetime.c	2007-01-21 16:53:42.000000000 +0100
@@ -430,6 +430,7 @@
   gchar *file;
   XfceRc *rc;
   const gchar *date_font, *time_font, *date_format, *time_format;
+  const gchar *val;
 
   /* load defaults */
   date_font = "Bitstream Vera Sans 8";
@@ -445,10 +446,14 @@
 
     if(rc != NULL)
     {
-      date_font	  = xfce_rc_read_entry(rc, "date_font", date_font);
-      time_font	  = xfce_rc_read_entry(rc, "time_font", time_font);
-      date_format = xfce_rc_read_entry(rc, "date_format", date_format);
-      time_format = xfce_rc_read_entry(rc, "time_format", time_format);
+      val = xfce_rc_read_entry(rc, "date_font", date_font);
+      date_font          = g_strdup(val);
+      val = xfce_rc_read_entry(rc, "time_font", time_font);
+      time_font          = g_strdup(val);
+      val = xfce_rc_read_entry(rc, "date_format", date_format);
+      date_format = g_strdup(val);
+      val = xfce_rc_read_entry(rc, "time_format", time_format);
+      time_format = g_strdup(val);
 
       xfce_rc_close(rc);
     }


More information about the Goodies-dev mailing list