ClassLib GPL Java class library
Submitted by
Brad Mace on
Monday, 19 November, 2001 - 15:02
SailAway Solar Sail Simulator
Submitted by
Brad Mace on
Tuesday, 20 November, 2001 - 13:20
New macros for November 2001
Submitted by
jgellene on
Friday, 23 November, 2001 - 15:00
- Run_Script.bsh - Runs script using interpreter based upon buffer's editing mode (by default, determined using file extension). This macro was recently revised to handle paths containing spaces correctly under Windows.
- Add_Import.bsh - Adds an import statement to the beginning of a Java source file and returns the editing caret to the starting location.
- Clip_Get_and_Set.bsh - Creates get() and set() methods from variables contained in selected text. This macro works by grabbing text on the lines of the selected text and parsing it to get the first two tokens that are not contained in the macro's global string variable 'modifiers'. It then copies simple get() and set() methods to the clipboard.
Rolfje, the Homepage
Submitted by
Brad Mace on
Friday, 23 November, 2001 - 16:18
The Java Telnet Application/Applet
Submitted by
Brad Mace on
Friday, 23 November, 2001 - 19:15
jEdit 4.0pre2 now available
Submitted by
slava on
Sunday, 25 November, 2001 - 04:28
New Features
- MacOS plugin bundled (Kris Kopicki)
- jEdit exits cleanly when Command+Q is pressed
- Files created or associated with jEdit can now be opened from the Finder by double-clicking on them, or dragging them to the jEdit icon
- jEdit is assigned as the creator of new files
- A few Alt-key shortcuts added for commonly-used commands so that you don't have to move your fingers all over the keyboard:
- A+i, A+k: prev, next line
- A+j, A+l: prev, next character
Smyle
Submitted by
Brad Mace on
Monday, 26 November, 2001 - 21:25
New ErrorSource API
Submitted by
slava on
Tuesday, 27 November, 2001 - 10:49
The changes are as follows:
- The EditBus plugin has been dissolved, and all classes have been moved to the ErrorList plugin. So you must remove any dependencies on "EditBusPlugin" from your plugin's property file.
- All ErrorSource API classes have been moved to the "errorlist" package; so you will need to add "import errorlist.*;" where necessary.
- To register an error source, you must now call:
ErrorSource.registerErrorSource(errorSource);
Instead of
EditBus.addToBus(errorSource);
EditBus.addToNamedList(ErrorSource.ERROR_SOURCES_LIST,errorSource);
JUnit project page
Submitted by
Brad Mace on
Wednesday, 28 November, 2001 - 14:25
How to submit a macro
Submitted by
jgellene on
Wednesday, 28 November, 2001 - 19:08
A few users have asked about the mechanics of submitting a macro script to our Downloads area. The easiest way to do this is to go to the
Add download page of the Downloads area and fill out the form. If you want to upload your macro to the jEdit Community server instead of supplying your own link, leave the URL empty and send your source file as an email attachment to
John Gellene. Now you have no excuse, so let's see your macros!
New TaskList plugin beta
Submitted by
jgellene on
Thursday, 29 November, 2001 - 14:35
The plugin currently provides a useful but limited set of features. Please take a look at it and let us know what suggestions you might have for improvements or additional features. What follows are some technical comments on the plugin that have also been posted on the jedit-devel mailing list.
The plugin is designed to present task comments for more than one buffer at a time, but the feature is not available because the code is not completely realized. Are there any thoughts on how this should be done? Here are mine: the sets could be tied to file set classes used by jEdit's Search and Replace routines, so you could have all open buffers, all files in a directory or directory tree satisfying a file mask, or a single buffer.
Plugin updates
Submitted by
jgellene on
Saturday, 1 December, 2001 - 11:28
jEdit 3.2- JythonInterpreter 0.6: completely redesigned GUI, with a toolbar and a text area, directly editable; new implementation mostly in Jython; new run current buffer button; new run current buffer to another buffer button; new import current buffer button; new JythonPath editor; new PathBrowser; improved error handling, including an Error button which allows to jump to the error source; check jython version, which verifies if the right version is in use; history moved to CTRL+UP and CTRL+DOWN keys; documentation moved to DocBook; requires jEdit 3.2.2, EditBus 1.0, and JDK 1.4 (will probably revert to 1.3 in next release)
Plugin Central updates: JythonInterpreter, Tags
Submitted by
jgellene on
Monday, 3 December, 2001 - 01:24
- JythonInterpreter 0.6.1: removed JDK 1.4 dependencies; requires jEdit 3.2.2, EditBus 1.0, and JDK 1.3
- Tags 1.0.4: the "1.0.4" release contains the changes that should have been released as "1.0.3" (the "1.0.3" released recently was actually still "1.0.1"); [ from previous announcement ] fixed bug where if you removed tag index files from the search the code would remember the later entries; fixed bug where searching for tag search string in file was using the search file set; fixed bug in option panel where changes to the list of tag index files
Slava buys new computer
Submitted by
slava on
Thursday, 13 December, 2001 - 00:19
The specs of the computer are:
- Pentium 4 1800 CPU
- 512 Mb SDRAM
- 40 Gb HD
- GeForce II MX 400 video card
- 19" monitor
- SB live sound card, with a nice set of speakers + subwoofer
- Microsoft optical mouse (only good product MS has ever made
)
- No Windows XP! This saves 200 dollars.
As soon as the broadband link is in place, I will resume development of jEdit. Expect a 4.0pre3 very soon.
flap mail client
Submitted by
Brad Mace on
Thursday, 13 December, 2001 - 00:38
Plugin Central updates
Submitted by
jgellene on
Saturday, 15 December, 2001 - 12:32
- AStylePlugin 0.4: updated for jEdit 4.0; requires jEdit 4.0pre1 and JDK 1.1
- SpeedJava 0.1.3: fixes focus bug under JDK 1.4; requires jEdit 3.2final and JDK 1.2
- TomcatSwitch 0.3: added support for Tomcat 3.3.x and 4.x; 'javaw' is called only if appropriate (thanks to John Gellene and Ingo Herschmann); the "status" command shows the current invocation command text; changing preferences is not allowed when Tomcat is running; the open folder button icon in the option pane is visible; removed explicit dependence from the EditBus plugin; requires jEdit 3.2.2, Console 3.0, Jakarta Tomcat 3.2, 3.3, or 4, and JDK 1.1
JProjexx framework documentation available
Submitted by
jgellene on
Monday, 17 December, 2001 - 17:44
In an effort to fashion a useful project management framework for jEdit plugins, an initial draft of documentation of the JProjexx framework is being made available in the
Downloads section. The documentation currently covers 17 classes and interfaces that lay out the basic building blocks of the framework and provide a few illustrative applications. At present only javadocs are being released as a discussion draft, but source code, executables and definitive documentation will eventually be released under an Open Source license.
jEdit 4.0pre3 now available
Submitted by
slava on
Saturday, 22 December, 2001 - 03:43
jEdit 4.0pre3 is now available. This release features improved folding, context-sensitive commenting commands, ActionScript syntax highlighting, and some miscellaneous enhancements and bug fixes. Full changelog can be found
here.
Call for 4.0 screenshots
Submitted by
slava on
Saturday, 22 December, 2001 - 07:48
The jEdit home page needs some screenshots of jEdit 4.0; there aren't any there yet. Please
e-mail me some jEdit 4.0 screenshots (PNG format only, please).
Plugin Central updates: ContextHelp, HartMathPlugin, WheelMouse, XInsert
Submitted by
jgellene on
Saturday, 22 December, 2001 - 09:46
- ContextHelp 1.7: miscellaneous changes; requires jEdit 3.2pre9, Console 3.0, and JDK 1.1
- HartMathPlugin 0.7.19: calls now an Init.bsh beanshell script at startup; every new created user-defined symbol starting with an upper-case letter calls now an Init.bsh beanshell script; every function starting with an upper-case letter can call a .bsh beanshell script; all beanshell scripts are now placed in the /.jedit/hartmath/bshscripts directory; bugfixes; requires jEdit 3.2pre1, Console 3.0, EditBus 1.1, and JDK 1.3
- WheelMouse 2.1: adds ability to for different wheel behaviour with modifier keys pressed; requires jEdit 3.1final and JDK 1.4