Prepare for v0.1.4
continuous-integration/drone/push Build is passing Details

This commit is contained in:
CismonX 2021-02-23 18:47:51 +08:00
parent 1e89170312
commit 9b2e0aa5d6
Signed by: cismonx
GPG Key ID: 3094873E29A482FB
4 changed files with 14 additions and 2 deletions

View File

@ -1,5 +1,12 @@
# Changelog
## v0.1.4 - 02/23/2021
* Support loading custom CSS for HTML preview
* Configure with `texinfo.preview.customCSS`
* Update dependencies
* Not updating `node-html-parser` to v3.0+, as it bloats the webpack-ed code significantly :(
## v0.1.3 - 02/09/2021
* Fix completion of block command `@detailmenu`.

View File

@ -13,6 +13,7 @@ Texinfo language support for Visual Studio Code.
* Completion and code snippets for most @\-commands.
* **Preview**
* Display HTML preview in a webview.
* Support loading custom CSS for preview.
* Texinfo to HTML conversion is provided by [GNU Texinfo](https://www.gnu.org/software/texinfo).
* **Folding**
* Fold on nodes, block commands and multiline comments.
@ -55,6 +56,10 @@ See `File -> Preferences -> Settings -> Extensions -> Texinfo` for details. The
* Preview content is updated on document save rather than document change, as Texinfo documents tend to be rather large, and incremental conversion is not yet supported.
* For macOS users: Preinstalled GNU Texinfo distribution is very old. Use a latest one instead. This can be easily done by `brew install texinfo` and change extension setting `texinfo.makeinfo` value.
## Contributing
Send an email to [bug-report@cismon.net](mailto:bug-report@cismon.net) to report bugs or submit patches.
## Future Plans
* Implement [Language Server Protocol](https://microsoft.github.io/language-server-protocol) for the Texinfo language, preferably by extending GNU Texinfo, to alleviate the limitations of the current implementaion.

2
package-lock.json generated
View File

@ -1,6 +1,6 @@
{
"name": "texinfo",
"version": "0.1.3",
"version": "0.1.4",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

View File

@ -3,7 +3,7 @@
"displayName": "Texinfo Language Support",
"description": "Provides basic editing experience for Texinfo documents, including syntax highlighting, code completion, HTML preview, etc.",
"publisher": "cismonx",
"version": "0.1.3",
"version": "0.1.4",
"author": {
"name": "CismonX",
"email": "admin@cismon.net",