List:       jedit-announce
Subject:    jEdit-announce Digest, Vol 18, Issue 1
From:       jedit-announce-request () lists ! sourceforge ! net
Date:       2013-08-30 17:05:38
Message-ID: mailman.188056.1377882338.12996.jedit-announce () lists ! sourceforge ! net
[Download RAW message or body]

Send jEdit-announce mailing list submissions to
	jedit-announce@lists.sourceforge.net

To subscribe or unsubscribe via the World Wide Web, visit
	https://lists.sourceforge.net/lists/listinfo/jedit-announce
or, via email, send a message with subject or body 'help' to
	jedit-announce-request@lists.sourceforge.net

You can reach the person managing the list at
	jedit-announce-owner@lists.sourceforge.net

When replying, please edit your Subject line so it is more specific
than "Re: Contents of jEdit-announce digest..."


Today's Topics:

   1. jEdit 5.1pre1 is out! (Vampire)
   2. jEdit 5.1.0 is out! (Vampire)
   3. Plugin Release Announcement (2013-04-01 -	2013-08-30) (Eric Berry)


----------------------------------------------------------------------

Message: 1
Date: Fri, 24 May 2013 01:26:48 +0200
From: Vampire <Vampire@jEdit.org>
Subject: [ jEdit-announce ] jEdit 5.1pre1 is out!
To: jEdit Announce Mailinglist <jedit-announce@lists.sourceforge.net>
Message-ID: <519EA5B8.5030309@jEdit.org>
Content-Type: text/plain; charset=UTF-8

Hello everyone,

I proudly present jEdit 5.1pre1, the first preview development release of the  5.1 \
series of jEdit.

Detailed changes can as always be found in the Change Log attached in the end of this \
email, but here are some of the major features of the upcoming 5.1.0 version:

    * WorkThreads have been rewritten into Tasks, making it possible to completely \
                remove the old
      "I/O Progress Monitor" and the wasteful space it took up in the Task Monitor. \
Old deprecated  classes related to WorkThread and WorkThreadPool have been removed.
    * New Plugin Manager option to check for and disable obsolete plugins. Enabled by \
                default,
      this will ensure that old unsupported plugins do not interfere with the running \
operation of jEdit.



Volunteers are always welcome to contribute to the future of jEdit:
http://www.jedit.org/index.php?page=devel


That being said, here is the download link:
http://www.jedit.org/index.php?page=download


FYI, merge requests for the 5.1 series (fix done, but waiting for a review) can be \
found at: https://sourceforge.net/tracker/?group_id=588&atid=1235750&status=1&artgroup=6846241


Have fun with the new release.

Best Regards
Bj?rn "Vampire" Kautler



jEdit 5.1 version history
       (changes since jEdit 5.0.0)
> encoding=UTF-8:

{{{ Version 5.1pre1

Thanks to Bj?rn "Vampire" Kautler, Jarek Czekalski, Thomas Meyer,
Matthieu Casanova, cnvince, Alan Ezust, Malathi, Vladimir Avdonin, Eric Le Lay,
Darien Brown, Steve snarum-micron, EdorFaus, Brian Clapper, Uwe St?hr,
Marc H?fner, stone1343, Richard The, Dale Anson, Benjamin Gmurczyk,
Makarius, Marco Hunsicker, and Maik Nijhuis for contributing to this release.

{{{ Bug fixes

- The contextInsensitive flag of the edit mode was not used at the first use
  of the edit mode (Matthieu Casanova)

- Fix mode loading for temporary buffers (Thomas Meyer)

- Fix #3598661 - Don't allow negative values in the general option pane.
  (Thomas Meyer)

- Fix #3596215 - NPE from docking layout save/loads when started with
  -nosettings. (Alan Ezust)

- Fix #3597101, #3596600 - Bad error handling when an invalid path is entered
  into the VFS Browser inputs. (Patch# 3602318 Benjamin Gmurczyk)

- Bug no. #3590540 revealed a performance problem in the ChunkCache, because
  every scroll action resulted in a tokenization of the really long line, which
  takes a considerable time and makes jEdit unusable.
  Fix is to always keep all Chunks of the tokenization process and use it as an
  buffer in the ChunkCache class.
  Tokenization of the physical line still happens for every insertion or
  deletion of the Buffer. Tokenization also happens when the cursor enters the
  physical line, as only the Chunks from the current physical line are keeped
  in the ChunkCache.
  (#3590540 Thomas Meyer)

- Bug no. #3590540 produced a soft wrap for a single physical line that was
  greater than 16383 screen lines. Increased this limit to 65535 in
  the ScreenLineManager (#3590540 Thomas Meyer)

- Fixed Insert_Selection macro when the selection is empty (#3596616
  Matthieu Casanova)

- fixed bug when pressing down if the is no selection (#3599630
  Matthieu Casanova)

- Fixed macros cut lines and copy lines when the buffer is empty (#3596612
  Matthieu Casanova)

- Fixed negative values used in recent file history count (#3598661 Matthieu
  Casanova)

- Fixed Run script macro when the file is empty (#3596609 Matthieu
  Casanova)

- Fixed Get_Class_Name macro when the file is empty (#3596752 Matthieu
  Casanova)

- Re-added missing OS/2 support code. (#3589903 Alan Ezust)

- Added missing localization string:
  options.plugin-manager.list-cache.minutes (#3574373 Matthieu Casanova)

- Fix AutoSave exception after multiline cut (#3017650 Thomas Meyer)

- Undomanager: Don't compact significant edits (#patch 3560615 Thomas Meyer)

- Fixed undo after replace all with beanshell only first occurance
  (#3551910 Thomas Meyer)

- Search all buffers now observes current BufferSet scope and can be restricted
  to the current view's buffers when scope is not global. (#3423442 Alan Ezust)

- Fix File status checking after buffer switch (#1871440 Alan Ezust)

- Undo restores selection state in simple cases (deletions, replaces
  on simple range selections). (patch #1570553 Maik Nijhuis, Thomas Meyer,
  Jarek Czekalski)

- Filter not synchronizing in search dialog when
  "All buffers" is selected. (#1646584, patch #3549905 Eric Le Lay)

- Fixed VFS session not ended in VFS.copy() api (#3522406 Matthieu Casanova)

- Use of a scrollable list for delete dialog confirmation
  (#2911520 Matthieu Casanova)

- Fix selecting mode based on exact filename match. (#3562935 Dale Anson)

- Fix old modes/catalog entries clutter properties. (#3533751 Eric Le Lay)
  [Merged into 5.0.x]

- When checking a box to select a plugin to install, the description was
  appearing and immediately disappearing. (#3398605 Dale Anson)

- Fix Exception when clicking Find orphan when disabled plugins (#2940864 Eric
  Le Lay)

}}}
{{{ API Changes

- TaskManager: Refactor io task - New class IoTask, a subclass of Task
  Remove the code of the io special case in TaskManager (Thomas Meyer)

- Make SearchMatcher interrupttible (Thomas Meyer)
  1.) API change: let SearchMatcher.nextMatch() throw InterruptedException
  2.) BoyerMooreSearchMatcher: Switch to the new API and react on thread
      interruption

- HyperSearch: Make search interruptible even when in VFS.listFiles():
  New method TaskManager.cancelTasksByClass(): Interrupt all currently running
  Tasks of the given type. (Thomas Meyer)

- Deprecated extra overloads of IOUtilities.closeQuietly() in favor of
  using Java5 closeQuietly(Closeable) instead. (Alan Ezust)

- New class: OneTimeMigrationStep, for adding property migration services
  (used by fix for #1871440 Alan Ezust)

- New method VFSBrowser.getLastVisitedPath() (Jarek Czekalski)

- New method IOUtilities.closeQuietly(ObjectInput) (Matthieu Casanova)

- New method IOUtilities.closeQuietly(ObjectOutput) (Matthieu Casanova)

- New method GUIUtilities.setAutoMnemonic(AbstractButton) (Jarek Czekalski)

- New method: View.getBuffers(), aware of bufferset scope. (Alan Ezust)

- Removed View.setBuffer(Buffer, boolean, boolean) and
  View.setBuffer(Buffer, boolean): methods that had disableFileCheck flag in
  since View no longer checks file status there. (#1871440 Alan Ezust)

- AllBufferSet.AllBufferSet(String glob, View v) - additional required
  argument for View in constructor argument list. (#3423442 Alan Ezust)

- Removed classes: IOProgressMonitor, WorkRequest, WorkThreadPool,
  WorkThreadProgressListener (Thomas Meyer)

- Removed VFSManager.getIOThreadPool() (Thomas Meyer)

- Converted BufferIORequest, VFSFileChooserDialog.GetFileTypeRequest and
  TextAreaTransferHandler.DraggedURLLoader to a Task (Thomas Meyer)

- Converted TaskManager to an enum singelton (Thomas Meyer)

- Changed VFSManager.runInWorkThread(Runnable) to
  VFSManager.runInWorkThread(Task) and made it accept only IO tasks

- New class: AwtRunnableQueue (Thomas Meyer)

}}}
{{{ Editing

- Fixed bug in ruby multiline comments (Patch#3605738 fixing bug #3605168
  Richard The)

- Fixed shellscript highlight (patch #3602461 fixing bug #3594428 Richard The)

- Updated lua mode file (patch #2126692 stone1343)

- Macros move lines up/down now keep the current selection (feature #3600082
  Matthieu Casanova)

- Updated nsis2 mode (#3586538 Uwe St?hr)

- There is now a new encoding Native2ASCII which collapses unicode
  escapes in ISO-8859-1 files on read and expands characters that cannot be
  encoded with ASCII as unicode escapes on write. This encoding is the one Java
  properties files should be in. (Bj?rn "Vampire" Kautler)

- Highlight entity references in xml attributes (#3559971 Eric Le Lay)

- Added highlight of chapter title in rfc edit mode (Matthieu Casanova)

- Fixed shellscript do escape single quote with backslash
  (#3557453 Matthieu Casanova)

- Updated ColdFusion mode (#3518536, #3561048 Darien Brown)

- Updated Verilog mode (#3536967 Steve snarum-micron)

- Updated HTML mode (#3594526 Marc H?fner)

- Updated CSS mode (#3595041 Marc H?fner)

- Updated Coffeescript mode (#3595105 Marc H?fner)

- new PostgreSQL mode (feature #2833378 Thiemo Kellner, Eric Le Lay)

}}}
{{{ UI

- Better information in the plugin manager when loading plugin list
  (Matthieu Casanova)

- Initial view hidden by other windows at startup (#3610089)

- Remove empty root node in OptionGroupPane
  (#3608324, #3608327: Marco Hunsicker)

- More accurate treatment of ALT_KEY_PRESSED_DISABLED (#3604532: Makarius)

- New view option: "Abbreviate paths with environment variables when possible".
  (#3606329 Alan Ezust)

- Made view option, "alternate toolbar placement" the default for jEdit.

- Emacs macros and keymap updates. (Brian Clapper)

- Use separate (shorter) label for "whole word search" in the search bar.
  (Shlomy Reinstein)

- Added a right click popup menu with a copy action in the Error dialog
  (#3557023 Matthieu Casanova)

- Avoid trouble with horizontal scrolling (Patch #3134788, EdorFaus)

- Enable ContextMenu via keyboard to VFS-BrowserView (#3560239, Thomas Meyer)

- Added a possibility to suppress synchronization of the filter in search
  dialog, using a hidden setting in jedit.props: search.dontSyncFilter.
  (Jarek Czekalski)

- Added mnemonics for popup menus in File System Browser (Commands, Plugins,
  Favorites). (Jarek Czekalski)

}}}
{{{ Miscellaneous

- Added chinese translation (patch #3611777 - cnvince)

- Made the plugin manager loading much faster (up to 3 time faster)
  (Matthieu Casanova)

- New macro in Files section: "Open Selection In Desktop" (Jarek Czekalski)

- Open Selection macro improvements. An attempt is made to use current
  VFS browser directory as a parent for the highlighted filename.
  In case of no selection the path under caret is used. (Jarek Czekalski)

- Fixed unreasonable quadratic operations which could be observable on
  big search&replace-all. (Patch #3533838 by Thomas Meyer)

- Avoided unreasonable memory consumption by duplicate String instances
  that could be allocated for each occurrence in a big
  search&replace-all. (Patch #3528619 by Thomas Meyer)

- Fix high memory usage for large search&replace all operations.
  (Patch #3531515 by Thomas Meyer)

- Fix memory usage of Buffer.calculateHash() (patch# 3560429, Thomas Meyer)

- Make_Bug_Report macro now use logs edit mode to have a little coloring
  in the result (Matthieu Casanova)

- Beep on output option in Activity log settings
  (request #3551931 Jarek Czekalski)

- New Plugin Manager option: Disable obsolete plugins (#2931321 Alan Ezust)

}}}

}}}

jEdit buffer local properties:
> maxLineLen=80:wrap=hard:autoIndent=simple:noTabs=true:indentSize=2:tabSize=2:
> folding=explicit:collapseFolds=2:




------------------------------

Message: 2
Date: Mon, 29 Jul 2013 23:55:45 +0200
From: Vampire <Vampire@jEdit.org>
Subject: [ jEdit-announce ] jEdit 5.1.0 is out!
To: jEdit Announce Mailinglist <jedit-announce@lists.sourceforge.net>
Message-ID: <51F6E4E1.60401@jEdit.org>
Content-Type: text/plain; charset=UTF-8

Hello everyone,

I proudly present jEdit 5.1.0, the first stable release of the 5.1 series of jEdit.

Detailed changes can as always be found in the Change Log attached in the end of this \
email, but here are some of the major features of this version:

    * VFS WorkThreads have been rewritten into Tasks, making it possible to \
                completely remove the old "I/O Progress Monitor"
      and the wasteful space it took up in the Task Monitor. Old deprecated classes \
related to WorkThread and WorkThreadPool  have been removed.
    * New Plugin Manager option to check for and disable obsolete plugins. Enabled by \
                default, this will ensure that old
      unsupported plugins do not interfere with the running operation of jEdit.
    * Added another language to our list of translated languages: English, French, \
                German, Japanese, Czech, Russian, and now
      Chinese! We are always looking for volunteers to help translate jEdit into \
                Hindi, Korean, or Spanish, or any other
      language, really! It is fairly easy to add a new translation to jEdit or the \
                plugins.
    * There is now a new encoding Native2ASCII which collapses unicode escapes in \
                ISO-8859-1 files on read and expands
      characters that cannot be encoded with ASCII as unicode escapes on write. This \
encoding is the one Java properties  files should be in. 



Volunteers are always welcome to contribute to the future of jEdit:
http://www.jedit.org/index.php?page=devel


That being said, here is the download link:
http://www.jedit.org/index.php?page=download


FYI, merge requests for the 5.1 series (fix done, but waiting for a review) can be \
found at: https://sourceforge.net/tracker/?group_id=588&atid=1235750&status=1&artgroup=6846241


Have fun with the new release.

Best Regards
Bj?rn "Vampire" Kautler



jEdit 5.1 version history
       (changes since jEdit 5.0.0)
> encoding=UTF-8:

{{{ Version 5.1.0

Thanks to Alan Ezust, Matthieu Casanova, and Bj?rn "Vampire" Kautler
for contributing to this release.

{{{ UI improvements

- The column titles were missing in shortcuts option pane
  (#3614404 Matthieu Casanova)

- Made TextArea thick caret thicker, and also thick when in overwrite mode.
  (#3614784 Alan Ezust)

- Added a new column "ActionSet" in Shortcuts option pane to know
  to which actionSet an action belongs (feature #3614386 Matthieu Casanova)

}}}

}}}

{{{ Version 5.1pre1

Thanks to Bj?rn "Vampire" Kautler, Jarek Czekalski, Thomas Meyer,
Matthieu Casanova, cnvince, Alan Ezust, Malathi, Vladimir Avdonin, Eric Le Lay,
Darien Brown, Steve snarum-micron, EdorFaus, Brian Clapper, Uwe St?hr,
Marc H?fner, stone1343, Richard The, Dale Anson, Benjamin Gmurczyk,
Makarius, Marco Hunsicker, and Maik Nijhuis for contributing to this release.

{{{ Bug fixes

- The contextInsensitive flag of the edit mode was not used at the first use
  of the edit mode (Matthieu Casanova)

- Fix mode loading for temporary buffers (patch #3609469 Thomas Meyer)

- Fix #3598661 - Don't allow negative values in the general option pane.
  (Thomas Meyer)

- Fix #3596215 - NPE from docking layout save/loads when started with
  -nosettings. (Alan Ezust)

- Fix #3597101, #3596600 - Bad error handling when an invalid path is entered
  into the VFS Browser inputs. (Patch# 3602318 Benjamin Gmurczyk)

- Bug no. #3590540 revealed a performance problem in the ChunkCache, because
  every scroll action resulted in a tokenization of the really long line, which
  takes a considerable time and makes jEdit unusable.
  Fix is to always keep all Chunks of the tokenization process and use it as an
  buffer in the ChunkCache class.
  Tokenization of the physical line still happens for every insertion or
  deletion of the Buffer. Tokenization also happens when the cursor enters the
  physical line, as only the Chunks from the current physical line are keeped
  in the ChunkCache.
  (#3590540 Thomas Meyer)

- Bug no. #3590540 produced a soft wrap for a single physical line that was
  greater than 16383 screen lines. Increased this limit to 65535 in
  the ScreenLineManager (#3590540 Thomas Meyer)

- Fixed Insert_Selection macro when the selection is empty (#3596616
  Matthieu Casanova)

- fixed bug when pressing down if the is no selection (#3599630
  Matthieu Casanova)

- Fixed macros cut lines and copy lines when the buffer is empty (#3596612
  Matthieu Casanova)

- Fixed negative values used in recent file history count (#3598661 Matthieu
  Casanova)

- Fixed Run script macro when the file is empty (#3596609 Matthieu
  Casanova)

- Fixed Get_Class_Name macro when the file is empty (#3596752 Matthieu
  Casanova)

- Re-added missing OS/2 support code. (#3589903 Alan Ezust)

- Added missing localization string:
  options.plugin-manager.list-cache.minutes (#3574373 Matthieu Casanova)

- Fix AutoSave exception after multiline cut (#3017650 Thomas Meyer)

- Undomanager: Don't compact significant edits (#patch 3560615 Thomas Meyer)

- Fixed undo after replace all with beanshell only first occurance
  (#3551910 Thomas Meyer)

- Search all buffers now observes current BufferSet scope and can be restricted
  to the current view's buffers when scope is not global. (#3423442 Alan Ezust)

- Fix File status checking after buffer switch (#1871440 Alan Ezust)

- Undo restores selection state in simple cases (deletions, replaces
  on simple range selections). (patch #1570553 Maik Nijhuis, Thomas Meyer,
  Jarek Czekalski)

- Filter not synchronizing in search dialog when
  "All buffers" is selected. (#1646584, patch #3549905 Eric Le Lay)

- Fixed VFS session not ended in VFS.copy() api (#3522406 Matthieu Casanova)

- Use of a scrollable list for delete dialog confirmation
  (#2911520 Matthieu Casanova)

- Fix selecting mode based on exact filename match. (#3562935 Dale Anson)

- Fix old modes/catalog entries clutter properties. (#3533751 Eric Le Lay)
  [Merged into 5.0.x]

- When checking a box to select a plugin to install, the description was
  appearing and immediately disappearing. (#3398605 Dale Anson)

- Fix Exception when clicking Find orphan when disabled plugins (#2940864 Eric
  Le Lay)

}}}
{{{ API Changes

- TaskManager: Refactor io task - New class IoTask, a subclass of Task
  Remove the code of the io special case in TaskManager (Thomas Meyer)

- Make SearchMatcher interrupttible (Thomas Meyer)
  1.) API change: let SearchMatcher.nextMatch() throw InterruptedException
  2.) BoyerMooreSearchMatcher: Switch to the new API and react on thread
      interruption

- HyperSearch: Make search interruptible even when in VFS.listFiles():
  New method TaskManager.cancelTasksByClass(): Interrupt all currently running
  Tasks of the given type. (Thomas Meyer)

- Deprecated extra overloads of IOUtilities.closeQuietly() in favor of
  using Java5 closeQuietly(Closeable) instead. (Alan Ezust)

- New class: OneTimeMigrationStep, for adding property migration services
  (used by fix for #1871440 Alan Ezust)

- New method VFSBrowser.getLastVisitedPath() (Jarek Czekalski)

- New method IOUtilities.closeQuietly(ObjectInput) (Matthieu Casanova)

- New method IOUtilities.closeQuietly(ObjectOutput) (Matthieu Casanova)

- New method GUIUtilities.setAutoMnemonic(AbstractButton) (Jarek Czekalski)

- New method: View.getBuffers(), aware of bufferset scope. (Alan Ezust)

- Removed View.setBuffer(Buffer, boolean, boolean) and
  View.setBuffer(Buffer, boolean): methods that had disableFileCheck flag in
  since View no longer checks file status there. (#1871440 Alan Ezust)

- AllBufferSet.AllBufferSet(String glob, View v) - additional required
  argument for View in constructor argument list. (#3423442 Alan Ezust)

- Removed classes: IOProgressMonitor, WorkRequest, WorkThreadPool,
  WorkThreadProgressListener (Thomas Meyer)

- Removed VFSManager.getIOThreadPool() (Thomas Meyer)

- Converted BufferIORequest, VFSFileChooserDialog.GetFileTypeRequest and
  TextAreaTransferHandler.DraggedURLLoader to a Task (Thomas Meyer)

- Converted TaskManager to an enum singelton (Thomas Meyer)

- Changed VFSManager.runInWorkThread(Runnable) to
  VFSManager.runInWorkThread(Task) and made it accept only IO tasks

- New class: AwtRunnableQueue (Thomas Meyer)

}}}
{{{ Editing

- Fixed bug in ruby multiline comments (Patch#3605738 fixing bug #3605168
  Richard The)

- Fixed shellscript highlight (patch #3602461 fixing bug #3594428 Richard The)

- Updated lua mode file (patch #2126692 stone1343)

- Macros move lines up/down now keep the current selection (feature #3600082
  Matthieu Casanova)

- Updated nsis2 mode (#3586538 Uwe St?hr)

- There is now a new encoding Native2ASCII which collapses unicode
  escapes in ISO-8859-1 files on read and expands characters that cannot be
  encoded with ASCII as unicode escapes on write. This encoding is the one Java
  properties files should be in. (Bj?rn "Vampire" Kautler)

- Highlight entity references in xml attributes (#3559971 Eric Le Lay)

- Added highlight of chapter title in rfc edit mode (Matthieu Casanova)

- Fixed shellscript do escape single quote with backslash
  (#3557453 Matthieu Casanova)

- Updated ColdFusion mode (#3518536, #3561048 Darien Brown)

- Updated Verilog mode (#3536967 Steve snarum-micron)

- Updated HTML mode (#3594526 Marc H?fner)

- Updated CSS mode (#3595041 Marc H?fner)

- Updated Coffeescript mode (#3595105 Marc H?fner)

- new PostgreSQL mode (feature #2833378 Thiemo Kellner, Eric Le Lay)

}}}
{{{ UI improvements

- Better information in the plugin manager when loading plugin list
  (Matthieu Casanova)

- Initial view hidden by other windows at startup (#3610089)

- Remove empty root node in OptionGroupPane
  (#3608324, #3608327: Marco Hunsicker)

- More accurate treatment of ALT_KEY_PRESSED_DISABLED (#3604532: Makarius)

- New view option: "Abbreviate paths with environment variables when possible".
  (#3606329 Alan Ezust)

- Made view option, "alternate toolbar placement" the default for jEdit.

- Emacs macros and keymap updates. (Brian Clapper)

- Use separate (shorter) label for "whole word search" in the search bar.
  (Shlomy Reinstein)

- Added a right click popup menu with a copy action in the Error dialog
  (#3557023 Matthieu Casanova)

- Avoid trouble with horizontal scrolling (Patch #3134788, EdorFaus)

- Enable ContextMenu via keyboard to VFS-BrowserView (#3560239, Thomas Meyer)

- Added a possibility to suppress synchronization of the filter in search
  dialog, using a hidden setting in jedit.props: search.dontSyncFilter.
  (Jarek Czekalski)

- Added mnemonics for popup menus in File System Browser (Commands, Plugins,
  Favorites). (Jarek Czekalski)

}}}
{{{ Miscellaneous

- Added Chinese translation (patch #3611777 cnvince)

- Made the plugin manager loading much faster (up to 3 time faster)
  (Matthieu Casanova)

- New macro in Files section: "Open Selection In Desktop" (Jarek Czekalski)

- Open Selection macro improvements. An attempt is made to use current
  VFS browser directory as a parent for the highlighted filename.
  In case of no selection the path under caret is used. (Jarek Czekalski)

- Fixed unreasonable quadratic operations which could be observable on
  big search&replace-all. (Patch #3533838 by Thomas Meyer)

- Avoided unreasonable memory consumption by duplicate String instances
  that could be allocated for each occurrence in a big
  search&replace-all. (Patch #3528619 by Thomas Meyer)

- Fix high memory usage for large search&replace all operations.
  (Patch #3531515 by Thomas Meyer)

- Fix memory usage of Buffer.calculateHash() (patch# 3560429, Thomas Meyer)

- Make_Bug_Report macro now use logs edit mode to have a little coloring
  in the result (Matthieu Casanova)

- Beep on output option in Activity log settings
  (request #3551931 Jarek Czekalski)

- New Plugin Manager option: Disable obsolete plugins (#2931321 Alan Ezust)

}}}

}}}

jEdit buffer local properties:
> maxLineLen=80:wrap=hard:autoIndent=simple:noTabs=true:indentSize=2:tabSize=2:
> folding=explicit:collapseFolds=2:




------------------------------

Message: 3
Date: Fri, 30 Aug 2013 10:05:30 -0700
From: Eric Berry <elberry@gmail.com>
Subject: [ jEdit-announce ] Plugin Release Announcement (2013-04-01 -
	2013-08-30)
To: jEdit Announce <jEdit-announce@lists.sourceforge.net>
Message-ID:
	<CAKMBPmLrOx+YjtGuriMCRmr=oPiNntR=rVAmFEzr97A83NPi0g@mail.gmail.com>
Content-Type: text/plain; charset="iso-8859-1"

0 New plugins and 11 Updated plugins


Updated Releases:
{{{  BufferTabs 1.2.4
Announcement: French and German Localization
Popup menu updates and cleanup.
Plugin Description: The BufferTabs plugin provides a tabbed pane in
the jEdit view that allows you to change the current buffer.
}}}

{{{  SpellCheck R008
Announcement: this is a maintenance release, bringing windows x86_64
hunspell binaries and fixing a bug.
Plugin Description: SpellCheck is an jEdit plugin to perform spell
checking of text in a jEdit buffer. You will need to install Aspell
(http://aspell.sf.net/) before using this plugin.
}}}

{{{  EditorConfig 0.5.0
Announcement: Add support for charset and jedit_charset properties
Plugin Description: EditorConfig plugin for jEdit
}}}

{{{  TextAutocomplete 1.0.0
Announcement: Fix to make it possible to accept a completion with the TAB key.
Plugin Description: It's pretty similar to the jEdit's function "Complete
Word" but it's automatic, you don't need to press any
key to invoke the list of completions.
}}}

{{{  Console 5.1.2
Announcement: Version 5.1.2 Requires jEdit 5.0, Java 1.6, ErrorList
2.1, and ProjectViewer 3.5 (optional).
[Alan Ezust]
New Console System Shell option: chdir events: Follow textarea
NPE fixed in ErrorsOptionPane.
Instead of VFSNodeSelected messages, SshConsole always gets textArea
buffer chdir messages.
Re-added "change to PV selected node" action.
Bugfix in "change to PV root dir" and corresponding option in
ProjectCommandOptionPane
[Artem Bryantsev]
Fix #3613991: Merge Stdout + Stderr on Windows duplicates output
Plugin Description: The Console plugin allows jEdit to execute
arbitrary commands from an internal shell.

In addition, it provides buttons in a "commando toolbar" for your
favorite command-line tools (make, ant, qmake, latex, etc), and an
easy way to add others.
}}}

{{{  SshConsole 1.0.6a
Announcement: Improved and Updated Documentation.
Plugin Description: Allows you to issue compile commands remotely via
ssh in the same location as the sftp:// file you are editing, and
parses the output for errors in ErrorList.
}}}

{{{  SaxonPlugin 9.5.1.1
Announcement: Update to Saxon 9.5.1.1, which has support for XSLT and XPath 3.0.
Plugin Description: The Saxon XSLT and XQuery Processor from Saxonica
Limited packaged as a jEdit plugin.
}}}

{{{  XSLT 0.8.0
Announcement: This release supports the new SaxonPlugin 9.5.1.1.
Transforms and queries are now run as tasks.
Plugin Description: The XSLT plugin provides features for transforming
XML documents using XSLT stylesheets and for searching XML documents
using XPath expressions.
}}}

{{{  EditorScheme 1.6
Announcement: Added Solarized-light scheme, submitted by Bernat.
Plugin Description: The EditorScheme plugin allows one to easily
switch between editor color/style schemes for jEdit.
}}}

{{{  SynchroScroll 1.2
Announcement: - Tracker 3511118, fix for stop synchroscroll (Alan Ezust)
- Added french localization. (jojaba_67)
- Added german localization. (Robert Schwenn)
Plugin Description: Provides ability to synchronize scrolling when
multiple text areas are open.
}}}

{{{  EditorScheme 1.7
Announcement: Added Monokai scheme (Matthieu Casanova)
Plugin Description: The EditorScheme plugin allows one to easily
switch between editor color/style schemes for jEdit.
}}}
-------------- next part --------------
An HTML attachment was scrubbed...

------------------------------

------------------------------------------------------------------------------
Learn the latest--Visual Studio 2012, SharePoint 2013, SQL 2012, more!
Discover the easy way to master current and previous Microsoft technologies
and advance your career. Get an incredible 1,500+ hours of step-by-step
tutorial videos with LearnDevNow. Subscribe today and save!
http://pubads.g.doubleclick.net/gampad/clk?id=58040911&iu=/4140/ostg.clktrk

------------------------------

_______________________________________________
jEdit Announcement List
jEdit-announce@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jedit-announce


End of jEdit-announce Digest, Vol 18, Issue 1
*********************************************



Configure | About | News | Add a list | Sponsored by KoreLogic