2020-09-22 09:58:07 +02:00
# Changelog
All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog ](https://keepachangelog.com/en/1.0.0/ ),
and this project adheres to [Semantic Versioning ](https://semver.org/spec/v2.0.0.html ).
## [Unreleased]
2020-11-05 09:42:00 +01:00
### Added
2020-11-10 04:04:08 +01:00
- Support for Windows 64-bit and compiling on Windows using MSVC.
2020-11-05 09:42:00 +01:00
2020-10-13 10:20:40 +02:00
### Changed
2020-11-05 09:42:00 +01:00
- Updated build script. `./build.sh` will create a debug build of the gdnative library for the current platform. `./build.sh release-all` will create release build of the gdnative library for every supported platform.
2020-10-16 07:18:22 +02:00
- Positioned background rect at 0,0 so it is no longer offset if a margin is added when Terminal is a child of a Container node.
2020-11-06 09:40:29 +01:00
- Removed all pre-compiled binaries using BFG [Repo-Cleaner ](https://rtyley.github.io/bfg-repo-cleaner/ ), thus re-writing git history.
2020-10-05 12:12:15 +02:00
2020-11-07 11:12:31 +01:00
### Fixed
- Fixed #12 where incorrect data would sometimes be written to the terminal when passing a string to the Terminal's `write()` method.
2020-10-05 12:12:15 +02:00
## [1.0.0] - 2020-10-05
2020-09-22 09:58:07 +02:00
### Added
- Changelog.
2020-09-22 10:31:46 +02:00
- Asciicast importer plugin. Enables the import of .cast ([asciicast files v2](https://github.com/asciinema/asciinema/blob/master/doc/asciicast-v2.md)) that can be made using the [asciinema ](https://asciinema.org/ ) terminal session recorder. See the [asciicast scene ](/examples/asciicast ) for example usage.
2020-10-05 12:33:23 +02:00
- Pre-built binary for x11 platform.
2020-09-22 09:58:07 +02:00
### Changed
- Implementation of Terminal node from GDScript to GDNative using [Aetf's patched version of libtsm ](https://github.com/Aetf/libtsm ).
2020-09-24 12:29:19 +02:00
- Move input handling to the Terminal node itself, rather than handling it in a seperate Control node.
2020-09-25 08:12:31 +02:00
- The Terminal `write()` method now accepts both String and PoolByteArray.
2020-10-05 12:12:15 +02:00
[Unreleased]: https://github.com/lihop/godot-xterm/compare/v1.0.0...HEAD
[1.0.0]: https://github.com/lihop/godot-xterm/releases/tag/v1.0.0