Update docs, changelog, and package for 1.1.1
This commit is contained in:
Родитель
518f40eded
Коммит
64a3377af5
|
@ -1,5 +1,4 @@
|
||||||
.vscode/**
|
.vscode/**
|
||||||
typings/**
|
|
||||||
out/test/**
|
out/test/**
|
||||||
test/**
|
test/**
|
||||||
src/**
|
src/**
|
||||||
|
|
|
@ -2,6 +2,13 @@
|
||||||
|
|
||||||
[See the full changelog in the end-user documentation](https://vector-of-bool.github.io/docs/vscode-cmake-tools/changelog.html).
|
[See the full changelog in the end-user documentation](https://vector-of-bool.github.io/docs/vscode-cmake-tools/changelog.html).
|
||||||
|
|
||||||
|
## 1.1.1
|
||||||
|
|
||||||
|
A bugfix release for [these issues](https://github.com/vector-of-bool/vscode-cmake-tools/milestone/12?closed=1).
|
||||||
|
|
||||||
|
**BREAKING CHANGE**: Variant substitutions follow a new `${variant:var-key}`
|
||||||
|
syntax to match the special namespacing of substitutions.
|
||||||
|
|
||||||
## 1.1.0
|
## 1.1.0
|
||||||
|
|
||||||
1.1.0 includes a few new major features:
|
1.1.0 includes a few new major features:
|
||||||
|
|
|
@ -3,6 +3,24 @@
|
||||||
Changelog and History
|
Changelog and History
|
||||||
#####################
|
#####################
|
||||||
|
|
||||||
|
.. _changes-1.1.1:
|
||||||
|
|
||||||
|
1.1.1
|
||||||
|
*****
|
||||||
|
|
||||||
|
Fixes and tweaks upon 1.1.0:
|
||||||
|
|
||||||
|
- Fix "Unable to automatically determine compiler" when using VS generators.
|
||||||
|
- Fix failure to provide IntelliSense information for header files even after
|
||||||
|
adding them to a target.
|
||||||
|
- "Unexpected stderr/stdout..." no longer appears. This output is now logged as
|
||||||
|
regular CMake status messages.
|
||||||
|
|
||||||
|
**BREAKING CHANGE**: Variant substitutions follow a new `${variant:var-key}`
|
||||||
|
syntax to match the special namespacing of substitutions. See :ref:`variant-sub`.
|
||||||
|
|
||||||
|
Full list of fixes are in [these issues](https://github.com/vector-of-bool/vscode-cmake-tools/milestone/12?closed=1).
|
||||||
|
|
||||||
.. _changes-1.1.0:
|
.. _changes-1.1.0:
|
||||||
|
|
||||||
1.1.0
|
1.1.0
|
||||||
|
|
|
@ -272,8 +272,10 @@ and ``${env.VARNAME}`` syntax, where the string for the ``VARNAME`` environment
|
||||||
variable will be replaced. If the named environment variable is undefined, an empty
|
variable will be replaced. If the named environment variable is undefined, an empty
|
||||||
string will be expanded instead.
|
string will be expanded instead.
|
||||||
|
|
||||||
|
.. _variant-sub:
|
||||||
|
|
||||||
Variant Substitution
|
Variant Substitution
|
||||||
*********************
|
********************
|
||||||
|
|
||||||
Variant options may also be substituted with the ``${variant:VARIANTNAME}`` syntax,
|
Variant options may also be substituted with the ``${variant:VARIANTNAME}`` syntax,
|
||||||
where the name of the currently active choice of the provided ``VARIANTNAME`` variant
|
where the name of the currently active choice of the provided ``VARIANTNAME`` variant
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
"name": "cmake-tools",
|
"name": "cmake-tools",
|
||||||
"displayName": "CMake Tools",
|
"displayName": "CMake Tools",
|
||||||
"description": "Extended CMake support in Visual Studio Code",
|
"description": "Extended CMake support in Visual Studio Code",
|
||||||
"version": "1.1.0",
|
"version": "1.1.1",
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/vector-of-bool/vscode-cmake-tools"
|
"url": "https://github.com/vector-of-bool/vscode-cmake-tools"
|
||||||
|
@ -963,7 +963,7 @@
|
||||||
"postinstall": "node ./node_modules/vscode/bin/install",
|
"postinstall": "node ./node_modules/vscode/bin/install",
|
||||||
"lint": "node ./node_modules/tslint/bin/tslint -p . --fix",
|
"lint": "node ./node_modules/tslint/bin/tslint -p . --fix",
|
||||||
"lint:nofix": "node ./node_modules/tslint/bin/tslint -p .",
|
"lint:nofix": "node ./node_modules/tslint/bin/tslint -p .",
|
||||||
"docs": "node ./node_modules/typedoc/bin/typedoc --mode modules --excludeExternals --out build/docs/dev --readme none src/ typings/"
|
"docs": "node ./node_modules/typedoc/bin/typedoc --mode modules --excludeExternals --out build/docs/dev --readme none src/"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@types/ajv": "^0.0.3",
|
"@types/ajv": "^0.0.3",
|
||||||
|
|
Загрузка…
Ссылка в новой задаче