Revision: 190
http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=190&view=rev
Author: frlan
Date: 2008-09-29 21:41:21 +0000 (Mon, 29 Sep 2008)
Log Message:
-----------
Fixing a little encoding issue at GPL text
Modified Paths:
--------------
trunk/geanylatex/COPYING
trunk/geanysendmail/COPYING
trunk/geanyvc/COPYING
Modified: trunk/geanylatex/COPYING
===================================================================
--- trunk/geanylatex/COPYING 2008-09-29 21:39:07 UTC (rev 189)
+++ trunk/geanylatex/COPYING 2008-09-29 21:41:21 UTC (rev 190)
@@ -55,7 +55,7 @@
The precise terms and conditions for copying, distribution and
modification follow.
-
+
GNU GENERAL PUBLIC LICENSE
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
@@ -110,7 +110,7 @@
License. (Exception: if the Program itself is interactive but
does not normally print such an announcement, your work based on
the Program is not required to print an announcement.)
-
+
These requirements apply to the modified work as a whole. If
identifiable sections of that work are not derived from the Program,
and can be reasonably considered independent and separate works in
@@ -168,7 +168,7 @@
access to copy the source code from the same place counts as
distribution of the source code, even though third parties are not
compelled to copy the source along with the object code.
-
+
4. You may not copy, modify, sublicense, or distribute the Program
except as expressly provided under this License. Any attempt
otherwise to copy, modify, sublicense or distribute the Program is
@@ -225,7 +225,7 @@
This section is intended to make thoroughly clear what is believed to
be a consequence of the rest of this License.
-
+
8. If the distribution and/or use of the Program is restricted in
certain countries either by patents or by copyrighted interfaces, the
original copyright holder who places the Program under this License
@@ -278,7 +278,7 @@
POSSIBILITY OF SUCH DAMAGES.
END OF TERMS AND CONDITIONS
-
+
How to Apply These Terms to Your New Programs
If you develop a new program, and you want it to be of the greatest
Modified: trunk/geanysendmail/COPYING
===================================================================
--- trunk/geanysendmail/COPYING 2008-09-29 21:39:07 UTC (rev 189)
+++ trunk/geanysendmail/COPYING 2008-09-29 21:41:21 UTC (rev 190)
@@ -55,7 +55,7 @@
The precise terms and conditions for copying, distribution and
modification follow.
-
+
GNU GENERAL PUBLIC LICENSE
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
@@ -110,7 +110,7 @@
License. (Exception: if the Program itself is interactive but
does not normally print such an announcement, your work based on
the Program is not required to print an announcement.)
-
+
These requirements apply to the modified work as a whole. If
identifiable sections of that work are not derived from the Program,
and can be reasonably considered independent and separate works in
@@ -168,7 +168,7 @@
access to copy the source code from the same place counts as
distribution of the source code, even though third parties are not
compelled to copy the source along with the object code.
-
+
4. You may not copy, modify, sublicense, or distribute the Program
except as expressly provided under this License. Any attempt
otherwise to copy, modify, sublicense or distribute the Program is
@@ -225,7 +225,7 @@
This section is intended to make thoroughly clear what is believed to
be a consequence of the rest of this License.
-
+
8. If the distribution and/or use of the Program is restricted in
certain countries either by patents or by copyrighted interfaces, the
original copyright holder who places the Program under this License
@@ -278,7 +278,7 @@
POSSIBILITY OF SUCH DAMAGES.
END OF TERMS AND CONDITIONS
-
+
How to Apply These Terms to Your New Programs
If you develop a new program, and you want it to be of the greatest
Modified: trunk/geanyvc/COPYING
===================================================================
--- trunk/geanyvc/COPYING 2008-09-29 21:39:07 UTC (rev 189)
+++ trunk/geanyvc/COPYING 2008-09-29 21:41:21 UTC (rev 190)
@@ -55,7 +55,7 @@
The precise terms and conditions for copying, distribution and
modification follow.
-
+
GNU GENERAL PUBLIC LICENSE
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
@@ -110,7 +110,7 @@
License. (Exception: if the Program itself is interactive but
does not normally print such an announcement, your work based on
the Program is not required to print an announcement.)
-
+
These requirements apply to the modified work as a whole. If
identifiable sections of that work are not derived from the Program,
and can be reasonably considered independent and separate works in
@@ -168,7 +168,7 @@
access to copy the source code from the same place counts as
distribution of the source code, even though third parties are not
compelled to copy the source along with the object code.
-
+
4. You may not copy, modify, sublicense, or distribute the Program
except as expressly provided under this License. Any attempt
otherwise to copy, modify, sublicense or distribute the Program is
@@ -225,7 +225,7 @@
This section is intended to make thoroughly clear what is believed to
be a consequence of the rest of this License.
-
+
8. If the distribution and/or use of the Program is restricted in
certain countries either by patents or by copyrighted interfaces, the
original copyright holder who places the Program under this License
@@ -278,7 +278,7 @@
POSSIBILITY OF SUCH DAMAGES.
END OF TERMS AND CONDITIONS
-
+
How to Apply These Terms to Your New Programs
If you develop a new program, and you want it to be of the greatest
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
Revision: 189
http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=189&view=rev
Author: frlan
Date: 2008-09-29 21:39:07 +0000 (Mon, 29 Sep 2008)
Log Message:
-----------
GeanySendMail: Fixed a possible segfault on shout down of plugin
Modified Paths:
--------------
trunk/geanysendmail/src/geanysendmail.c
Modified: trunk/geanysendmail/src/geanysendmail.c
===================================================================
--- trunk/geanysendmail/src/geanysendmail.c 2008-09-29 21:37:18 UTC (rev 188)
+++ trunk/geanysendmail/src/geanysendmail.c 2008-09-29 21:39:07 UTC (rev 189)
@@ -459,6 +459,7 @@
gtk_widget_destroy(plugin_fields->menu_item);
cleanup_icon();
g_free(mailer);
- g_free(address);
+ if (address != NULL)
+ g_free(address);
g_free(config_file);
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
Revision: 188
http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=188&view=rev
Author: frlan
Date: 2008-09-29 21:37:18 +0000 (Mon, 29 Sep 2008)
Log Message:
-----------
GeanySendMail: Make configuration example copyable
Modified Paths:
--------------
trunk/geanysendmail/ChangeLog
trunk/geanysendmail/src/geanysendmail.c
Modified: trunk/geanysendmail/ChangeLog
===================================================================
--- trunk/geanysendmail/ChangeLog 2008-09-26 19:49:20 UTC (rev 187)
+++ trunk/geanysendmail/ChangeLog 2008-09-29 21:37:18 UTC (rev 188)
@@ -1,3 +1,8 @@
+2008-09-28 Frank Lanitz <frank(at)frank(dot)uvena(dot)de>
+
+ * Make configuration example copyable.
+
+
2008-09-25 Frank Lanitz <frank(at)frank(dot)uvena(dot)de>
* Added a patch by Timothy Boronczyk to support creating a mail with
Modified: trunk/geanysendmail/src/geanysendmail.c
===================================================================
--- trunk/geanysendmail/src/geanysendmail.c 2008-09-26 19:49:20 UTC (rev 187)
+++ trunk/geanysendmail/src/geanysendmail.c 2008-09-29 21:37:18 UTC (rev 188)
@@ -360,6 +360,7 @@
\n\t\%r will be replaced the recipient's email address. \
\n\tAs an example you can use:\
\n\tsylpheed --attach \%f --compose \%r"));
+ gtk_label_set_selectable(GTK_LABEL(label2), TRUE);
gtk_widget_show(label2);
gtk_misc_set_alignment(GTK_MISC(label2), 0, 0.5);
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
Revision: 187
http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=187&view=rev
Author: frlan
Date: 2008-09-26 19:49:20 +0000 (Fri, 26 Sep 2008)
Log Message:
-----------
GeanySendMail: Added a check to prevent from issues when no address input dialog was shown.
Modified Paths:
--------------
trunk/geanysendmail/src/geanysendmail.c
Modified: trunk/geanysendmail/src/geanysendmail.c
===================================================================
--- trunk/geanysendmail/src/geanysendmail.c 2008-09-26 19:43:36 UTC (rev 186)
+++ trunk/geanysendmail/src/geanysendmail.c 2008-09-26 19:49:20 UTC (rev 187)
@@ -200,7 +200,8 @@
g_free(locale_filename);
g_free(command);
- gtk_widget_destroy(dialog);
+ if (dialog != NULL)
+ gtk_widget_destroy(dialog);
}
else
{
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
Revision: 183
http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=183&view=rev
Author: frlan
Date: 2008-09-26 19:17:55 +0000 (Fri, 26 Sep 2008)
Log Message:
-----------
GeanySendMail: Fixes a typo
Modified Paths:
--------------
trunk/geanysendmail/src/geanysendmail.c
Modified: trunk/geanysendmail/src/geanysendmail.c
===================================================================
--- trunk/geanysendmail/src/geanysendmail.c 2008-09-26 19:02:10 UTC (rev 182)
+++ trunk/geanysendmail/src/geanysendmail.c 2008-09-26 19:17:55 UTC (rev 183)
@@ -142,7 +142,7 @@
}
else
{
- p_ui->set_statusbar(FALSE, _("File have to be saved before sending."));
+ p_ui->set_statusbar(FALSE, _("File has to be saved before sending."));
}
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.