Revision: 30
http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=30&view=rev
Author: eht16
Date: 2008-05-20 09:52:47 -0700 (Tue, 20 May 2008)
Log Message:
-----------
Fix version string.
Modified Paths:
--------------
trunk/backupcopy/src/backupcopy.c
Modified: trunk/backupcopy/src/backupcopy.c
===================================================================
--- trunk/backupcopy/src/backupcopy.c 2008-05-20 16:50:11 UTC (rev 29)
+++ trunk/backupcopy/src/backupcopy.c 2008-05-20 16:52:47 UTC (rev 30)
@@ -49,7 +49,7 @@
PLUGIN_VERSION_CHECK(51)
PLUGIN_INFO(_("Backup Copy"), _("Creates a backup of the current file when saving"),
- "0.1", "Enrico Tröger")
+ VERSION, "Enrico Tröger")
static gchar *config_file;
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
Revision: 29
http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=29&view=rev
Author: eht16
Date: 2008-05-20 09:50:11 -0700 (Tue, 20 May 2008)
Log Message:
-----------
Update and reformat into reST text.
Modified Paths:
--------------
trunk/backupcopy/ChangeLog
trunk/backupcopy/README
Modified: trunk/backupcopy/ChangeLog
===================================================================
--- trunk/backupcopy/ChangeLog 2008-05-20 16:38:30 UTC (rev 28)
+++ trunk/backupcopy/ChangeLog 2008-05-20 16:50:11 UTC (rev 29)
@@ -8,6 +8,8 @@
Explicitly depend on Geany >= 0.15.
* makefile.win32:
Make Windows Makefile working.
+ * README:
+ Update and reformat into reST text.
2008-04-25 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de>
Modified: trunk/backupcopy/README
===================================================================
--- trunk/backupcopy/README 2008-05-20 16:38:30 UTC (rev 28)
+++ trunk/backupcopy/README 2008-05-20 16:50:11 UTC (rev 29)
@@ -1,15 +1,40 @@
Backup Copy Plugin
-------------------
+==================
About
-----
This plugin creates a backup copy of the current file in Geany when it is
saved. You can specify the directory where the backup copy is saved and
-you can cpnfigure the automatically added extension in the configure dialog
+you can configure the automatically added extension in the configure dialog
in Geany's plugin manager.
+Downloads
+---------
+
+Backup Copy 0.1
+^^^^^^^^^^^^^^^
+
+http://geany-plugins.sourceforge.net/backupcopy/backupcopy-0.1.tar.bz2
+
+http://geany-plugins.sourceforge.net/backupcopy/backupcopy-0.1.tar.bz2.sig (GPG-Signature)
+
+or
+
+http://geany-plugins.sourceforge.net/backupcopy/backupcopy-0.1.tar.gz
+
+http://geany-plugins.sourceforge.net/backupcopy/backupcopy-0.1.tar.gz.sig (GPG-Signature)
+
+
+Development Code
+^^^^^^^^^^^^^^^^
+
+Get the code from:
+
+ svn checkout http://geany-plugins.svn.sourceforge.net/svnroot/geany-plugins/trunk/backup…
+
+
Requirements
------------
For compiling the plugin yourself, you will need the GTK (>= 2.6.0) libraries
@@ -17,10 +42,12 @@
files, such as Pango, Glib and ATK. All these files are available at
http://www.gtk.org.
-And obviously, you will need have Geany installed. If you have Geany installed
+And obviously, you will need have Geany (>= 0.15) installed. If you have Geany installed
from the sources, you should be ready to go.
If you used a preprared package e.g. from your distribution you probably need
to install an additional package, this might be called geany-dev or geany-devel.
+Please note that in order to compile and use this plugin, you need a current SVN
+version of Geany, at least SVN >= r2604.
Furthermore you need, of course, a C compiler and the Make tool.
The GNU versions of these tools are recommended.
@@ -49,7 +76,7 @@
License
-------
-copyonsave is distributed under the terms of the GNU General Public License
+backupcopy is distributed under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2 of the
License, or (at your option) any later version. A copy of this license
can be found in the file COPYING included with the source code of this
@@ -59,3 +86,4 @@
Ideas, questions, patches and bug reports
-----------------------------------------
Send it to me at enrico(dot)troeger(at)uvena(dot)de
+or report them at http://sourceforge.net/tracker/?group_id=222729.
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
Revision: 26
http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=26&view=rev
Author: eht16
Date: 2008-05-20 08:45:12 -0700 (Tue, 20 May 2008)
Log Message:
-----------
Explicitly depend on Geany >= 0.15.
Modified Paths:
--------------
trunk/spellcheck/ChangeLog
trunk/spellcheck/configure.in
Modified: trunk/spellcheck/ChangeLog
===================================================================
--- trunk/spellcheck/ChangeLog 2008-05-20 15:41:15 UTC (rev 25)
+++ trunk/spellcheck/ChangeLog 2008-05-20 15:45:12 UTC (rev 26)
@@ -6,6 +6,10 @@
(e.g. on Windows).
Detect the Aspell installation prefix on Windows and use it to find
installed dictionaries.
+ * makefile.win32:
+ Make Windows Makefile working.
+ * configure.in:
+ Explicitly depend on Geany >= 0.15.
2008-05-16 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de>
Modified: trunk/spellcheck/configure.in
===================================================================
--- trunk/spellcheck/configure.in 2008-05-20 15:41:15 UTC (rev 25)
+++ trunk/spellcheck/configure.in 2008-05-20 15:45:12 UTC (rev 26)
@@ -15,7 +15,7 @@
AC_PROG_INSTALL
# checking for Geany
-PKG_CHECK_MODULES(GEANY, [geany])
+PKG_CHECK_MODULES(GEANY, [geany >= 0.15])
AC_SUBST(GTK_CFLAGS)
AC_SUBST(GTK_LIBS)
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
Revision: 22
http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=22&view=rev
Author: eht16
Date: 2008-05-16 05:52:26 -0700 (Fri, 16 May 2008)
Log Message:
-----------
Fix possible crashes on Windows when working on unsaved documents (patch by Nick, thanks :)).
Modified Paths:
--------------
trunk/spellcheck/ChangeLog
trunk/spellcheck/src/spellcheck.c
Modified: trunk/spellcheck/ChangeLog
===================================================================
--- trunk/spellcheck/ChangeLog 2008-05-16 12:33:39 UTC (rev 21)
+++ trunk/spellcheck/ChangeLog 2008-05-16 12:52:26 UTC (rev 22)
@@ -6,6 +6,8 @@
location of other files like translations for clarity.
* src/spellcheck.c:
Fix a big memory leak and don't use an unneeded array.
+ Fix possible crashes on Windows when working on unsaved documents
+ (patch by Nick, thanks :)).
2008-05-15 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de>
Modified: trunk/spellcheck/src/spellcheck.c
===================================================================
--- trunk/spellcheck/src/spellcheck.c 2008-05-16 12:33:39 UTC (rev 21)
+++ trunk/spellcheck/src/spellcheck.c 2008-05-16 12:52:26 UTC (rev 22)
@@ -110,14 +110,14 @@
p_msgwindow->msg_add(COLOR_BLUE, -1, -1,
_("Checking file \"%s\" (lines %d to %d):"),
- doc_list[idx].file_name, first_line + 1, last_line + 1);
+ DOC_FILENAME(idx), first_line + 1, last_line + 1);
}
else
{
first_line = 0;
last_line = p_sci->get_line_count(doc_list[idx].sci);
p_msgwindow->msg_add(COLOR_BLUE, -1, -1, _("Checking file \"%s\":"),
- doc_list[idx].file_name);
+ DOC_FILENAME(idx));
}
/* Set up the document checker */
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.