2023-07-31 15:02:10 +02:00
|
|
|
<!--
|
|
|
|
Changelog structure reference:
|
|
|
|
<<
|
|
|
|
## [Version]
|
|
|
|
|
|
|
|
### Type
|
|
|
|
|
|
|
|
#### Category
|
|
|
|
>>
|
|
|
|
"Type" is one of [Added, Changed, Deprecated, Removed, Fixed, Security]
|
|
|
|
"Category" should be something that can be quickly recognized by readers ("Highlighting", "Code Completion", "Folding", etc.)
|
|
|
|
|
|
|
|
"Type" ALWAYS follows the order in the list above
|
|
|
|
"Category" ALWAYS alphabetically sorted
|
|
|
|
-->
|
2023-07-29 12:22:51 +02:00
|
|
|
|
|
|
|
# ZigBrains
|
|
|
|
|
|
|
|
## [Unreleased]
|
|
|
|
|
2023-08-02 13:56:32 +02:00
|
|
|
### Added
|
|
|
|
|
|
|
|
#### Error diagnostics (NEW)
|
|
|
|
- Basic diagnostics info from LSP (mostly just trivial syntax errors)
|
|
|
|
|
2023-08-02 14:00:00 +02:00
|
|
|
### Fixed
|
|
|
|
|
|
|
|
#### Syntax Highlighting
|
|
|
|
- Made the logic even more asynchronous, should lead to much less UI stuttering
|
|
|
|
|
2023-08-01 19:35:13 +02:00
|
|
|
## [0.3.1]
|
|
|
|
|
2023-08-01 19:32:51 +02:00
|
|
|
### Added
|
|
|
|
|
|
|
|
#### Folding
|
|
|
|
- Better folding regions instead of just `{...}`
|
|
|
|
- `...` for the general case
|
|
|
|
- `///...` for doc comments
|
|
|
|
|
|
|
|
### Fixed
|
|
|
|
|
|
|
|
#### Folding
|
|
|
|
- Race condition on IDE startup throwing exceptions
|
|
|
|
- Folding ranges not appearing on Windows
|
|
|
|
- Typo in the bounds checking code
|
|
|
|
|
2023-07-31 23:46:59 +02:00
|
|
|
## [0.3.0]
|
|
|
|
|
2023-07-31 14:34:11 +02:00
|
|
|
### Added
|
|
|
|
|
2023-07-31 14:37:45 +02:00
|
|
|
#### Highlighting
|
|
|
|
- Support for Semantic Token Deltas (more compact way for the LSP server to send back data when typing fast)
|
|
|
|
|
2023-07-31 15:02:10 +02:00
|
|
|
#### LSP
|
|
|
|
- Temporary "increase timeout" toggle (currently, it bumps all timeouts to 15 seconds)
|
2023-07-31 14:23:02 +02:00
|
|
|
|
2023-07-31 15:02:10 +02:00
|
|
|
### Fixed
|
2023-07-31 14:26:36 +02:00
|
|
|
|
|
|
|
#### Folding
|
|
|
|
- Occasional NPE in LSP4IntellIJ
|
2023-07-31 14:23:02 +02:00
|
|
|
|
2023-07-31 15:02:10 +02:00
|
|
|
#### Highlighting
|
|
|
|
- Last token in file not getting highlighted
|
|
|
|
|
2023-07-31 14:34:11 +02:00
|
|
|
#### LSP
|
|
|
|
- (Windows) ZLS binary not executing if the file path has weird characters
|
|
|
|
|
2023-07-29 16:51:01 +02:00
|
|
|
## [0.2.0]
|
|
|
|
|
|
|
|
### Added
|
|
|
|
- Code completion
|
|
|
|
- Code folding
|
|
|
|
- More ZLS config options
|
|
|
|
|
2023-07-29 12:22:51 +02:00
|
|
|
## [0.1.0]
|
|
|
|
|
|
|
|
### Added
|
|
|
|
- Initial prototype. Lots of important stuff not yet implemented, but basic syntax highlighting and go to definition works.
|