LaTeX-Workshop/CHANGELOG.md

180 lines
5.2 KiB
Markdown
Raw Normal View History

2016-12-26 11:05:30 +03:00
# Change Log
2016-12-26 11:26:27 +03:00
All notable changes to this project will be documented in this file.
2016-12-26 11:05:30 +03:00
The format is based on [Keep a Changelog](http://keepachangelog.com/)
2016-12-26 11:26:27 +03:00
and this project adheres to [Semantic Versioning](http://semver.org/).
2016-12-26 11:05:30 +03:00
## [0.2.15] - 2017-02-19
### Changed
- (#14) Do not pop log panel with no log messages.
2017-02-16 08:21:12 +03:00
## [0.2.14] - 2017-02-16
### Changed
- (#13) Remove quote autocomplete.
2017-02-06 03:53:29 +03:00
## [0.2.13] - 2017-02-06
### Changed
- (#10) ENTER after backslash new creates a new line.
## [0.2.12] - 2017-02-04
### Changed
- (#9) Disable Mac OS binary check.
2017-01-29 06:59:54 +03:00
## [0.2.11] - 2017-01-29
### Added
- A lovely icon in status bar to toggle compile-on-save feature.
- The configuration `latex-workshop.compile_on_save` is used to set the initial state.
### Changed
- The compilation logging pattern.
2017-01-27 09:38:32 +03:00
## [0.2.10] - 2017-01-27
### Fixed
- SyncTeX use full path with `\.\` in Windows.
2017-01-27 09:31:22 +03:00
## [0.2.9] - 2017-01-27
### Fixed
- (#8) SyncTeX use full path and the constructed uri is different. Credited to `jccha`.
- (#8) OSX CMD+Click not working for reverse SyncTeX. Credited to `jccha`.
## [0.2.8] - 2017-01-27
### Changed
- Now configurations will take effect without reload except `compiler`.
### Fixed
2017-01-27 09:31:22 +03:00
- (#7) SyncTeX fails when main document is not in root. Credited to `Andersw88`.
- Compile twice if unsaved and click compile from context menu.
2017-01-26 09:57:00 +03:00
## [0.2.7] - 2017-01-26
### Changed
- Way of presenting latex log results.
### Fixed
- Unable to parse `file.tex:123: latex error` type error.
2017-01-19 11:18:10 +03:00
## [0.2.6] - 2017-01-17
### Fixed
- Missing requirejs dependency leading to failed extension initialization.
2017-01-19 07:12:37 +03:00
## [0.2.5] - 2017-01-17
### Added
- LaTeX log parser. Output to LaTeX Workshop output channel.
### Fixed
2017-01-19 11:18:10 +03:00
- Ignoring double curly brackets in parsed bibtex items to avoid spamming.
2017-01-19 07:12:37 +03:00
2017-01-17 11:28:53 +03:00
## [0.2.4] - 2017-01-17
2017-01-15 05:56:11 +03:00
### Changed
2017-01-17 11:28:53 +03:00
- Better bibTeX autocompletion
- Now provide title, publication, and authors in citation autocomplete.
- If parser failed, fallback to original implementation.
2017-01-15 05:56:11 +03:00
- Add curly brackets after multiple commands.
- User can go on typing for inner content autocompletion.
2017-01-15 05:20:34 +03:00
## [0.2.3] - 2017-01-15
### Changed
- Revert back to manual CompletionItem and SnippetString creation for auto-completion.
- Users should experience a better auto-completion feature.
## [0.2.2] - 2017-01-13
### Fixed
- (#4) Compile throw error on sending websocket message with undefined client.
## [0.2.1] - 2017-01-12
### Changed
- In browser PDF preview URL.
- User should not experience any feature changes
### Removed
- Several useless PDF viewer buttons: open, download, presentation mode.
2017-01-11 14:10:27 +03:00
## [0.2.0] - 2017-01-11
2017-01-29 06:59:54 +03:00
### Added
2017-01-11 14:10:27 +03:00
- In browser PDF preview.
- Find it in right-click menu!
### Changed
- Server-client communication model.
- Refractor the context menu.
## [0.1.11] - 2017-01-09
### Fixed
- PDF viewer scroll to (0,0) after clicking compilation but before refreshing.
## [0.1.10] - 2017-01-09
### Changed
- (#2) Use HTML data to store PDF position before compilation.
- The PDF position can be restored after compilation instead of previous SyncTeX method.
## [0.1.9] - 2017-01-05
### Added
- More colorization with textmate tex grammar.
2017-01-05 09:34:44 +03:00
## [0.1.8] - 2017-01-05
### Fixed
- Command autocomplete not working.
2017-01-05 09:28:45 +03:00
## [0.1.7] - 2017-01-05
### Added
- Colorization using textmate grammar file.
### Changed
- Wildcard reference autocomplete for any commands with `ref`.
2017-01-04 10:57:06 +03:00
## [0.1.6] - 2017-01-04
### Added
- `latex-workshop.main_document` config to explicitly define the main document.
- If set with some value, the auto-detection is disabled.
- If set `null`, auto-detection will use the old logic as in 0.1.5.
### Changed
- Snippet for \begin command. Now the \end command will also be appended.
## [0.1.5] - 2017-01-04
### Added
- Right click text editor for compile option.
### Changed
- (#1) Compile and preview will search for main tex document for processing.
- Main document is determined by "\begin{document}" string.
- If the current active file has this string, it is set to the main document.
- Otherwise, all .tex files under the root of the opened folder is checked. The first one with this string is the main document.
- Tests needed.
## [0.1.4] - 2017-01-04
### Changed
- Now PDF viewer will try to use synctex to scroll to tex editor cursor position upon refresh.
## [0.1.3] - 2017-01-03
### Changed
- Use code snippet for all latex backslash commands.
- Now autocomplete will show when the first letter is input after the backslash.
- Now backslash autocomplete can use tab to navigate to proper positions for contents.
### Fixed
- \ref won't develop autocomplete recommends when .aux file is not generated.
## [0.1.2] - 2017-01-03
### Changed
- Synchronously read related files when developing citation and reference autocompletes.
- The original acynchronous pattern will miss the latest changes.
- If the autocomplete reaction speed is greatly influenced in large files, this change may be reverted.
2017-01-01 11:19:05 +03:00
## [0.1.1] - 2017-01-01
### Added
- An extension icon.
### Fixed
- In some cases \cite and \ref won't develop autocomplete recommends.
2017-01-01 08:03:34 +03:00
## [0.1.0] - 2017-01-01
2016-12-26 11:26:27 +03:00
### Added
2016-12-26 16:07:54 +03:00
- Compile LaTeX to PDF
2016-12-27 07:26:45 +03:00
- Live Preview
- SyncTex
2017-01-01 08:03:34 +03:00
- Autocomplete on backslash, citation, and reference
2016-12-26 16:07:54 +03:00
- Configuration
2017-01-01 11:19:05 +03:00
## [0.0.1] - [0.0.12]
- Merged into version 0.1.0.