[Goodies-commits] r7890 - in xfce4-weather-plugin/trunk: . panel-plugin

Colin Leroy colin at xfce.org
Tue Aug 4 19:12:18 CEST 2009


Author: colin
Date: 2009-08-04 17:12:18 +0000 (Tue, 04 Aug 2009)
New Revision: 7890

Modified:
   xfce4-weather-plugin/trunk/ChangeLog
   xfce4-weather-plugin/trunk/configure.in.in
   xfce4-weather-plugin/trunk/panel-plugin/weather-summary.c
Log:
2009-08-04	Colin Leroy <colin at colino.net>

	Release 0.7.3

2009-08-04	Colin Leroy <colin at colino.net>

	* panel-plugin/weather-summary.c
		Fix directory creation problem. Patch by Yves-Alexis Perez



Modified: xfce4-weather-plugin/trunk/ChangeLog
===================================================================
--- xfce4-weather-plugin/trunk/ChangeLog	2009-08-04 17:05:41 UTC (rev 7889)
+++ xfce4-weather-plugin/trunk/ChangeLog	2009-08-04 17:12:18 UTC (rev 7890)
@@ -1,3 +1,12 @@
+2009-08-04	Colin Leroy <colin at colino.net>
+
+	Release 0.7.3
+
+2009-08-04	Colin Leroy <colin at colino.net>
+
+	* panel-plugin/weather-summary.c
+		Fix directory creation problem. Patch by Yves-Alexis Perez
+
 2009-07-28	Colin Leroy <colin at colino.net>
 
 	Release 0.7.2

Modified: xfce4-weather-plugin/trunk/configure.in.in
===================================================================
--- xfce4-weather-plugin/trunk/configure.in.in	2009-08-04 17:05:41 UTC (rev 7889)
+++ xfce4-weather-plugin/trunk/configure.in.in	2009-08-04 17:12:18 UTC (rev 7890)
@@ -11,7 +11,7 @@
 dnl ***************************
 m4_define([weather_version_major], [0])
 m4_define([weather_version_minor], [7])
-m4_define([weather_version_micro], [3])
+m4_define([weather_version_micro], [4])
 m4_define([weather_version_build], [r at REVISION@])
 m4_define([weather_version_tag], [svn])
 m4_define([weather_version], [weather_version_major().weather_version_minor().weather_version_micro()ifelse(weather_version_tag(), [svn], [weather_version_tag()-weather_version_build()], [weather_version_tag()])])

Modified: xfce4-weather-plugin/trunk/panel-plugin/weather-summary.c
===================================================================
--- xfce4-weather-plugin/trunk/panel-plugin/weather-summary.c	2009-08-04 17:05:41 UTC (rev 7889)
+++ xfce4-weather-plugin/trunk/panel-plugin/weather-summary.c	2009-08-04 17:12:18 UTC (rev 7890)
@@ -172,7 +172,7 @@
 	gchar *dir = g_strconcat(g_get_user_cache_dir(), G_DIR_SEPARATOR_S,
 				"xfce4", G_DIR_SEPARATOR_S, "weather-plugin", NULL);
 
-	g_mkdir_with_parents(dir, 0644);
+	g_mkdir_with_parents(dir, 0755);
 	g_free(dir);
 
 	return g_strconcat(g_get_user_cache_dir(), G_DIR_SEPARATOR_S,




More information about the Goodies-commits mailing list