Versie 11.21 van RJ TextEd is uitgebracht. Deze gratis teksteditor van Zweedse makelij heeft diverse mogelijkheden, die vooral voor software- en webontwikkelaars interessant zijn, zoals syntax-highlighting, autocompletion, uitgebreide selectie- en sorteermogelijkheden en een ingebakken (s)ftp-client. Het programma wordt voor Windows ontwikkeld, maar is via Wine ook onder Linux te gebruiken. De changelog voor deze uitgave ziet er als volgt uit:
Text Compare
Added a new menu item to create a text compare report. Use the report dialog window to set options and what to include in the report.You can include:
- You can create a report for printing. Print preview is available.
- You can create a report as HTML and open it in a browser or save it to file.
Options are:
- All lines
- Changed lines only
- Unchanged lines only
I've made some minor changes in menus and changed some menu icons.
- Syntax highlighting
- Wrap text
- Line numbers
Startup
Changed how panels and some forms are created at startup. The startup time should be less than half compared to previous versions. The only drawback is the delay before visible panels are fully created when the program is started.
Script
Added a new function to the MainApp object. NewDocumentEx(). Added three new properties to the document object. CodePage, NewlineFormat and UseBOM.
Ex. (C++ script)
// HTML file, UTF-8 encoded with BOM and Windows linefeeds (CRLF)
MainApp.NewDocumentEx(".html", 65001, true, "Windows");
Ex. (C++ script)
Document.CodePage = 65001; // Change encoding to UTF-8
Document.UseBOM = true; // Use a BOM when saving file
Document.NewlineFormat = "Unix"; // Convert to Unix linefeeds (LF)
Full screen mode
Added two new keyboard shortcuts to toggle the menus and status bar on/off. You can already toggle the editor toolbar on/off. The state in full screen mode doesn't affect the state in normal mode, so you can have the editor toolbar hidden in full screen mode and displayed in normal mode.
Toggle menu: Ctrl+Alt+M
Toggle status bar: Ctrl+Alt+S
The layout in full screen mode is remembered between sessions.
MiscFixed
- Added a new command line switch to open a new instance of the program /MULTI.
- Added a new command line switch to compare 2 files /COMPARE [file1] [file2].
- Auto completion window is opened a little bit faster.
- Plain text files that include binary data should open properly now.
- Issues with fuzzy sort in auto completion.
- Multi cursor select issue.
- GUI font quality settings.
- File - Close didn't display a keyboard shortcut.
- Startup issues from command line.
- Document map should not be displayed with binary files.
- Project files are reloaded in the same order as when closed.
- Minor text issue in customize keyboard.
- Minor issue with bash highlighter.
- A few rare undo/redo issues.
- Add to script menu issue with "Cancel" button.