[Bsd-sharp-cvs] CVS commit to /cvsroot/bsd-sharp/FreeBSD-ports/deskutils/tomboy/files by killfill

noreply at forge.novell.com noreply at forge.novell.com
Wed Apr 25 09:35:57 MDT 2007


CVS commit to /cvsroot/bsd-sharp/FreeBSD-ports/deskutils/tomboy/files by killfill

Added Files:
	patch-Tomboy_Defines.cs.in patch-Tomboy_Utils.cs 
Log Message:
First development version of tomboy, in the way thought 0.8

-> 0.7.0

* New note tagging (UI very subject to comments/change).
* Keep static main menu items close to the panel icon (#431839).
* Note of the Day template accessible via plugin settings.
* MonoDevelop (0.13) support (Tomboy.mds added to project).


===================================================================
RCS file: /cvsroot/bsd-sharp/FreeBSD-ports/deskutils/tomboy/files/patch-Tomboy_Defines.cs.in,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
===================================================================
RCS file: /cvsroot/bsd-sharp/FreeBSD-ports/deskutils/tomboy/files/patch-Tomboy_Utils.cs,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- /cvsroot/bsd-sharp/FreeBSD-ports/deskutils/tomboy/files/patch-Tomboy_Utils.cs	2007/03/17 03:56:23	1.4
+++ /cvsroot/bsd-sharp/FreeBSD-ports/deskutils/tomboy/files/patch-Tomboy_Utils.cs	2007/04/25 15:35:57	1.5
@@ -1,16 +1,16 @@
---- Tomboy/Utils.cs.orig	Tue Oct 17 18:50:40 2006
-+++ Tomboy/Utils.cs	Thu Aug 10 09:12:49 2006
-@@ -767,24 +767,9 @@
- 			RegisterSignalHandlers ();
+--- Tomboy/Utils.cs.orig	Sun Feb 25 02:24:01 2007
++++ Tomboy/Utils.cs	Mon Mar 26 20:06:25 2007
+@@ -801,23 +801,12 @@
  		}
  
--		[DllImport("libc")]
+ 		[DllImport("libc")]
 -		private static extern int prctl (int option, 
 -						 byte [] arg2, 
 -						 IntPtr arg3, 
 -						 IntPtr arg4, 
 -						 IntPtr arg5);
--
++		private static extern void setproctitle(byte [] fmt, byte [] str_arg);
+ 
  		// From Banshee: Banshee.Base/Utilities.cs
  		public static void SetProcessName (string name)
  		{
@@ -22,6 +22,7 @@
 -				throw new ApplicationException (
 -					"Error setting process name: " +
 -					Mono.Unix.Native.Stdlib.GetLastError ());
++			setproctitle(Encoding.ASCII.GetBytes("%s\0"), Encoding.ASCII.GetBytes(name + "\0"));
  		}
  
  		static void RegisterSignalHandlers ()


More information about the Bsd-sharp-cvs mailing list