diff -Nru gpass-0.5.1+r7~stanray~quantal1/debian/bzr-builder.manifest gpass-0.5.1+r8/debian/bzr-builder.manifest --- gpass-0.5.1+r7~stanray~quantal1/debian/bzr-builder.manifest 2012-12-04 05:36:44.000000000 +0000 +++ gpass-0.5.1+r8/debian/bzr-builder.manifest 2013-10-07 21:03:17.000000000 +0000 @@ -1,2 +1,2 @@ -# bzr-builder format 0.3 deb-version {debupstream}+r7~stanray -lp:~stanray/gpass/gpass051 revid:stanraystan@rambler.ru-20121203215652-2pso2c86htu1x15k +# bzr-builder format 0.3 deb-version {debupstream}+r8-2~stanray +lp:~stanray/gpass/gpass051 revid:stanraystan@rambler.ru-20131007204714-wky4ob8c3buwibtq diff -Nru gpass-0.5.1+r7~stanray~quantal1/debian/changelog gpass-0.5.1+r8/debian/changelog --- gpass-0.5.1+r7~stanray~quantal1/debian/changelog 2012-12-04 05:36:44.000000000 +0000 +++ gpass-0.5.1+r8/debian/changelog 2013-10-07 21:03:17.000000000 +0000 @@ -1,8 +1,14 @@ -gpass (0.5.1+r7~stanray~quantal1) quantal; urgency=low +gpass (0.5.1+r8-2~stanray~ubuntu12.10.1) quantal; urgency=low * Auto build. - -- riu Tue, 04 Dec 2012 05:36:44 +0000 + -- riu Mon, 07 Oct 2013 21:03:17 +0000 + +gpass (0.5.1-4) precise; urgency=low + + * Unicode ID/password should be inserted properly + + -- riu Tue, 08 Oct 2013 00:45:54 +0400 gpass (0.5.1-3) precise; urgency=low diff -Nru gpass-0.5.1+r7~stanray~quantal1/src/window.c gpass-0.5.1+r8/src/window.c --- gpass-0.5.1+r7~stanray~quantal1/src/window.c 2012-12-04 05:36:43.000000000 +0000 +++ gpass-0.5.1+r8/src/window.c 2013-10-07 21:03:17.000000000 +0000 @@ -455,8 +455,12 @@ } if (p != NULL) { str = p->data; - gtk_selection_data_set(selection_data, GDK_TARGET_STRING, 8, - str, strlen(str)); + + gtk_selection_data_set_text(selection_data, str, strlen(str)); + +// gtk_selection_data_set(selection_data, GDK_TARGET_STRING, 8, +// str, strlen(str)); + if (p->next != NULL) { p->data = NULL; g_free(str);