[Goodies-commits] r4754 - in xfce4-taskmanager/trunk: . src

Mike Massonnet mmassonnet at xfce.org
Fri May 9 14:22:49 CEST 2008


Author: mmassonnet
Date: 2008-05-09 12:22:49 +0000 (Fri, 09 May 2008)
New Revision: 4754

Modified:
   xfce4-taskmanager/trunk/AUTHORS
   xfce4-taskmanager/trunk/ChangeLog
   xfce4-taskmanager/trunk/src/callbacks.c
   xfce4-taskmanager/trunk/src/callbacks.h
   xfce4-taskmanager/trunk/src/functions.c
   xfce4-taskmanager/trunk/src/interface.c
   xfce4-taskmanager/trunk/src/menu-positions.h
   xfce4-taskmanager/trunk/src/types.h
   xfce4-taskmanager/trunk/src/xfce-taskmanager-linux.c
Log:
Add credits and update ChangeLog


Modified: xfce4-taskmanager/trunk/AUTHORS
===================================================================
--- xfce4-taskmanager/trunk/AUTHORS	2008-05-09 11:01:48 UTC (rev 4753)
+++ xfce4-taskmanager/trunk/AUTHORS	2008-05-09 12:22:49 UTC (rev 4754)
@@ -1 +1,2 @@
 Johannes Zellner <webmaster at nebulon.de>
+Mike Massonnet <mmassonnet at xfce.org>

Modified: xfce4-taskmanager/trunk/ChangeLog
===================================================================
--- xfce4-taskmanager/trunk/ChangeLog	2008-05-09 11:01:48 UTC (rev 4753)
+++ xfce4-taskmanager/trunk/ChangeLog	2008-05-09 12:22:49 UTC (rev 4754)
@@ -1,3 +1,22 @@
+2008-05-09	Mike Massonnet <mmassonnet at xfce.org>
+
+	* Set command column to expand and ellipsize
+	* Properly refresh on CPU usage
+	* Fix the event of the main menu to display on keyboard and mouse
+	* Properly position the main menu
+	* Fix strings
+	* Properly save window size on quit
+	* Right align numerical columns
+
+2008-05-08	Mike Massonnet <mmassonnet at xfce.org>
+
+	* Correctly display the memory size of the processes
+
+2008-05-05	Mike Massonnet <mmassonnet at xfce.org>
+
+	* Delete automated files
+	* Remove useless gettext() and properly align menu items on the right
+
 2007-01-12	Nick Schermer <nick at xfce.org>
 
 	* Change version number and svn revision support in configure.in.in

Modified: xfce4-taskmanager/trunk/src/callbacks.c
===================================================================
--- xfce4-taskmanager/trunk/src/callbacks.c	2008-05-09 11:01:48 UTC (rev 4753)
+++ xfce4-taskmanager/trunk/src/callbacks.c	2008-05-09 12:22:49 UTC (rev 4754)
@@ -1,7 +1,8 @@
 /*
  *  xfce4-taskmanager - very simple taskmanger
  *
- *  Copyright (c) 2006 Johannes Zellner, <webmaster at nebulon.de>
+ *  Copyright (c) 2006  Johannes Zellner <webmaster at nebulon.de>
+ *                2008  Mike Massonnet <mmassonnet at xfce.org>
  *
  *  This program is free software; you can redistribute it and/or modify
  *  it under the terms of the GNU General Public License as published by

Modified: xfce4-taskmanager/trunk/src/callbacks.h
===================================================================
--- xfce4-taskmanager/trunk/src/callbacks.h	2008-05-09 11:01:48 UTC (rev 4753)
+++ xfce4-taskmanager/trunk/src/callbacks.h	2008-05-09 12:22:49 UTC (rev 4754)
@@ -1,7 +1,8 @@
 /*
  *  xfce4-taskmanager - very simple taskmanger
  *
- *  Copyright (c) 2006 Johannes Zellner, <webmaster at nebulon.de>
+ *  Copyright (c) 2006  Johannes Zellner <webmaster at nebulon.de>
+ *                2008  Mike Massonnet <mmassonnet at xfce.org>
  *
  *  This program is free software; you can redistribute it and/or modify
  *  it under the terms of the GNU General Public License as published by

Modified: xfce4-taskmanager/trunk/src/functions.c
===================================================================
--- xfce4-taskmanager/trunk/src/functions.c	2008-05-09 11:01:48 UTC (rev 4753)
+++ xfce4-taskmanager/trunk/src/functions.c	2008-05-09 12:22:49 UTC (rev 4754)
@@ -1,6 +1,7 @@
 /* $Id$
  *
- * Copyright (c) 2006 Johannes Zellner, <webmaster at nebulon.de>
+ * Copyright (c) 2006  Johannes Zellner <webmaster at nebulon.de>
+ *               2008  Mike Massonnet <mmassonnet at xfce.org>
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by

Modified: xfce4-taskmanager/trunk/src/interface.c
===================================================================
--- xfce4-taskmanager/trunk/src/interface.c	2008-05-09 11:01:48 UTC (rev 4753)
+++ xfce4-taskmanager/trunk/src/interface.c	2008-05-09 12:22:49 UTC (rev 4754)
@@ -1,6 +1,7 @@
 /* $Id$
  *
- * Copyright (c) 2006 Johannes Zellner, <webmaster at nebulon.de>
+ * Copyright (c) 2006  Johannes Zellner <webmaster at nebulon.de>
+ *               2008  Mike Massonnet <mmassonnet at xfce.org>
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by

Modified: xfce4-taskmanager/trunk/src/menu-positions.h
===================================================================
--- xfce4-taskmanager/trunk/src/menu-positions.h	2008-05-09 11:01:48 UTC (rev 4753)
+++ xfce4-taskmanager/trunk/src/menu-positions.h	2008-05-09 12:22:49 UTC (rev 4754)
@@ -1,7 +1,7 @@
 /*
  *  xfce4-taskmanager - very simple taskmanger
  *
- *  Copyright (c) 2006 Johannes Zellner, <webmaster at nebulon.de>
+ *  Copyright (c) 2008 	Mike Massonnet <mmassonnet at xfce.org>
  *
  *  This program is free software; you can redistribute it and/or modify
  *  it under the terms of the GNU General Public License as published by

Modified: xfce4-taskmanager/trunk/src/types.h
===================================================================
--- xfce4-taskmanager/trunk/src/types.h	2008-05-09 11:01:48 UTC (rev 4753)
+++ xfce4-taskmanager/trunk/src/types.h	2008-05-09 12:22:49 UTC (rev 4754)
@@ -1,6 +1,7 @@
 /* $Id$
  *
- * Copyright (c) 2006 Johannes Zellner, <webmaster at nebulon.de>
+ * Copyright (c) 2006  Johannes Zellner <webmaster at nebulon.de>
+ *               2008  Mike Massonnet <mmassonnet at xfce.org>
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by

Modified: xfce4-taskmanager/trunk/src/xfce-taskmanager-linux.c
===================================================================
--- xfce4-taskmanager/trunk/src/xfce-taskmanager-linux.c	2008-05-09 11:01:48 UTC (rev 4753)
+++ xfce4-taskmanager/trunk/src/xfce-taskmanager-linux.c	2008-05-09 12:22:49 UTC (rev 4754)
@@ -1,6 +1,7 @@
 /* $Id$
  *
- * Copyright (c) 2006 Johannes Zellner, <webmaster at nebulon.de>
+ * Copyright (c) 2006  Johannes Zellner <webmaster at nebulon.de>
+ *               2008  Mike Massonnet <mmassonnet at xfce.org>
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by




More information about the Goodies-commits mailing list