Branch: refs/heads/master
Author: Frank Lanitz <frank(a)frank.uvena.de>
Committer: Frank Lanitz <frank(a)frank.uvena.de>
Date: Sun, 28 Apr 2019 10:37:27 UTC
Commit: d398d94b1c5aa5f62fce518cdeedc576ecd4a577
https://github.com/geany/geany-plugins/commit/d398d94b1c5aa5f62fce518cdeedc…
Log Message:
-----------
Update NEWS for 1.35
Modified Paths:
--------------
NEWS
Modified: NEWS
70 lines changed, 68 insertions(+), 2 deletions(-)
===================================================================
@@ -1,7 +1,73 @@
-Geany Plugins 1.35 (not yet released)
+Geany Plugins 1.35 (2019-04-28)
- No changes by now.
+ General:
+ * Windows: Install dependency translations only if selected
+ * Build: Don't rely on a pkg-config output formatting detail
+ (Fix for Geany GTK version check on OpenBSD 6.4)
+
+ Addons:
+ * Update to use new plugin API (PR #699)
+
+ Autoclose:
+ * Update to use new plugin API (PR #700)
+
+ Automark:
+ * Update to use new plugin API (PR #701)
+
+ Codenav:
+ * Update to use new plugin API (PR #702)
+
+ Debugger:
+ * Update to use new plugin API (PR #704)
+ * Fix a compiler warning (PR #816)
+
+ Defineformat:
+ * Update to use new plugin API (PR #705)
+
+ DevHelp:
+ * Update to use new plugin API (PR #707)
+
+ GeanyCTags
+ * Update to use new plugin API (PR #708)
+
+ GeanyExtraSel
+ * Undo workaround for rectange selection cancel bug
+ (Fixed with 1.34+ Geany core release)(PR #806)
+
+ GeanyLua:
+ * Fix build warnings (PR #778)
+ * Update to match latest Geany's Scintilla API (PR #814)
+ GeanyNumberedBookmarks:
+ * Fix crash on re-unload (PR #804)
+
+ GeanyVC:
+ * Add a commit message history (PR #836)
+
+ GitChangebar:
+ * Fix compatibility with libgit2 0.28 API (PR #821)
+
+ Project Organizer:
+ * Add file operations to Project Organizer (PR #783)
+
+ Scope:
+ * Correct height of "Environment" GtkTextView (PR #830)
+ * Show error message if no executable is set (PR #831)
+ * Fix "Modify" menu item being active without selection (PR #826)
+
+ Spellcheck:
+ * Improve documentation where to put translation
+ dictionaries (Issue #1627)
+ * Update README (PR #812)
+
+ Treebrowser:
+ * Use xdg-open for external open command (PR #813)
+
+ Vimmode:
+ * Fix repeated commands like 10dd not working (PR #820)
+
+ Internationalization:
+ * Updated translations: de, es, pt
Geany Plugins 1.34 (2018-12-16)
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).
Branch: refs/heads/master
Author: Enrico Tröger <enrico.troeger(a)uvena.de>
Committer: Enrico Tröger <enrico.troeger(a)uvena.de>
Date: Thu, 25 Apr 2019 19:25:22 UTC
Commit: 37b1ebf3826b95a19281c9047b0de617a51b10ab
https://github.com/geany/geany-plugins/commit/37b1ebf3826b95a19281c9047b0de…
Log Message:
-----------
SpellCheck: Improve custom dictionary configuration documentation
As discussed in #1627.
Modified Paths:
--------------
spellcheck/README
Modified: spellcheck/README
27 lines changed, 24 insertions(+), 3 deletions(-)
===================================================================
@@ -50,17 +50,38 @@ Instructions:
2. The downloaded archive with extensions like .xpi or .oxt is actually a ZIP
archive, so extract it as usual (e.g. with 7-Zip or another ZIP
unpacker). Extract the contents into a folder of your choice,
- e.g. C:\dictionaries
-3. Then open to the Spell Check plugin preferences dialog in Geany and
+ e.g. `C:\\dictionaries`
+3. If the extracted dictionary files contain hyphens ("-"), replace them
+ with underscores
+4. Then open to the Spell Check plugin preferences dialog in Geany and
choose the folder you just created. You may need to restart Geany
and then the installed dictionaries should be available
Note: if you are using Enchant 2.0 or later (the library used by the SpellCheck
plugin), you need to move the dictionaries into a subfolder called "hunspell"
-in the directory you created above.
+in the directory you created above. The directory to be configured in the
+plugin's configuration dialog still is the directory above that folder.
To check which Enchant version you are using, check "Help->Debug Messages" in
Geany and find the appropriate log message telling about the Enchant version.
+Example::
+
+ C:\
+ ├── dictionaries
+ │ └── hunspell
+ │ ├── ca_ES.aff
+ │ ├── ca_ES.dic
+ │ ├── cs.dic
+ │ ├── cs.dic
+ │ ├── de_DE_frami.aff
+ │ ├── de_DE_frami.dic
+ │ ├── en_GB.aff
+ │ └── en_GB.dic
+ └── ...
+
+Then in the plugin configuration dialog set the dictionary for
+dictionary files to: `C:\\dictionaries`.
+
Known issues
------------
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).