2006-01-31 [cleroy] 2.0.0cvs3

* src/plugins/pgpcore/passphrase.c
		Convert passphrase to locale encoding
	* src/compose.c
		Fix drafting on IMAP. Crappy bug sneaked in
		the release :-/
This commit is contained in:
Colin Leroy 2006-01-31 17:29:49 +00:00
parent 01c3e6f997
commit a51cbeed2b
5 changed files with 13 additions and 2 deletions

View file

@ -1,3 +1,11 @@
2006-01-31 [cleroy] 2.0.0cvs3
* src/plugins/pgpcore/passphrase.c
Convert passphrase to locale encoding
* src/compose.c
Fix drafting on IMAP. Crappy bug sneaked in
the release :-/
2006-01-30 [paul] 2.0.0cvs2
* src/gtk/icon_legend.c

View file

@ -1186,3 +1186,4 @@
( cvs diff -u -r 1.1.2.6 -r 1.1.2.7 manual/faq.xml; cvs diff -u -r 1.1.2.2 -r 1.1.2.3 manual/gpl.xml; cvs diff -u -r 1.1.2.3 -r 1.1.2.4 manual/intro.xml; cvs diff -u -r 1.1.2.3 -r 1.1.2.4 manual/starting.xml; cvs diff -u -r 1.1.2.3 -r 1.1.2.4 manual/sylpheed-claws-manual.xml; ) > 1.9.100cvs200.patchset
( cvs diff -u -r 1.11.2.7 -r 1.11.2.8 src/manual.c; cvs diff -u -r 1.1.2.2 -r 1.1.2.3 src/gtk/icon_legend.c; ) > 2.0.0cvs1.patchset
( cvs diff -u -r 1.1.2.3 -r 1.1.2.4 src/gtk/icon_legend.c; ) > 2.0.0cvs2.patchset
( cvs diff -u -r 1.1.2.11 -r 1.1.2.12 src/plugins/pgpcore/passphrase.c; cvs diff -u -r 1.382.2.230 -r 1.382.2.231 src/compose.c; ) > 2.0.0cvs3.patchset

View file

@ -11,7 +11,7 @@ MINOR_VERSION=0
MICRO_VERSION=0
INTERFACE_AGE=0
BINARY_AGE=0
EXTRA_VERSION=2
EXTRA_VERSION=3
EXTRA_RELEASE=
EXTRA_GTK2_VERSION=

View file

@ -7106,6 +7106,7 @@ static void compose_draft_cb(gpointer data, guint action, GtkWidget *widget)
target_locked = MSG_IS_LOCKED(compose->targetinfo->flags);
flag.perm_flags = target_locked?MSG_LOCKED:0;
}
flag.tmp_flags = MSG_DRAFT;
folder_item_scan(draft);
if ((msgnum = folder_item_add_msg(draft, tmp, &flag, TRUE)) < 0) {

View file

@ -197,7 +197,8 @@ try_again:
if (pass_ack) {
const gchar *entry_text;
entry_text = gtk_entry_get_text(GTK_ENTRY(pass_entry));
if (entry_text) /* Hmmm: Do we really need this? */
the_passphrase = g_locale_from_utf8(entry_text, -1, NULL, NULL, NULL);
if (the_passphrase == NULL)
the_passphrase = g_strdup (entry_text);
}
gtk_widget_destroy (window);