SF.net SVN: geany-plugins:[526] trunk/spellcheck

eht16 at users.sourceforge.net eht16 at xxxxx
Thu Mar 5 13:27:18 UTC 2009


Revision: 526
          http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=526&view=rev
Author:   eht16
Date:     2009-03-05 13:27:17 +0000 (Thu, 05 Mar 2009)

Log Message:
-----------
New release: Spell Check 0.3.

Modified Paths:
--------------
    trunk/spellcheck/ChangeLog
    trunk/spellcheck/NEWS
    trunk/spellcheck/README
    trunk/spellcheck/configure.in
    trunk/spellcheck/src/scplugin.c

Modified: trunk/spellcheck/ChangeLog
===================================================================
--- trunk/spellcheck/ChangeLog	2009-03-05 13:26:29 UTC (rev 525)
+++ trunk/spellcheck/ChangeLog	2009-03-05 13:27:17 UTC (rev 526)
@@ -1,3 +1,8 @@
+2009-03-05  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
+
+ * New release: Spell Check 0.3.
+
+
 2009-02-27  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
 
  * src/gui.c, src/gui.h, src/scplugin.c, src/scplugin.h, src/speller.c,

Modified: trunk/spellcheck/NEWS
===================================================================
--- trunk/spellcheck/NEWS	2009-03-05 13:26:29 UTC (rev 525)
+++ trunk/spellcheck/NEWS	2009-03-05 13:27:17 UTC (rev 526)
@@ -1,3 +1,23 @@
+Spell Check 0.3 (March 05, 2009)
+
+    * Reduce the delay to half a second to make checking while typing
+      smoother.
+    * Display a pulsing progressbar to show progress while checking
+      large documents.
+    * When replacing a misspelled word with a suggestion, add this
+      replacement to the spell checker to remember it in further checks.
+    * Remove the limit of showing a maximum of 10 suggestions, instead
+      add sub menus for more suggestions if available, similar to what
+      'gtkspell' does.
+    * When using 'Ignore All', add the word to ignore to the enchant
+      session list to really ignore it for further checks, too.
+    * Check the Scintilla lexing style for the word to check and
+      skip any further checks if the word is not a comment, string
+      or has any other style which belongs to the filetype language of
+      the current document. This makes the whole plugin much more useful,
+      eliminates many false positives and increases speed a lot.
+
+
 Spell Check 0.2 (October 29, 2008)
 
     * Use Enchant as spell check engine instead of Aspell.
@@ -3,16 +23,16 @@
 
     * When adding words to the dictionary, remove all indicators on
-	  these words.
+      these words.
     * Add keybinding to toggle the 'Check while typing' setting.
     * Add toolbar button to quickly enable/disable the
-	  'check while typing' setting (#2062239).
+     'check while typing' setting (#2062239).
     * Do not check numbers and words starting with digits.
     * Add option to enable/disable use of the messages window.
     * Provide a submenu to the editor menu with suggestions for
-	  misspelled words and allow to add or ignore the word to the
-	  personal dictionary.
+      misspelled words and allow to add or ignore the word to the
+      personal dictionary.
     * Highlight only misspelled instead of whole the line.
     * Add Tools->Spellcheck sub menu to easily change the language to
-	  use for spell checking.
+      use for spell checking.
     * Add "check as you type" feature.
 

Modified: trunk/spellcheck/README
===================================================================
--- trunk/spellcheck/README	2009-03-05 13:26:29 UTC (rev 525)
+++ trunk/spellcheck/README	2009-03-05 13:27:17 UTC (rev 526)
@@ -21,18 +21,18 @@
 Downloads
 ---------
 
-Spell Check 0.2
+Spell Check 0.3
 ^^^^^^^^^^^^^^^
 
-http://plugins.geany.org/spellcheck/spellcheck-0.2.tar.bz2
+http://plugins.geany.org/spellcheck/spellcheck-0.3.tar.bz2
 
-http://plugins.geany.org/spellcheck/spellcheck-0.2.tar.bz2.sig (GPG-Signature)
+http://plugins.geany.org/spellcheck/spellcheck-0.3.tar.bz2.sig (GPG-Signature)
 
 or
 
-http://plugins.geany.org/spellcheck/spellcheck-0.2.tar.gz
+http://plugins.geany.org/spellcheck/spellcheck-0.3.tar.gz
 
-http://plugins.geany.org/spellcheck/spellcheck-0.2.tar.gz.sig (GPG-Signature)
+http://plugins.geany.org/spellcheck/spellcheck-0.3.tar.gz.sig (GPG-Signature)
 
 
 Development Code
@@ -45,7 +45,7 @@
 
 Requirements
 ------------
-For compiling the plugin yourself, you will need the GTK (>= 2.6.0) libraries
+For compiling the plugin yourself, you will need the GTK (>= 2.8.0) libraries
 and header files. You will also need its dependency libraries and header
 files, such as Pango, Glib and ATK. All these files are available at
 http://www.gtk.org.
@@ -56,7 +56,7 @@
 from the sources, you should be ready to go.
 If you used a prepared 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 Geany 0.15
+Please note that in order to compile and use this plugin, you need Geany 0.16
 or later.
 
 Furthermore you need, of course, a C compiler and the Make tool.

Modified: trunk/spellcheck/configure.in
===================================================================
--- trunk/spellcheck/configure.in	2009-03-05 13:26:29 UTC (rev 525)
+++ trunk/spellcheck/configure.in	2009-03-05 13:27:17 UTC (rev 526)
@@ -15,7 +15,7 @@
 AC_PROG_INSTALL
 
 # checking for Geany
-PKG_CHECK_MODULES(GEANY, [geany >= 0.15])
+PKG_CHECK_MODULES(GEANY, [geany >= 0.16])
 AC_SUBST(GEANY_CFLAGS)
 AC_SUBST(GEANY_LIBS)
 

Modified: trunk/spellcheck/src/scplugin.c
===================================================================
--- trunk/spellcheck/src/scplugin.c	2009-03-05 13:26:29 UTC (rev 525)
+++ trunk/spellcheck/src/scplugin.c	2009-03-05 13:27:17 UTC (rev 526)
@@ -56,7 +56,7 @@
 
 
 PLUGIN_VERSION_CHECK(132)
-PLUGIN_SET_INFO(_("Spell Check"), _("Checks the spelling of the current document."), "0.2",
+PLUGIN_SET_INFO(_("Spell Check"), _("Checks the spelling of the current document."), "0.3",
 			_("The Geany developer team"))
 
 


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.



More information about the Plugins-Commits mailing list