Revision: 1763
http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=1763&view=rev
Author: frlan
Date: 2010-12-02 23:35:11 +0000 (Thu, 02 Dec 2010)
Log Message:
-----------
GeanySendMail: Added Evolution to example list on README. Thanks to Enrico for it
Modified Paths:
--------------
trunk/geany-plugins/geanysendmail/README
Modified: trunk/geany-plugins/geanysendmail/README
===================================================================
--- trunk/geany-plugins/geanysendmail/README 2010-12-02 23:34:51 UTC (rev 1762)
+++ trunk/geany-plugins/geanysendmail/README 2010-12-02 23:35:11 UTC (rev 1763)
@@ -78,6 +78,9 @@
Mozilla Thunderbird at Windows:
"C:\Program Files\Mozilla Thunderbird\thunderbird.exe" \
-compose to="%r",subject="%b",attachment="%f"
+Evolution:
+ evolution "mailto:?to=%r&attachment=%f"
+ evolution "mailto:?attachment=%f"
In theory it should also work together with tools like Microsoft
Outlook - Unfortunately the author wasn't able to bring it up
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
Revision: 1762
http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=1762&view=rev
Author: frlan
Date: 2010-12-02 23:34:51 +0000 (Thu, 02 Dec 2010)
Log Message:
-----------
GeanySendMail: Another small update of a string
Modified Paths:
--------------
trunk/geany-plugins/geanysendmail/src/geanysendmail.c
Modified: trunk/geany-plugins/geanysendmail/src/geanysendmail.c
===================================================================
--- trunk/geany-plugins/geanysendmail/src/geanysendmail.c 2010-12-02 23:34:28 UTC (rev 1761)
+++ trunk/geany-plugins/geanysendmail/src/geanysendmail.c 2010-12-02 23:34:51 UTC (rev 1762)
@@ -328,7 +328,7 @@
gtk_widget_show(pref_widgets.checkbox_icon_to_toolbar);
pref_widgets.checkbox_use_addressdialog = gtk_check_button_new_with_label(_
- ("Using dialog for entering email address of recipients"));
+ ("Use dialog for entering email address of recipients"));
gtk_button_set_focus_on_click(GTK_BUTTON(pref_widgets.checkbox_use_addressdialog), FALSE);
gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(pref_widgets.checkbox_use_addressdialog), use_address_dialog);
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
Revision: 1761
http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=1761&view=rev
Author: frlan
Date: 2010-12-02 23:34:28 +0000 (Thu, 02 Dec 2010)
Log Message:
-----------
GeanySendMail: Minor update of an string
Modified Paths:
--------------
trunk/geany-plugins/geanysendmail/src/geanysendmail.c
Modified: trunk/geany-plugins/geanysendmail/src/geanysendmail.c
===================================================================
--- trunk/geany-plugins/geanysendmail/src/geanysendmail.c 2010-11-29 17:44:34 UTC (rev 1760)
+++ trunk/geany-plugins/geanysendmail/src/geanysendmail.c 2010-12-02 23:34:28 UTC (rev 1761)
@@ -320,7 +320,7 @@
gtk_widget_show(label2);
gtk_misc_set_alignment(GTK_MISC(label2), 0, 0.5);
- pref_widgets.checkbox_icon_to_toolbar = gtk_check_button_new_with_label(_("Showing icon in toolbar"));
+ pref_widgets.checkbox_icon_to_toolbar = gtk_check_button_new_with_label(_("Show toolbar icon"));
ui_widget_set_tooltip_text(pref_widgets.checkbox_icon_to_toolbar,
_("Shows a icon in the toolbar to send file more easy."));
gtk_button_set_focus_on_click(GTK_BUTTON(pref_widgets.checkbox_icon_to_toolbar), FALSE);
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.