Skip to content

Commit

Permalink
Bump to 13.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
valentjn committed Oct 30, 2021
1 parent 82b2b95 commit 65c678c
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 10 deletions.
5 changes: 4 additions & 1 deletion changelog.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<author>Julian Valentin, LTeX Development Community</author>
</properties>
<body>
<release version="13.0.0" date="upcoming">
<release version="13.0.0" description="The Completion Setting Excitation" date="2021-10-30">
<action type="update" issue="#443">
Add [`ltex.completionEnabled`](https://valentjn.github.io/vscode-ltex/docs/settings.html#ltexcompletionenabled) to disable completion by default
</action>
Expand All @@ -22,6 +22,9 @@
<action type="fix">
Fix handling of multiple subsequent whitespace characters in XHTML (e.g., CRLF)
</action>
<action type="update">
Update LTeX LS to 15.0.0
</action>
</release>
<release version="12.2.0" description="The Completion Hypothesis" date="2021-10-19">
<action type="update">
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "vscode-ltex",
"displayName": "LTeX – LanguageTool grammar/spell checking",
"version": "13.0.0-alpha.1.develop",
"version": "13.0.0",
"description": "Grammar/spell checker using LanguageTool with support for LaTeX, Markdown, and others",
"icon": "img/logo-ltex.png",
"author": "Julian Valentin",
Expand Down
16 changes: 8 additions & 8 deletions src/DependencyManager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,16 +41,16 @@ export default class DependencyManager {
+ 'vscode-ltex/docs/installation-and-usage.html#offline-installation';

private static readonly _toBeDownloadedLtexLsTag: string =
'14.1.0';
'15.0.0';
private static readonly _toBeDownloadedLtexLsVersion: string =
'14.1.0';
'15.0.0';
private static readonly _toBeDownloadedLtexLsHashDigests: {[fileName: string]: string} = {
'ltex-ls-14.1.0-linux-x64.tar.gz':
'8e7f9562c2a65bdc5ec18476cc3594d3ad9262d79dcb84de84e2b45f0a866b1e',
'ltex-ls-14.1.0-mac-x64.tar.gz':
'895e0b1596118e2505d5cdb00f0c5c5d65b105b877281062f8c3bc57e248526d',
'ltex-ls-14.1.0-windows-x64.zip':
'2210d572e02684a189fa800b1fe8b40938908e1263e1a807a547c383eb934223',
'ltex-ls-15.0.0-linux-x64.tar.gz':
'5d6632e6cd67c93a30492419143a8645292de47c9844f93bda655e268393fe95',
'ltex-ls-15.0.0-mac-x64.tar.gz':
'c241e78cc10435e9b959c52124273c6a7caa46bc474e53e0ab9f85d4afcbf67d',
'ltex-ls-15.0.0-windows-x64.zip':
'8946bd257fdc25745ceb351d2c3f1507f20edc7e1cd7cf3aad113371264be498',
};

public constructor(context: Code.ExtensionContext) {
Expand Down

0 comments on commit 65c678c

Please sign in to comment.