Releases: Valkryst/VTerminal
Releases · Valkryst/VTerminal
2024.11.14
- Added and updated JavaDocs for a number of classes and methods.
- Deleted the
src/example
folder.- Tutorials can be found here.
- The test GUI has been moved to its own repository.
- Fixed an issue where the
SequentialOp
class wasn't using its internal cache.- I suspect that this will lead to increased performance, though I haven't had the time to devise a test for concrete numbers.
- Updated dependencies.
2024.9.8
2024.1.6
2023.9.21
2022.12.23
- Fixed an issue where JitPack would fail to build the project.
2022.12.22
- Fixed issue where
TitledBorder.titleColor
was too dark to read. - Updated dependencies.
- Upgraded to Java 18
2021.03.04
Changelog
- Added additional tests.
- Added
VPanel.reset
,VPanel.resetBackgroundColors
,VPanel.resetCodePoints
,VPanel.resetForegroundColors
, andVPanel.resetSequentialImageOps
.VPanel.resetBackgroundColors
will set the background color of all tiles toUIManager.getColor("Panel.background");
.VPanel.resetCodePoints
will set the code point of all tiles to the space character (code point 32).VPanel.resetForegroundColors
will set the foreground color of all tiles toUIManager.getColor("Panel.foreground");
.VPanel.resetSequentialImageOps
will set the sequential image op of all tiles tonull
.
- Fixed an issue where the screen could flicker when calling
VPanel.repaint
. - Updated dependencies.
- Updated
VPanel.setBackground
,VPanel.setBackgroundAt
,VPanel.setForeground
, andVPanel.setForegroundAt
to allownull
as theircolor
parameter.- The
setBackground
methods will default toUIManager.getColor("Panel.background");
. - The
setForeground
methods will default toUIManager.getColor("Panel.foreground");
.
- The
2021.02.26-hotfix
Changelog
- Fixed an issue where JitPack was unable to build the project as it was using Java 8 instead of Java 15.
2021.02.26-break
This release represents a full rewrite of the library. All existing code is incompatible with this version and should remain on version 2020.12.28
, if it cannot be upgraded.
2020.12.28
Changes
- Fixed issue where the
shade
andtint
functions, of theColorFunctions
class, would return incorrect values. Special thanks to Timinator for his error report.