f-spot r4426 - in branches/FSPOT_0_5_0_STABLE: . src



Author: sdelcroix
Date: Mon Sep 22 19:47:23 2008
New Revision: 4426
URL: http://svn.gnome.org/viewvc/f-spot?rev=4426&view=rev

Log:
2008-09-22  Stephane Delcroix  <sdelcroix novell com>

	* configure.in: bump to 0.5.0.1
	* src/TagStore.cs: do not use rle, it triggers a bug in gdk-pixbuf. Fixes
	bgo #553243.

Modified:
   branches/FSPOT_0_5_0_STABLE/ChangeLog
   branches/FSPOT_0_5_0_STABLE/configure.in
   branches/FSPOT_0_5_0_STABLE/src/TagStore.cs

Modified: branches/FSPOT_0_5_0_STABLE/configure.in
==============================================================================
--- branches/FSPOT_0_5_0_STABLE/configure.in	(original)
+++ branches/FSPOT_0_5_0_STABLE/configure.in	Mon Sep 22 19:47:23 2008
@@ -1,4 +1,4 @@
-AC_INIT(F-Spot, 0.5.0)
+AC_INIT(F-Spot, 0.5.0.1)
 AC_CONFIG_SRCDIR(src/main.cs)
 
 AM_CONFIG_HEADER(config.h)

Modified: branches/FSPOT_0_5_0_STABLE/src/TagStore.cs
==============================================================================
--- branches/FSPOT_0_5_0_STABLE/src/TagStore.cs	(original)
+++ branches/FSPOT_0_5_0_STABLE/src/TagStore.cs	Mon Sep 22 19:47:23 2008
@@ -35,7 +35,7 @@
 	public static byte [] Serialize (Pixbuf pixbuf)
 	{
 		Pixdata pixdata = new Pixdata ();
-		IntPtr raw_pixdata = pixdata.FromPixbuf (pixbuf, true); // FIXME GTK# shouldn't this be a constructor or something?
+		IntPtr raw_pixdata = pixdata.FromPixbuf (pixbuf, false); // FIXME GTK# shouldn't this be a constructor or something?
 									//       It's probably because we need the IntPtr to free it afterwards
 
 		uint data_length;



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]