[Goodies-commits] r6332 - in sion/trunk: . src

Enrico Troeger enrico at xfce.org
Fri Dec 19 19:17:42 CET 2008


Author: enrico
Date: 2008-12-19 18:17:42 +0000 (Fri, 19 Dec 2008)
New Revision: 6332

Modified:
   sion/trunk/TODO
   sion/trunk/sion.1.in
   sion/trunk/src/main.c
Log:
Fix homepage address in the manual page.
Use g_setenv() instead of setenv().

Modified: sion/trunk/TODO
===================================================================
--- sion/trunk/TODO	2008-12-19 18:13:38 UTC (rev 6331)
+++ sion/trunk/TODO	2008-12-19 18:17:42 UTC (rev 6332)
@@ -1,6 +1,6 @@
 - better program icon
 - libnotify - to notify about new mounts or disappeared mounts (ftp timeout, etc.)
 - progressdialog when mounting
-- display pseudo names instead of URI schemes
 - allow usernames which include a '@' char
+- Fix 'Create Bookmark'
 - sort bookmarks

Modified: sion/trunk/sion.1.in
===================================================================
--- sion/trunk/sion.1.in	2008-12-19 18:13:38 UTC (rev 6331)
+++ sion/trunk/sion.1.in	2008-12-19 18:17:42 UTC (rev 6332)
@@ -10,7 +10,7 @@
 GIO/GVFS. It allows you to quickly mount a remote filesystem and manage
 bookmarks to such.
 .PP
-Homepage: http://write me
+Homepage: http://www.uvena.de/sion/
 .SH "OPTIONS"
 If called without any arguments, the sion main window is shown.
 .IP "\fB-l\fP, \fB\-\-list-schemes\fP         " 10

Modified: sion/trunk/src/main.c
===================================================================
--- sion/trunk/src/main.c	2008-12-19 18:13:38 UTC (rev 6331)
+++ sion/trunk/src/main.c	2008-12-19 18:17:42 UTC (rev 6332)
@@ -125,7 +125,7 @@
 	// GVFS currently depends on gnome-mount for HAL-based GVolumeMonitor implementation,
 	// when gnome-mount is not installed, we can use "unix" as GVolumeMonitor implementation.
 	if ((vm_impl = sion_settings_get_vm_impl(settings)) != NULL)
-		setenv("GIO_USE_VOLUME_MONITOR", vm_impl, 0);
+		g_setenv("GIO_USE_VOLUME_MONITOR", vm_impl, 0);
 
 	window = sion_window_new(settings);
     g_signal_connect(window, "destroy", G_CALLBACK(gtk_main_quit), NULL);




More information about the Goodies-commits mailing list