Update changelog and version info

This commit is contained in:
James-Yu 2018-04-10 10:41:28 +08:00
parent 385e8c6675
commit 92612025aa
3 changed files with 17 additions and 3 deletions

View File

@ -1,10 +1,24 @@
# Change Log
## [5.1.0] - 2018-04-10
### Added
- (#441) Add syncTeX to external experimental support.
- (#512) Show recipe progress in statusbar @oerpli.
- (#513) Add kill process function.
### Fixed
- (#520) View correct PDF with `outputDir` set.
- (#521) No `bib` will be executed without a `%! BIB program` comment @acristoffers.
- (#522) Fix highlighting of {\\{...\\}} blocks @jlelong.
- (#523) Fix key/value highlighting in bib files @jlelong.
- (#526,#527) Dependency updates @thetric.
## [5.0.4] - 2018-04-04
### Added
- (#496) Add options to show/hide messages with different severities.
- (#500) Add open compiler log option to error message
- (#500) Add open compiler log option to error message.
### Fixed
- (#504) Respect recipe when magic comment is given @acristoffers.

View File

@ -3,7 +3,7 @@
"displayName": "LaTeX Workshop",
"description": "Boost LaTeX typesetting efficiency with preview, compile, autocomplete, colorize, and more.",
"icon": "icon.png",
"version": "5.0.4",
"version": "5.1.0",
"publisher": "James-Yu",
"license": "MIT",
"homepage": "https://github.com/James-Yu/LaTeX-Workshop",

View File

@ -160,7 +160,7 @@ export class Builder {
if (magicBib) {
steps = [magicTexStep, magicBibStep, magicTexStep, magicTexStep]
} else {
steps = [magicTexStep, magicTexStep, magicTexStep]
steps = [magicTexStep]
}
} else {
const recipes = configuration.get('latex.recipes') as {name: string, tools: (string | StepCommand)[]}[]