balsa r7893 - in trunk: . doc/C src



Author: pawels
Date: Thu Mar 20 21:18:13 2008
New Revision: 7893
URL: http://svn.gnome.org/viewvc/balsa?rev=7893&view=rev

Log:
* src/main-window.c: Fix a runtime warning.
* configure.in, NEWS: release 2.3.23
* doc/C/balsa.xml: document Face and X-Face headers.


Modified:
   trunk/ChangeLog
   trunk/NEWS
   trunk/configure.in
   trunk/doc/C/balsa.xml
   trunk/src/main-window.c

Modified: trunk/NEWS
==============================================================================
--- trunk/NEWS	(original)
+++ trunk/NEWS	Thu Mar 20 21:18:13 2008
@@ -1,3 +1,10 @@
+* Balsa-2.3.23 release. Release date 2008-03-20
+
+- Suppport for IMAP MULTIAPPEND extension for faster uploading of
+  message batches to and from IMAP servers.
+- improved scanning of mailbox trees.
+- GtkSourceView2 support.
+
 * Balsa-2.3.22 release. Release date 2007-12-23
 
 - new address edition widget in the compose window.

Modified: trunk/configure.in
==============================================================================
--- trunk/configure.in	(original)
+++ trunk/configure.in	Thu Mar 20 21:18:13 2008
@@ -12,7 +12,7 @@
 SCROLLKEEPER_REQUIRED=0.1.4
 BALSA_MAJOR=2
 BALSA_REVISION=3
-BALSA_PATCHLEVEL=22
+BALSA_PATCHLEVEL=23
 BALSA_VERSION="$BALSA_MAJOR.$BALSA_REVISION.${BALSA_PATCHLEVEL}"
 
 AC_SUBST(BALSA_MAJOR)

Modified: trunk/doc/C/balsa.xml
==============================================================================
--- trunk/doc/C/balsa.xml	(original)
+++ trunk/doc/C/balsa.xml	Thu Mar 20 21:18:13 2008
@@ -3841,6 +3841,41 @@
   </varlistentry>
 
   <varlistentry>
+    <term><guilabel>Request Message Disposition Notification</guilabel></term>
+    <listitem>
+      <para>
+	Whether Message Disposition Notification should be requested by default.
+      </para>
+    </listitem>
+  </varlistentry>
+
+  <varlistentry>
+    <term><guilabel>Face Path</guilabel></term>
+    <listitem>
+      <para>
+	Whether a &quot;Face&quot; header should be attached to a
+	program. Specified patch points out to a file containing a
+	textual representation of the face icon. Please
+	see <ulink url="http://quimby.gnus.org/circus/face/";
+	type="http">a description of Face and X-Face</ulink> headers
+	for more details as well as the list of mail programs
+	supporting this feature.
+      </para>
+    </listitem>
+  </varlistentry>
+
+
+  <varlistentry>
+    <term><guilabel>X-Face Path</guilabel></term>
+    <listitem>
+      <para>Whether a &quot;Face&quot; header should be attached to a
+	program. Specified patch points out to a file containing a
+	textual representation of the face icon.
+      </para>
+    </listitem>
+  </varlistentry>
+
+  <varlistentry>
     <term><guilabel>SMTP server</guilabel></term>
     <listitem>
       <para>

Modified: trunk/src/main-window.c
==============================================================================
--- trunk/src/main-window.c	(original)
+++ trunk/src/main-window.c	Thu Mar 20 21:18:13 2008
@@ -136,7 +136,7 @@
 static gboolean bw_is_open_mailbox(LibBalsaMailbox *m);
 
 /* dialogs */
-static void bw_show_about_box(BalsaWindow * window);
+static void bw_show_about_box(GtkAction *, gpointer data);
 
 /* callbacks */
 static void bw_send_outbox_messages_cb    (GtkAction *, gpointer data);
@@ -2520,7 +2520,7 @@
  * show the about box for Balsa
  */
 static void
-bw_show_about_box(BalsaWindow * window)
+bw_show_about_box(GtkAction * action, gpointer user_data)
 {
     const gchar *authors[] = {
         "Balsa Maintainers <balsa-maintainer theochem kth se>:",
@@ -2543,7 +2543,7 @@
                                  "/pixmaps/balsa_logo.png", NULL);
 
 #if GTK_CHECK_VERSION(2, 6, 0)
-    gtk_show_about_dialog(GTK_WINDOW(window),
+    gtk_show_about_dialog(GTK_WINDOW(user_data),
                           "name", "Balsa",
                           "version", BALSA_VERSION,
                           "copyright",



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