Skip to content

Releases: bobbylight/RSyntaxTextArea

3.0.8

02 Jan 06:17
Compare
Choose a tag to compare

Precompiled jars are available on SourceForge and Maven (com.fifesoft:rsyntaxtextarea:3.0.8). This release brings the following changes:

  • Get builds working better with Java 11 (thanks @brunchboy)

3.0.7

28 Dec 06:23
Compare
Choose a tag to compare

Precompiled jars are available on SourceForge and Maven (com.fifesoft:rsyntaxtextarea:3.0.7). This release brings the following changes:

  • SearchContext is serializable for downstream consumers.

3.0.6

25 Dec 05:37
Compare
Choose a tag to compare

Precompiled jars are available on SourceForge and Maven (com.fifesoft:rsyntaxtextarea:3.0.6). This release only includes a small change to the build.gradle file so release artifacts are properly generated and pushed to Maven Central.

3.0.5

24 Dec 21:28
Compare
Choose a tag to compare

Precompiled jars are available on SourceForge and Maven (com.fifesoft:rsyntaxtextarea:3.0.5). This release includes the following changes:

  • Adding 6502 Assembler syntax highlighting
  • Fix #264: Fixing typo in German localization of 'Close all blocks'
  • Fix #317: Background color of Token paints over parser notices (squiggle underlines)
  • Fix #319: JSON: Auto-close curly braces. Square brackets still aren't working yet due to lack of support for them in RSyntaxTextAreaEditorKit
  • Themes should set 'armed fold BG' to 'fold BG' if it is null in the XML, just to make downstream code's life easier
  • Fix #303: Non-ASCII characters were sometimes not copy-pasted out of RSTA properly when copied with "styled text" actions (e.g. copy as RTF or HTML) (thanks @Yun-Shan)
  • Python syntax highlighting now properly renders annotations (thanks @paul-griffith)

3.0.4

26 Sep 02:16
Compare
Choose a tag to compare

Precompiled jars are available on SourceForge and Maven (com.fifesoft:rsyntaxtextarea:3.0.4). This release includes the following changes:

  • Added Golang syntax highlighting and code folding
  • Fix #307: Pasting as RTF into plain text editor removes newlines
  • Fix #298: TypeScript: Properly highlight pipe operator
  • Performance improvement when loading large files via read()
  • Added UK translation (thanks @kosivantsov)
  • Performance and mouse-selection improvements when word wrap is enabled (thanks @mike-smith-portswigger)

3.0.3

09 May 02:37
Compare
Choose a tag to compare

Precompiled jars are available on SourceForge and Maven (com.fifesoft:rsyntaxtextarea:3.0.3). This release includes the following changes:

  • Adding CSV syntax highlighting. Alternating columns are colored differently to easily distinguish them when viewing as plain text.
  • Fix #256: JSON: Allow spaces between key and colon, still highlight key string with proper color

3.0.2

13 Jan 04:34
Compare
Choose a tag to compare

Precompiled jars are available on SourceForge and Maven (com.fifesoft:rsyntaxtextarea:3.0.2). This release includes the following changes:

  • When editing CSS, Ctrl+/ now toggles comments (using /* and */)
  • Fixed a bug in the toggle comment action, that messed up syntax highlighting for languages that had a start- and end-token specified for line comments (e.g. CSS)
  • Made TokenImpl.toString() not throw a NullPointerException if is a non-paintable token.

3.0.0

24 Dec 15:29
Compare
Choose a tag to compare

Precompiled jars are available on SourceForge and Maven (com.fifesoft:rsyntaxtextarea:3.0.0). This release includes the following changes:

  • RSTA now compiles against Java 8
  • "Copy as RTF" action changed to "Copy as Styled Text", and now copies as either HTML or RTF, depending on the drop target. Now more compatible with MS Word, Outlook and other applications.
  • Simple YAML code folding, based on indentation
  • Added missing Lua keywords
  • Fixed a few minor bugs.

2.6.1

06 Feb 15:23
Compare
Choose a tag to compare

Precompiled jars are available on SourceForge and Maven (com.fifesoft:rsyntaxtextarea:2.6.1). This release includes the following changes:

  • Added YAML syntax highlighting
  • Added .ini file syntax highlighting
  • Alt+up/down arrows can move blocks of lines, not just single lines
  • Improved Gutter customization
  • Fixes several bugs

2.6.0

17 Sep 22:00
Compare
Choose a tag to compare

Precompiled jars are available on SourceForge and Maven (com.fifesoft:rsyntaxtextarea:2.6.0). This release includes the following changes:

  • Make Theme class members public for programmatic theme creation
  • Adding "matched bracket" popup, showing the line containing a matched bracket if it is scrolled off-screen
  • Syntax highlighting for Dockerfiles
  • Added Unicode support when copying as RTF
  • Updated compile target to Java 6 from Java 5
  • Fixes several bugs