summaryrefslogtreecommitdiff
path: root/support/texlab/CHANGELOG.md
diff options
context:
space:
mode:
Diffstat (limited to 'support/texlab/CHANGELOG.md')
-rw-r--r--support/texlab/CHANGELOG.md81
1 files changed, 81 insertions, 0 deletions
diff --git a/support/texlab/CHANGELOG.md b/support/texlab/CHANGELOG.md
index 419e13b755..94e2a872a0 100644
--- a/support/texlab/CHANGELOG.md
+++ b/support/texlab/CHANGELOG.md
@@ -5,6 +5,87 @@ 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).
+## [2.2.0] - 27.05.2020
+
+### Added
+
+- Fuzzy matching now works with Visual Studio Code
+
+### Changed
+
+- Improve performance of completion
+
+### Fixed
+
+- Fix the ordering of completion items when using `lsp-mode` ([#227](https://github.com/latex-lsp/texlab/issues/227))
+- Fix preview when using custom class files ([#228](https://github.com/latex-lsp/texlab/issues/228))
+
+## [2.1.0] - 10.05.2020
+
+### Added
+
+- Add a new setting `latex.build.forwardSearchAfter` to trigger the forward search after building.
+- Add option to write the log output to a log file
+
+### Fixed
+
+- Fix crash in symbols when encountering theorem descriptions ([#220](https://github.com/latex-lsp/texlab/issues/220))
+- Fix a parsing error that caused `texlab` to take 100% CPU usage in some cases ([#212](https://github.com/latex-lsp/texlab/issues/212))
+- Prevent building the same file multiple times at once
+
+## [2.0.0] - 20.04.2020
+
+### Added
+
+- Add basic support for the `import` package
+- Allow LaTeX and BibTeX formatting via `latexindent`.
+ The built-in BibTeX formatter is still available via `"bibtex.formatting.formatter": "texlab"` ([#151](https://github.com/latex-lsp/texlab/issues/151))
+
+### Fixed
+
+- Handle `subfiles` package when executing forward search ([#208](https://github.com/latex-lsp/texlab/issues/208))
+- Fix detection of terminated builds
+- Ensure that there is at most one instance of ChkTeX running
+- Fix deserialization of incoming JSON-RPC errors
+- Fix preview when including packages in a child file
+
+### Changed
+
+- **Breaking change**: `latex.build.args` now uses placeholders like the forward search.
+ The filename (`%f`) is no longer implicitly appended to the end of the argument list.
+- **Breaking change**: Update the LSP types to accommodate newer LSP clients ([#200](https://github.com/latex-lsp/texlab/issues/200))
+- Improve performance of completion (when completing LaTeX commands)
+- Improve workspace detection algorithm
+
+## [1.10.0] - 11.02.2020
+
+### Added
+
+- Add a new setting `latex.build.outputDirectory` to specify the directory containing the build artifacts.
+ This setting can be used in combination with the `-outdir` flag of `latexmk`
+ ([#147](https://github.com/latex-lsp/texlab/issues/147))
+- Add basic support for push-based configuration via `workspace/didChangeConfiguration` ([#123](https://github.com/latex-lsp/texlab/issues/123))
+
+### Fixed
+
+- Show all digits of chktex warning number ([#160](https://github.com/latex-lsp/texlab/issues/160))
+
+## [1.9.0] - 30.12.2019
+
+### Added
+
+- Provide completion for local packages if `kpsewhich` is installed
+- Add `.def` and `.bibtex` to the list of supported extensions
+- Add basic support for `tectonic`
+
+### Fixed
+
+- Fix rendering of citations with DOIs ([#117](https://github.com/latex-lsp/texlab/issues/117))
+- Fix building of LaTeX files without `\begin{document}` ([#122](https://github.com/latex-lsp/texlab/issues/122))
+- Do not crash when editing remote files
+- Run LaTeX linter when opening a file if enabled
+- Handle `\hyphen` when rendering citations
+
## [1.8.0] - 01.12.2019
### Added