-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
changelog.xml
1087 lines (1087 loc) · 56.1 KB
/
changelog.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="UTF-8"?>
<!--
- Copyright (C) 2019-2025
- Julian Valentin, Daniel Spitzer, LTeX+ Development Community
-
- This Source Code Form is subject to the terms of the Mozilla Public
- License, v. 2.0. If a copy of the MPL was not distributed with this
- file, You can obtain one at https://mozilla.org/MPL/2.0/.
-->
<document xmlns="http://maven.apache.org/changes/1.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/changes/1.0.0 https://maven.apache.org/xsd/changes-1.0.0.xsd">
<properties>
<title>Changelog</title>
<author>Julian Valentin, Daniel Spitzer and LTeX+ Development Community</author>
</properties>
<body>
<release version="18.5.0" date="upcoming">
<action type="update">
Update bundled Java runtime from 21.0.4+7 to 21.0.5+11. No separate beta Java runtime build is required anymore for Windows aarch64.
</action>
<action type="add" issue="#55">
Add support for Neorg (LSP language ID `neorg`)
</action>
</release>
<release version="18.4.0" date="2024-12-23">
<action type="add" issue="valentjn/ltex-ls#268" due-to="Benoît Pasquier">
Add support for apacite commands
</action>
<action type="add" issue="valentjn/ltex-ls#266" due-to="Loïc Reynier">
Add support for \cpageref, \labelcref and variants
</action>
<action type="fix" issue="valentjn/ltex-ls#238,valentjn/ltex-ls#224" due-to="Andrii Savytskyi">
Improved comment parsing and Rust support
</action>
<action type="fix" issue="ltex-plus/vscode-ltex-plus#105">
Fix spelling errors for Spanish dummies
</action>
</release>
<release version="18.3.0" date="2024-11-27">
<action type="add" issue="ltex-ls-plus#39,ltex-plus/vscode-ltex-plus#49">
Add support for Typst (LSP language ID `typst`)
</action>
<action type="add" issue="ltex-plus/vscode-ltex-plus#88">
Add support for MDX (LSP language ID `mdx`)
</action>
<action type="add">
Add Dockerfile
</action>
<action type="fix" issue="#40">
Bundled ltex-cli-plus did not start due to a wrong setting .lsp-cli.json
</action>
<action type="update">
Update ltex-cli from https://github.com/valentjn/lsp-cli to https://github.com/ltex-plus/lsp-cli-plus
</action>
<action type="fix" issue="ltex-plus/vscode-ltex-plus#89">
Fix spelling errors for Swedish dummies
</action>
</release>
<release version="18.2.0" date="2024-10-19">
<action type="update">
Update to [most recent Adoptium Java runtimes](https://github.com/adoptium/temurin21-binaries/releases/jdk-21.0.5%2B9-ea-beta/) for Windows aarch64.
</action>
<action type="update">
Use repository [ltex-plus/languagetool-build](https://github.com/ltex-plus/languagetool-build) for building ltex-ls-plus
</action>
<action type="add" issue="ltex-ls-plus#32" due-to="Jonas Wischeropp (@JonasWischeropp)">
Add support for magic comments in (X)HTML files.
</action>
<action type="fix" issue="valentjn/ltex-ls#228,valentjn/ltex-ls#215,ltex-plus/vscode-ltex-plus#49" due-to="Tim Ruffing (@real-or-random)">
Shorten JSON sent to HTTP server in order to HTTP 413 errors.
</action>
</release>
<release version="18.1.0" date="2024-09-28">
<action type="update">
Update LanguageTool from 6.0 to 6.5. See [LT release notes of 6.1, 6.2, 6.3, 6.4 and 6.5](https://github.com/languagetool-org/languagetool/blob/master/languagetool-standalone/CHANGES.md).
</action>
</release>
<release version="18.0.0" date="2024-09-17">
<action type="update">
Update from Java 11 to 21. Be aware: Starting from LTeX+ LS 18.0.0, Java 21 or higher is required!
</action>
<action type="add">
Add arm64/aarch64 Java runtimes for Linux (e.g. Raspberry Pi), macOS (Apple M1 SoC and its successors) and Windows on ARM.
</action>
</release>
<release version="17.0.1" date="2024-08-29">
<action type="fix">
Silence output to stdout caused by LanguageTool. This issue caused a crash of LTeX+ LS on Linux systems. It's a similar issue to https://github.com/valentjn/vscode-ltex/issues/68
</action>
</release>
<release version="17.0.0" date="2024-08-24">
<action type="update">
Rename to LTeX+ LS
</action>
<action type="update">
Update bundled Java runtime to 11.0.24+8
</action>
</release>
<release version="16.0.0" date="2023-03-19">
<action type="update">
Update LanguageTool to 6.0 (see LT release notes of [5.6](https://github.com/languagetool-org/languagetool/blob/v5.6/languagetool-standalone/CHANGES.md#56-2021-12-29), [5.7](https://github.com/languagetool-org/languagetool/blob/v5.7/languagetool-standalone/CHANGES.md#57-2022-03-28), [5.8](https://github.com/languagetool-org/languagetool/blob/v5.8/languagetool-standalone/CHANGES.md#58-2022-07-01), [5.9](https://github.com/languagetool-org/languagetool/blob/v5.9/languagetool-standalone/CHANGES.md#59-2022-09-28), and [6.0](https://github.com/languagetool-org/languagetool/blob/v6.0/languagetool-standalone/CHANGES.md#60-released-2022-12-29))
</action>
<action type="add" issue="valentjn/ltex-ls#132">
Add support for Git commit messages (LSP language IDs `git-commit` and `gitcommit`)
</action>
<action type="add" issue="valentjn/ltex-ls#170,valentjn/ltex-ls##172,valentjn/ltex-ls##180" due-to="Alexandre Sonderegger (@sondalex)">
Add support for Quarto and R Markdown (LSP language IDs `quarto` and `rmd`)
</action>
<action type="add" issue="valentjn/ltex-ls#131">
Add workaround for Pandoc-style inline display math (Markdown)
</action>
<action type="add" issue="valentjn/ltex-ls#130">
Add support for diacritical commands when enclosed in braces (LaTeX)
</action>
<action type="add" issue="valentjn/vscode-ltex#490">
Add support for `\newcaptionname` etc. from KOMA-Script and `\DefineBibliographyStrings` from BibLaTeX (LaTeX)
</action>
<action type="fix" issue="valentjn/ltex-ls#134">
Fix false positives when using siunitx (LaTeX)
</action>
<action type="fix" issue="valentjn/ltex-ls#156">
Fix unquoted languages in YAML front matter not parsed correctly (Markdown)
</action>
<action type="fix" issue="valentjn/ltex-ls#161">
Fix optional argument of Beamer's `frame` environment not ignored (LaTeX)
</action>
<action type="fix" issue="valentjn/ltex-ls#178" due-to="Stanley F (@sfo)">
Fix plural dummy in German languages
</action>
<action type="fix" issue="valentjn/ltex-ls#207">
Add support for `\import` and `\subimport` (LaTeX)
</action>
<action type="fix" issue="valentjn/ltex-ls#213,valentjn/ltex-ls#214" due-to="@casenull">
Fix Babel languages `austrian`, `naustrian`, `swissgerman`, and `nswissgerman` not recognized (LaTeX)
</action>
</release>
<release version="15.2.0" date="2021-11-28">
<action type="add" issue="valentjn/ltex-ls#120">
Add support for ConTeXt
</action>
<action type="add" issue="valentjn/ltex-ls#123">
Add support for strikethrough as in [GitHub Flavored Markdown](https://github.github.com/gfm/#strikethrough-extension-)
</action>
<action type="add" issue="valentjn/vscode-ltex#457">
Always check selected text when running [`_ltex.checkDocument`](https://ltex-plus.github.io/ltex-plus/ltex-ls-plus/server-usage.html#_ltexcheckdocument-server), even non-comment parts of programs
</action>
<action type="add" issue="valentjn/vscode-ltex#463">
Add support for the `minted` package (LaTeX)
</action>
<action type="add" issue="valentjn/vscode-ltex#465">
Add support for the Pandoc language variable `lang` in YAML front matter (Markdown)
</action>
</release>
<release version="15.1.0" date="2021-11-05">
<action type="add">
Add support for some aliases of LSP language IDs: `bib` for `bibtex`, `plaintex` for `latex`, `xhtml` for `html`
</action>
<action type="fix" issue="valentjn/ltex-ls#117">
Fix LTeX LS sometimes not properly terminated when using LTeX CLI
</action>
<action type="fix">
Fix error when running `ltex-cli` from a different directory than `bin/`
</action>
</release>
<release version="15.0.0" date="2021-10-30">
<action type="update" issue="valentjn/vscode-ltex#443">
Add [`ltex.completionEnabled`](https://ltex-plus.github.io/ltex-plus/settings.html#ltexcompletionenabled) to disable completion by default
</action>
<action type="fix" issue="valentjn/vscode-ltex#442">
Fix `StringIndexOutOfBoundsException` in `AnnotatedTextFragment.getSubstringOfPlainText`
</action>
<action type="fix">
Fix handling of multiple subsequent whitespace characters in XHTML (e.g., CRLF)
</action>
</release>
<release version="14.1.0" date="2021-10-19">
<action type="update">
Rename `ltex.ltex-ls.languageToolHttpServerUri` → [`ltex.languageToolHttpServerUri`](https://ltex-plus.github.io/ltex-plus/settings.html#ltexlanguagetoolhttpserveruri); the previous name is deprecated
</action>
<action type="update">
Rename `ltex.ltex-ls.languageToolOrgUsername` → [`ltex.languageToolOrg.username`](https://ltex-plus.github.io/ltex-plus/settings.html#ltexlanguagetoolorgusername); the previous name is deprecated
</action>
<action type="update">
Rename `ltex.ltex-ls.languageToolOrgApiKey` → [`ltex.languageToolOrg.apiKey`](https://ltex-plus.github.io/ltex-plus/settings.html#ltexlanguagetoolorgapikey); the previous name is deprecated
</action>
<action type="add" issue="valentjn/vscode-ltex#409">
Add support for completion requests for English and German
</action>
<action type="fix" issue="valentjn/vscode-ltex#431">
Fix `Add '...' to dictionary` quick fix missing for Austrian and Swiss German
</action>
<action type="update">
Move documentation to <https://valentjn.github.io/ltex>
</action>
</release>
<release version="14.0.0" date="2021-10-14">
<action type="update">
Update LanguageTool to 5.5 (see [LT 5.5 release notes](https://github.com/languagetool-org/languagetool/blob/v5.5/languagetool-standalone/CHANGES.md#55-2021-10-02))
</action>
<action type="update">
Refactor CLI into `ltex-cli`; `--input-documents` and `--setings-file` are deprecated and will be removed in a future release
</action>
<action type="add" issue="valentjn/ltex-ls#103">
Add support for automatic language detection via language short code `auto`; language variants like `en-US` are not detected, only generic languages like `en`; this will result in spelling errors not being reported
</action>
<action type="add">
Provide ID of LanguageTool rule via diagnostics code, not as part of diagnostics message
</action>
<action type="add">
Link diagnostics to LanguageTool website with more information
</action>
<action type="add" issue="valentjn/vscode-ltex#391">
Add support for the `main` option of the babel package (LaTeX)
</action>
<action type="add" issue="valentjn/vscode-ltex#398">
Add setting [`ltex.ltex-ls.languageToolOrgUsername`](https://ltex-plus.github.io/ltex-plus/settings.html#ltexltex-lslanguagetoolorgusername) to set username on languagetool.org for Premium API access
</action>
<action type="add" issue="valentjn/vscode-ltex#398">
Add setting [`ltex.ltex-ls.languageToolOrgApiKey`](https://ltex-plus.github.io/ltex-plus/settings.html#ltexltex-lslanguagetoolorgapikey) to set API key on languagetool.org for Premium API access
</action>
<action type="add">
Add support for [`ltex.dictionary`](https://ltex-plus.github.io/ltex-plus/settings.html#ltexdictionary) when using a LanguageTool HTTP server
</action>
<action type="update" issue="valentjn/vscode-ltex#390">
Handle disabled rules ourselves to prevent reinitialization of LanguageTool when running the `Disable rule` quick fix
</action>
<action type="fix" issue="valentjn/vscode-ltex#390">
Fix LanguageTool reinitialized when running the `Add '...' to dictionary` quick fix
</action>
<action type="fix">
Fix wrong parsing of inline math formulas in Markdown when using dollar signs as delimiters and containing only one character (e.g., `$a$`)
</action>
<action type="fix">
Fix used i18n keys removed
</action>
<action type="fix">
Fix fallback from German to English i18n
</action>
<action type="update">
For binary archives, migrate from AdoptOpenJDK JREs to own Java runtime generated from Eclipse Adoptium JDKs
</action>
<action type="update">
Update bundled Java runtime to 11.0.12+7 (see [list of OpenJDK fixes](https://bugs.openjdk.java.net/browse/JDK-8269291?jql=project%20%3D%20JDK%20AND%20fixVersion%20%3D%2011.0.12))
</action>
</release>
<release version="13.0.0" date="2021-08-11">
<action type="update">
Migrate from Java to Kotlin
</action>
<action type="add" issue="valentjn/vscode-ltex#350">
Add support for checking comments in many popular programming languages
</action>
<action type="add" issue="valentjn/ltex-ls#71">
Add non-server batch mode via `--input-documents`
</action>
<action type="add" issue="valentjn/ltex-ls#95">
Add support for rule-dependent diagnostic severities in [`ltex.diagnosticSeverity`](https://ltex-plus.github.io/ltex-plus/settings.html#ltexdiagnosticseverity)
</action>
<action type="add" issue="valentjn/vscode-ltex#366">
Add support for vowel dummies in LaTeX (`"vowelDummy"` in [`ltex.latex.commands`](https://ltex-plus.github.io/ltex-plus/settings.html#ltexlatexcommands)) and Markdown (`"vowelDummy"` in [`ltex.markdown.nodes`](https://ltex-plus.github.io/ltex-plus/settings.html#ltexmarkdownnodes))
</action>
<action type="add" issue="valentjn/ltex-ls#92" due-to="Shuhao Cao (@scaomath)">
Add support for more LaTeX commands (`\mathop`, `\overline`, `\tilde`, `\alpha`, etc.) for automatic vowel detection in formulas in LaTeX
</action>
<action type="add" issue="valentjn/ltex-ls#87" due-to="Alexander Zeilmann (@AlexanderZeilmann)">
Add support for `\counterwithin`, `\counterwithout`, and `\numberwithin` in LaTeX
</action>
<action type="fix" issue="valentjn/vscode-ltex#373">
Don't ignore second argument of `\setkomavar` in LaTeX
</action>
<action type="add">
Add support for [`InitializeParams.locale`](https://microsoft.github.io/language-server-protocol/specifications/specification-3-17/#initializeParams) when using LSP 3.16 or later, deprecate `CustomInitializationOptions.locale`
</action>
<action type="remove">
Remove support for magic comments in XHTML
</action>
<action type="update">
Change format of changelog
</action>
</release>
<release version="12.3.0" date="2021-07-12">
<action type="update">
Update LanguageTool to 5.4 (see [LT 5.4 release notes](https://github.com/languagetool-org/languagetool/blob/v5.4/languagetool-standalone/CHANGES.md#54-2021-06-25))
</action>
<action type="add" issue="valentjn/vscode-ltex#342">
Add support for XHTML
</action>
<action type="fix" issue="valentjn/vscode-ltex#349">
Fix diagnostics contain markup before actual error
</action>
<action type="fix" issue="valentjn/vscode-ltex#341">
Fix error when checking LaTeX documents ending with specific commands
</action>
<action type="add" issue="valentjn/ltex-ls#72">
Fix name of Portuguese babel language names, add support for Brazilian Portuguese babel language names
</action>
</release>
<release version="12.2.0" date="2021-06-05">
<action type="add">
Add support for `\setplength` (LaTeX)
</action>
<action type="add">
Add `--log-file` option to tee server/client communication and server log to a file
</action>
<action type="fix" issue="valentjn/vscode-ltex#325">
Fix LTeX LS not terminating if input stream is end-of-file
</action>
<action type="update" issue="valentjn/ltex-ls#70">
Bundle Java for platform-dependent, standalone archives
</action>
</release>
<release version="12.1.0" date="2021-05-01">
<action type="add" issue="valentjn/vscode-ltex#253">
Add support for cancellation of checking requests
</action>
<action type="update" issue="valentjn/vscode-ltex#297">
Show `Use ...` quick fixes before other quick fixes
</action>
<action type="update" issue="valentjn/vscode-ltex#297">
Limit number of `Use ...` quick fixes to 5
</action>
<action type="add">
Add `isChecking` and `documentUriBeingChecked` fields to result of `_ltex.getServerStatus`
</action>
<action type="add">
Add support for `\phantom`, `\hphantom`, and `\vphantom` (LaTeX)
</action>
<action type="fix" issue="valentjn/ltex-ls#69">
Fix wrong underlining of words starting with markup
</action>
</release>
<release version="12.0.0" date="2021-04-18">
<action type="update">
Prefix all command names with an underscore to mark them as internal (for hiding them from the user in some clients)
</action>
<action type="update">
Rename `ltex.addToDictionary` → `_ltex.addToDictionary`
</action>
<action type="update">
Rename `ltex.disableRules` → `_ltex.disableRules`
</action>
<action type="update">
Rename `ltex.hideFalsePositives` → `_ltex.hideFalsePositives`
</action>
<action type="update">
Rename `ltex.checkDocument` → `_ltex.checkDocument`
</action>
<action type="update">
Rename `ltex.getServerStatus` → `_ltex.getServerStatus`
</action>
<action type="add" issue="valentjn/vscode-ltex#277">
Add support for Org; use the code language ID `org`
</action>
<action type="add" issue="valentjn/vscode-ltex#32">
Add basic support for reStructuredText; use the code language ID `restructuredtext`
</action>
<action type="add">
Add `--server-type=tcpSocket` option to communicate over a TCP socket
</action>
<action type="add">
Add `--host` and `--port` options to control host and port of the TCP socket
</action>
<action type="add">
Add `--[no-]endless` option to keep the server alive when the client terminates the connection
</action>
<action type="add">
Add `-h` and `--help` options to show help message
</action>
<action type="add">
Add `-V` option as alias for `--version`
</action>
<action type="remove">
Remove support of single CR characters as line endings
</action>
<action type="fix">
Fix `.Rnw` not recognized for R Sweave documents when running `_ltex.checkDocument`
</action>
<action type="fix">
Fix newlines accepted as whitespace in magic comments
</action>
<action type="update">
Use picocli for parsing of command-line arguments
</action>
</release>
<release version="11.0.0" date="2021-04-05">
<action type="update">
Update LanguageTool to 5.3 (see [LT 5.3 release notes](https://github.com/languagetool-org/languagetool/blob/v5.3/languagetool-standalone/CHANGES.md#53-2021-03-29))
</action>
<action type="update">
Update LSP4J to 0.12.0
</action>
<action type="add" issue="valentjn/vscode-ltex#269">
Enhance support of accents in LaTeX by using Unicode combining diacritical marks, normalized via [Unicode Normalization Form C](https://www.unicode.org/reports/tr15/tr15-50.html#Normalization_Forms_Table)
</action>
<action type="add" issue="valentjn/ltex-ls#56,valentjn/ltex-ls#57" due-to="@ed359">
Add support for many accents in LaTeX: double acute (e.g., `\H{O}`, &#x0150;), line below (e.g., `\b{h}`, &#x1e96;), dot below (e.g., `\d{A}`, &#x1ea0;), ogonek (e.g., `\k{A}`, &#x0104;), breve (e.g., `\u{A}`, &#x0102;), and caron (e.g., `\v{C}`, &#x010c;)
</action>
<action type="add" issue="valentjn/ltex-ls#56,valentjn/ltex-ls#57" due-to="@ed359">
Add support for special characters in LaTeX: `\L` (&#x0141;), `\SS` (&#x1e9e;), `\i` (&#x0131;), `\j` (&#x0237;), and `\l` (&#x0142;)
</action>
<action type="add" issue="valentjn/ltex-ls#47" due-to="Nicolas Sicard (@biozic)">
Add `FR_SPELLING_RULE` as a rule for unknown words
</action>
<action type="update" issue="valentjn/ltex-ls#53,valentjn/ltex-ls#54" due-to="Lucas Alber (@LDAP)">
Use LaTeX parser for documents with code language ID `tex`
</action>
<action type="add" issue="valentjn/vscode-ltex#268">
Add support for [Markdown Extra definition lists](https://michelf.ca/projects/php-markdown/extra/#def-list)
</action>
<action type="update" issue="valentjn/ltex-ls#65">
Ignore non-object values for `InitializeParams.initializationOptions`
</action>
</release>
<release version="10.0.0" date="2021-02-12">
<action type="remove">
Remove support for settings that are deprecated since 8.0.0: `ltex.ignoreInRuleSentence`, `ltex.commands.ignore`, `ltex.commands.dummy`, `ltex.environments.ignore`, `ltex.markdown.ignore`, and `ltex.markdown.dummy`
</action>
<action type="update">
Replace `ltex/serverStatus` request with `ltex.getServerStatus` command
</action>
<action type="add">
Add support for magic comments inside HTML comments in Markdown (`<!-- ltex: SETTINGS -->`)
</action>
<action type="update" issue="valentjn/vscode-ltex#239">
Check frame title in argument of LaTeX Beamer frames
</action>
<action type="add">
Add `range` argument to `ltex.checkDocument`
</action>
<action type="add">
Check documents even if their code language is not supported
</action>
<action type="fix" issue="valentjn/vscode-ltex#245">
Fix comment sign before babel commands not recognized
</action>
<action type="fix">
Fix removing items in settings with a hyphen prefix sometimes not working
</action>
<action type="fix">
Fix space not added between two arguments of LaTeX commands
</action>
<action type="fix">
Fix manually checking BibTeX documents not working
</action>
<action type="fix">
Fix words in dictionary containing markup not recognized
</action>
</release>
<release version="9.2.0" date="2021-01-29">
<action type="add" issue="valentjn/vscode-ltex#210">
Add support for Pandoc-style inline math (`$...$`) and display math (`$$...$$` with `$$` being at the beginning/end of a Markdown block) to Markdown parser
</action>
<action type="fix" issue="valentjn/vscode-ltex#221">
Fix false positives for words added by `Add to dictionary` for Slovak rule IDs `MUZSKY_ROD_NEZIV_A`, `ZENSKY_ROD_A`, and `STREDNY_ROD_A`
</action>
<action type="fix" issue="valentjn/vscode-ltex#211">
Fix BibTeX field `seealso` not ignored, ignore `category` and `parent`
</action>
<action type="update" issue="valentjn/vscode-ltex#211">
Disable `UPPERCASE_SENTENCE_START` in BibTeX files
</action>
<action type="update" issue="valentjn/vscode-ltex#233">
Move rule ID to the end of diagnostic messages as VS Code truncates the messages if the Problems panel is narrow
</action>
<action type="fix" issue="valentjn/vscode-ltex#161">
Fix regression that messages of possible spelling mistakes are not prepended with the respective unknown words
</action>
<action type="fix" issue="valentjn/vscode-ltex#236">
Fix crash when using `\begin` or `\end` without an argument
</action>
<action type="update">
Change `$/progress` tokens to include a UUID instead of a counter
</action>
</release>
<release version="9.1.0" date="2021-01-24">
<action type="add" issue="valentjn/vscode-ltex#211">
Add support for BibTeX files (language code `bibtex`)
</action>
<action type="add">
Add setting [`ltex.bibtex.fields`](https://ltex-plus.github.io/ltex-plus/settings.html#ltexbibtexfields) to control which BibTeX fields should be checked
</action>
<action type="add" issue="valentjn/vscode-ltex#210">
Add support for [GitLab Flavored Markdown](https://gitlab.com/gitlab-org/gitlab/blob/master/doc/user/markdown.md), especially inline math (e.g., ``$`E = mc^2`$``)
</action>
<action type="add" issue="valentjn/vscode-ltex#218">
Add support for Markdown tables as in [GitHub Flavored Markdown](https://github.github.com/gfm/#tables-extension-)
</action>
<action type="add">
Add support for more commands of the `glossaries` LaTeX package
</action>
<action type="update" issue="valentjn/vscode-ltex#221">
Enable `Add to dictionary` quick fix for Slovak rule IDs `MUZSKY_ROD_NEZIV_A`, `ZENSKY_ROD_A`, and `STREDNY_ROD_A`
</action>
<action type="remove">
Remove superfluous spaces in messages of diagnostics
</action>
<action type="fix">
Fix handling of `\r\n` (Windows) line terminators in Markdown
</action>
<action type="update">
Use Flexmark's YAML Front Matter extension to ignore YAML front matter in Markdown instead of own handling
</action>
<action type="update">
Print Flexmark AST of Markdown documents to log when [`ltex.ltex-ls.logLevel`](https://ltex-plus.github.io/ltex-plus/settings.html#ltexltex-lsloglevel) is `"finest"`
</action>
</release>
<release version="9.0.1" date="2021-01-13">
<action type="update">
Ignore `\pgfmathsetmacro`, `\setmainfont`, and `\theoremstyle`
</action>
<action type="fix" issue="valentjn/vscode-ltex#216">
Fix accent commands such as `\O` in math mode resulting in diagnostics
</action>
</release>
<release version="9.0.0" date="2021-01-03">
<action type="update">
Make versioning independent of vscode-ltex; LTeX LS now adheres to [Semantic Versioning 2.0.0](https://semver.org/spec/v2.0.0.html)
</action>
<action type="add">
Require support of LSP 3.15
</action>
<action type="update">
Update LanguageTool to 5.2 (see [LT 5.2 release notes](https://github.com/languagetool-org/languagetool/blob/v5.2/languagetool-standalone/CHANGES.md#52-released-2020-12-29))
</action>
<action type="add">
Add [`ltex.additionalRules.enablePickyRules`](https://ltex-plus.github.io/ltex-plus/settings.html#ltexadditionalrulesenablepickyrules) to still be able to detect false friends after the update of LanguageTool (default: `false`)
</action>
<action type="update" issue="valentjn/ltex-ls#34">
Replace `ltex/progress` with `$/progress`
</action>
<action type="add">
Add `customCapabilities` in `InitializeParams.initializationOptions`
</action>
<action type="remove">
Remove unneeded command arguments `type` and `command`
</action>
<action type="update">
Replace `\dots` with Unicode ellipsis `…` instead of three dots `...` to fix some false positives
</action>
<action type="add">
Add documentation
</action>
</release>
<release version="8.1.1" date="2020-11-24">
<action type="update">
Migrate from Travis CI to GitHub Actions
</action>
</release>
<release version="8.1.0" date="2020-11-15">
<action type="update" issue="valentjn/vscode-ltex#161">
Prepend messages of possible spelling mistakes with the respective unknown words
</action>
<action type="add">
Add support for optional arguments of `\newtheorem`
</action>
<action type="fix" issue="valentjn/vscode-ltex#167">
Fix wrong position of diagnostics when using a recognized LaTeX command with a non-recognized set of arguments due to an infinite loop
</action>
<action type="update">
Update LSP4J to 0.10.0
</action>
</release>
<release version="8.0.0" date="2020-11-01">
<action type="update" issue="valentjn/vscode-ltex#39">
Upgrade from Java 8 to Java 11 (see [announcement](https://ltex-plus.github.io/ltex-plus/old/deprecation-of-java-8.html))
</action>
<action type="add">
Add workaround to eliminate the need for workspace-specific setting names; [`ltex.dictionary`](https://ltex-plus.github.io/ltex-plus/settings.html#ltexdictionary), [`ltex.disabledRules`](https://ltex-plus.github.io/ltex-plus/settings.html#ltexdisabledrules), and [`ltex.enabledRules`](https://ltex-plus.github.io/ltex-plus/settings.html#ltexenabledrules) can now be used in multiple setting scopes (user settings, workspace settings, and workspace folder settings) at the same time without overriding each other; instead, the settings of the different scopes will be properly merged (see [documentation](https://ltex-plus.github.io/ltex-plus/vscode-ltex/setting-scopes-files.html#multi-scope-settings))
</action>
<action type="update">
Rename `ltex.workspaceDictionary`, `ltex.workspaceFolderDictionary` → [`ltex.dictionary`](https://ltex-plus.github.io/ltex-plus/settings.html#ltexdictionary)
</action>
<action type="update">
Rename `ltex.workspaceDisabledRules`, `ltex.workspaceFolderDisabledRules` → [`ltex.disabledRules`](https://ltex-plus.github.io/ltex-plus/settings.html#ltexdisabledrules)
</action>
<action type="update">
Rename `ltex.workspaceEnabledRules`, `ltex.workspaceFolderEnabledRules` → [`ltex.enabledRules`](https://ltex-plus.github.io/ltex-plus/settings.html#ltexenabledrules)
</action>
<action type="update">
Rename `ltex.ignoreInRuleSentence` → [`ltex.hiddenFalsePositives`](https://ltex-plus.github.io/ltex-plus/settings.html#ltexhiddenfalsepositives)
</action>
<action type="update">
Rename `ltex.commands.ignore`, `ltex.commands.dummy` → [`ltex.latex.commands`](https://ltex-plus.github.io/ltex-plus/settings.html#ltexlatexcommands)
</action>
<action type="update">
Rename `ltex.environments.ignore` → [`ltex.latex.environments`](https://ltex-plus.github.io/ltex-plus/settings.html#ltexlatexenvironments)
</action>
<action type="update">
Rename `ltex.markdown.ignore`, `ltex.markdown.dummy` → [`ltex.markdown.nodes`](https://ltex-plus.github.io/ltex-plus/settings.html#ltexmarkdownnodes)
</action>
<action type="update">
Change format of [`ltex.latex.commands`](https://ltex-plus.github.io/ltex-plus/settings.html#ltexlatexcommands), [`ltex.latex.environments`](https://ltex-plus.github.io/ltex-plus/settings.html#ltexlatexenvironments), [`ltex.markdown.nodes`](https://ltex-plus.github.io/ltex-plus/settings.html#ltexmarkdownnodes) to be objects (with key = command and value = action, e.g., `"ignore"`, `"dummy"`, etc.) instead of arrays
</action>
<action type="update">
Rename `addToDictionary` → `dictionary` in [`ltex.configurationTarget`](https://ltex-plus.github.io/ltex-plus/settings.html#ltexconfigurationtarget)
</action>
<action type="update">
Rename `disableRule` → `disabledRules` in [`ltex.configurationTarget`](https://ltex-plus.github.io/ltex-plus/settings.html#ltexconfigurationtarget)
</action>
<action type="update">
Rename `ignoreRuleInSentence` → `hiddenFalsePositives` in [`ltex.configurationTarget`](https://ltex-plus.github.io/ltex-plus/settings.html#ltexconfigurationtarget)
</action>
<action type="add" issue="valentjn/vscode-ltex#144,valentjn/vscode-ltex#145">
Add `userExternalFile`, `workspaceExternalFile`, and `workspaceFolderExternalFile` enumeration values to [`ltex.configurationTarget`](https://ltex-plus.github.io/ltex-plus/settings.html#ltexconfigurationtarget), which enables saving settings to external files (see [documentation](https://ltex-plus.github.io/ltex-plus/vscode-ltex/setting-scopes-files.html#external-setting-files))
</action>
<action type="update">
Change default of [`ltex.configurationTarget`](https://ltex-plus.github.io/ltex-plus/settings.html#ltexconfigurationtarget) for `dictionary`, `disabledRules`, and `hiddenFalsePositives` to `workspaceFolderExternalFile`
</action>
<action type="add" issue="valentjn/vscode-ltex#142">
Add [`ltex.checkFrequency`](https://ltex-plus.github.io/ltex-plus/settings.html#ltexcheckfrequency) to control when LTeX checks documents
</action>
<action type="add">
Add [`LTeX: Show Status Information`](https://ltex-plus.github.io/ltex-plus/vscode-ltex/commands.html#ltex-show-status-information) command to show information about the status of LTeX
</action>
<action type="add" issue="valentjn/vscode-ltex#140">
Add support for `\usepackage[LANGUAGE]{babel}` if in the same file as the text to be checked
</action>
<action type="add" issue="valentjn/vscode-ltex#143">
Add support for more BibLaTeX commands such as `\autocite`, `\citeauthor`, etc.
</action>
<action type="add" issue="valentjn/ltex-ls#27">
Add support for overriding hard-coded command signatures
</action>
<action type="update">
Move handling of external setting files from ltex-ls to vscode-ltex
</action>
<action type="update">
Increase duration before sentences expire in the result cache to 60 minutes
</action>
<action type="fix" issue="valentjn/vscode-ltex#134">
Fix many settings changes cleared sentence cache, which led to performance issues, e.g., changing the [`ltex.enabled`](https://ltex-plus.github.io/ltex-plus/settings.html#ltexenabled) setting via magic comments
</action>
<action type="remove">
Remove dependency on `org.apache.httpcomponents:httpclient` by using the HTTP client that comes with Java 11 when connecting to an HTTP LanguageTool server
</action>
</release>
<release version="7.3.1" date="2020-10-12">
<action type="fix">
Fix delayed publication of diagnostics by adding workaround to guess the caret position
</action>
<action type="fix">
Fix recheck being triggered when generating list of quick fixes; this should improve speed
</action>
</release>
<release version="7.3.0" date="2020-10-10">
<action type="add" issue="valentjn/vscode-ltex#131">
Add support for `\ell` as well as `\mathcal`, `\mathfrak`, etc. to vowel detection
</action>
<action type="add">
Add setting [`ltex.ltex-ls.logLevel`](https://ltex-plus.github.io/ltex-plus/settings.html#ltexltex-lsloglevel) to control the verbosity of the server log
</action>
<action type="fix">
Fix diagnostics sometimes not lined up with the text with switching back from incremental to full document updates; unfortunately, this disables the delayed publication of diagnostics at the caret position
</action>
<action type="update">
Restructure and simplify internal quick fix and command structure, removing the need for pseudo-telemetry notifications
</action>
</release>
<release version="7.2.0" date="2020-09-27">
<action type="update">
Update LanguageTool to 5.1 (see [LT 5.1 release notes](https://github.com/languagetool-org/languagetool/blob/v5.1/languagetool-standalone/CHANGES.md#51-released-2020-09-25))
</action>
<action type="add">
Add support for HTML entities such as `&auml;` and `&copy;` in Markdown
</action>
<action type="fix">
Fix missing tilde expansion for external dictionary files
</action>
<action type="update">
Improve logging
</action>
</release>
<release version="7.1.2" date="2020-09-22">
<action type="fix" issue="valentjn/vscode-ltex#124">
Fix performance issue with multiple languages in one document via magic comments due to LanguageTool being reinitialized on each keystroke
</action>
</release>
<release version="7.1.1" date="2020-09-20">
<action type="fix">
Fix `NullPointerException` when supplying relative paths to external dictionary files
</action>
<action type="fix">
Fix German log messages
</action>
</release>
<release version="7.1.0" date="2020-09-20">
<action type="add" issue="valentjn/vscode-ltex#118">
Add support for external dictionary files
</action>
<action type="add" issue="valentjn/vscode-ltex#19">
Add support for enabling/disabling LTeX only for specific file types via [`ltex.enabled`](https://ltex-plus.github.io/ltex-plus/settings.html#ltexenabled)
</action>
<action type="add" issue="valentjn/vscode-ltex#19">
Add support for `acro` commands such as `\DeclareAcronym` and `\ac`
</action>
<action type="add" issue="valentjn/vscode-ltex#19">
Add support for `\addcontentsline`
</action>
<action type="add">
Add support for `\printbibliography` and `\printglossary` without argument
</action>
<action type="update" issue="valentjn/vscode-ltex#19">
Ignore parenthesis arguments of `textblock`s
</action>
<action type="fix" issue="valentjn/vscode-ltex#123">
Fix optional argument of heading commands such as `\section` parsed incorrectly
</action>
<action type="update">
Include stack traces when logging exceptions
</action>
</release>
<release version="7.0.0" date="2020-09-13">
<action type="update">
Change scope of [`ltex.dictionary`](https://ltex-plus.github.io/ltex-plus/settings.html#ltexdictionary), [`ltex.disabledRules`](https://ltex-plus.github.io/ltex-plus/settings.html#ltexdisabledrules), and [`ltex.enabledRules`](https://ltex-plus.github.io/ltex-plus/settings.html#ltexenabledrules) to `application`; these are now user-specific settings that can only be configured in user settings
</action>
<action type="add">
Add settings `ltex.workspaceDictionary`, `ltex.workspaceDisabledRules`, and `ltex.workspaceEnabledRules` with `window` scope to amend the corresponding user-specific settings; these are workspace-specific settings that should be configured in workspace settings
</action>
<action type="add">
Add settings `ltex.workspaceFolderDictionary`, `ltex.workspaceFolderDisabledRules`, and `ltex.workspaceFolderEnabledRules` with `resource` scope to amend the corresponding user-specific and workspace-specific settings; these are workspace-folder-specific settings that should be configured in workspace folder settings
</action>
<action type="update">
Rename `global` → `user` in [`ltex.configurationTarget`](https://ltex-plus.github.io/ltex-plus/settings.html#ltexconfigurationtarget)
</action>
<action type="remove">
Remove deprecated settings `ltex.javaHome`, `ltex.performance.initialJavaHeapSize`, `ltex.performance.maximumJavaHeapSize`, `ltex.performance.sentenceCacheSize`, `ltex.*.dictionary`, `ltex.*.enabledRules`, and `ltex.*.disabledRules` (deprecation since 5.0.0)
</action>
<action type="update">
Update LanguageTool to 5.0.2 (see [LT 5.0.2 release notes](https://github.com/languagetool-org/languagetool/blob/v5.0.2/languagetool-standalone/CHANGES.md#502-2020-08-28))
</action>
<action type="fix" issue="valentjn/vscode-ltex#104">
Fix skipping of YAML front matter
</action>
</release>
<release version="6.3.0" date="2020-08-22">
<action type="add" issue="valentjn/vscode-ltex#92">
Add support for `an` article when before a formula starting with a vowel (e.g., `an $n$-dimensional problem`)
</action>
<action type="add" issue="valentjn/vscode-ltex#99">
Add support for `~/` and `~\` in settings
</action>
</release>
<release version="6.2.0" date="2020-08-07">
<action type="add" issue="valentjn/vscode-ltex#84">
Add commands [`LTeX: Check Current Document`](https://ltex-plus.github.io/ltex-plus/vscode-ltex/commands.html#ltex-check-current-document) and [`LTeX: Check All Documents in Workspace`](https://ltex-plus.github.io/ltex-plus/vscode-ltex/commands.html#ltex-check-all-documents-in-workspace)
</action>
<action type="add">
Add setting [`ltex.clearDiagnosticsWhenClosingFile`](https://ltex-plus.github.io/ltex-plus/settings.html#ltexcleardiagnosticswhenclosingfile)
</action>
<action type="update">
Skip front matter in Markdown
</action>
<action type="update">
Ignore more LaTeX preamble commands (e.g., `\automark`, `\color`, `\DeclareSIUnit`, `\directlua`, `\setuptoc`)
</action>
<action type="add">
Add support for German babel hyphenation commands `"-`, `""`, `"|`, `"=`, `"~`
</action>
<action type="update">
Use non-breaking space for `~`
</action>
</release>
<release version="6.1.1" date="2020-07-26">
<action type="fix" issue="valentjn/vscode-ltex#80">
Fix another problem with spaces in paths on Windows
</action>
</release>
<release version="6.1.0" date="2020-07-26">
<action type="add" issue="valentjn/vscode-ltex#39">
LTeX LS support for Java 8 will end on November 1, 2020 (see [documentation](https://ltex-plus.github.io/ltex-plus/old/deprecation-of-java-8.html))
</action>
<action type="add" issue="valentjn/vscode-ltex#81">
Add support for babel commands (see [documentation](https://ltex-plus.github.io/ltex-plus/advanced-usage.html#multilingual-latex-documents-with-the-babel-package))
</action>
<action type="fix" issue="valentjn/vscode-ltex#80">
Fix problems with spaces in paths on Windows
</action>
</release>
<release version="6.0.2" date="2020-07-11">
<action type="update" issue="valentjn/vscode-ltex#75">
Make Windows startup script (`ltex-ls.bat`) honor `JAVA_HOME`
</action>
</release>
<release version="6.0.1" date="2020-07-02">
<action type="fix" issue="valentjn/vscode-ltex#68">
Fix freezes when checking German text by working around [languagetool-org/languagetool#3181](https://github.com/languagetool-org/languagetool/issues/3181) introduced by LanguageTool 5.0
</action>
</release>
<release version="6.0.0" date="2020-06-28">
<action type="update">
Update LanguageTool to 5.0 (see [LT 5.0 release notes](https://github.com/languagetool-org/languagetool/blob/v5.0/languagetool-standalone/CHANGES.md#50-2020-06-27))
</action>
<action type="update" issue="valentjn/vscode-ltex#46">
Delay diagnostics at the current caret position (e.g., incomplete word or sentence) until the user has finished typing
</action>
<action type="add" issue="valentjn/vscode-ltex#67">
Add `enabled` to magic comments
</action>
<action type="fix" issue="valentjn/vscode-ltex#63">
Fix `\todo` couldn't be ignored
</action>
<action type="fix">
Fix wrong language-dependent settings used for magic comments
</action>
<action type="fix">
Fix add to dictionary and disable rule quick fixes using wrong language when used with magic comments
</action>
<action type="fix">
Improve code quality by fixing hundreds of Checkstyle, SpotBugs, and Checker Framework warnings
</action>
<action type="update">
Migrate from Gradle to Maven
</action>
<action type="update">
Update Maven dependencies
</action>
</release>
<release version="5.0.0" date="2020-06-01">
<action type="add" issue="valentjn/vscode-ltex#6">
Include all languages in LTeX LS; this removes the need for language support extensions
</action>
<action type="update">
Adhere to [semantic versioning](https://semver.org/). This means that the version of LTeX LS is not tied to the version of LanguageTool anymore, as the version of LanguageTool is not a semantic version. LTeX LS 5.0.0 uses LanguageTool 4.9.
</action>
<action type="update">
Rename `ltex.<LANGUAGE>.dictionary` → [`ltex.dictionary`](https://ltex-plus.github.io/ltex-plus/settings.html#ltexdictionary) (object with `<LANGUAGE>` keys)
</action>
<action type="update">
Rename `ltex.<LANGUAGE>.disabledRules` → [`ltex.disabledRules`](https://ltex-plus.github.io/ltex-plus/settings.html#ltexdisabledrules) (object with `<LANGUAGE>` keys)
</action>
<action type="update">
Rename `ltex.<LANGUAGE>.enabledRules` → [`ltex.enabledRules`](https://ltex-plus.github.io/ltex-plus/settings.html#ltexenabledrules) (object with `<LANGUAGE>` keys)
</action>
<action type="update">
Rename `ltex.javaHome` → [`ltex.java.path`](https://ltex-plus.github.io/ltex-plus/settings.html#ltexjavapath)
</action>
<action type="update">
Rename `ltex.performance.initialJavaHeapSize` → [`ltex.java.initialHeapSize`](https://ltex-plus.github.io/ltex-plus/settings.html#ltexjavainitialheapsize)
</action>
<action type="update">
Rename `ltex.performance.maximumJavaHeapSize` → [`ltex.java.maximumHeapSize`](https://ltex-plus.github.io/ltex-plus/settings.html#ltexjavamaximumheapsize)
</action>
<action type="update">
Rename `ltex.performance.sentenceCacheSize` → [`ltex.sentenceCacheSize`](https://ltex-plus.github.io/ltex-plus/settings.html#ltexsentencecachesize)
</action>
<action type="add" issue="valentjn/vscode-ltex#36">
Add support for external LanguageTool HTTP servers
</action>
<action type="add" issue="valentjn/vscode-ltex#21">
Add support for magic comments, enables changing the language in the middle of documents
</action>
<action type="fix" issue="valentjn/vscode-ltex#42">
Check `\footnote` and `\todo` contents separately, preventing “double period” warnings
</action>
<action type="add" issue="valentjn/vscode-ltex#43">
Add support for more BibLaTeX citation commands, add support for plural dummies, add support for `\eg`, `\egc`, `\ie`, `\iec`
</action>
<action type="add">
Add visual feedback in status bar during startup and checks that take a long time
</action>
<action type="remove" issue="valentjn/vscode-ltex#41">
Remove `null` types and default values from settings, use empty string/array/object instead
</action>
<action type="update">
Use proper server/client model for language server/client
</action>
<action type="update">
Make documentation of vscode-ltex more extensive, put it on own [website](https://valentjn.github.io/ltex)
</action>
</release>
<release version="4.9.3" date="2020-05-07">
<action type="update">
Revert to Java 8
</action>
<action type="remove">
Remove support for external LanguageTool HTTP servers
</action>
</release>
<release version="4.9.2" date="2020-05-06">
<action type="update">
Update required version of Java (now 11 or newer)
</action>
<action type="add" issue="valentjn/vscode-ltex#36">
Add support for external LanguageTool HTTP servers
</action>
<action type="add" issue="valentjn/vscode-ltex#37">
Add support for `\autoref`, `\pageref`, `\autopageref`
</action>
</release>
<release version="4.9.1" date="2020-05-01">
<action type="fix" issue="valentjn/vscode-ltex#29">
Fix sentence cache was invalidated when a single ignore sentence rule was present
</action>
<action type="update" issue="valentjn/vscode-ltex#35">
Use thin non-breaking space for `\,`
</action>
</release>
<release version="4.9.0" date="2020-03-28">
<action type="update">
Update LanguageTool to 4.9 (see [LT 4.9 release notes](https://github.com/languagetool-org/languagetool/blob/v4.9/languagetool-standalone/CHANGES.md#49-2020-03-24))
</action>
<action type="update">
Update other Java dependencies
</action>
<action type="update">
Reduce file size (omitting unneeded dependencies)
</action>
</release>
<release version="4.7.10" date="2020-03-12">
<action type="fix" issue="valentjn/vscode-ltex#27">
Fix spelling errors for French dummies
</action>
<action type="fix">
Fix `\dots` in math mode being interpreted as `...`
</action>
</release>
<release version="4.7.9" date="2020-02-29">
<action type="update">
Update Markdown parser Flexmark to 0.60.2; this increases the speed of parsing Markdown
</action>
<action type="add" issue="valentjn/vscode-ltex#26">
Add possibility to ignore Markdown elements or replace them by dummy words via `ltex.markdown.ignore` and `ltex.markdown.dummy`
</action>
<action type="update">
Ignore Markdown code blocks by default
</action>
<action type="update">
Replace auto-links and inline Markdown code with dummy words by default
</action>
<action type="fix">
Fix match positions were sometimes off by one, especially in Markdown documents
</action>
<action type="update">
Rewrite `MarkdownAnnotatedTextBuilder`
</action>
</release>
<release version="4.7.8" date="2020-02-16">
<action type="add" issue="valentjn/vscode-ltex#22">
Add support for R Sweave `.rnw` files
</action>
<action type="update" issue="valentjn/vscode-ltex#23">
Enable fixing multiple diagnostics at once
</action>
<action type="add" issue="valentjn/vscode-ltex#25">
Add support for `\euro`
</action>
</release>
<release version="4.7.7" date="2019-11-23">
<action type="update">
No changes, dummy release
</action>
</release>
<release version="4.7.6" date="2019-11-10">
<action type="add">
Add `ltex.performance` settings to give users more control over Java's RAM usage
</action>
<action type="update">
Change default initial Java heap size to 64 MB
</action>
<action type="update">
Change default maximum Java heap size to 512 MB
</action>
<action type="update">
Change default sentence cache size from 10000 to 2000 sentences
</action>
</release>
<release version="4.7.5" date="2019-10-22">
<action type="update">
Enable ignoring environments such as `lstlisting` and `verbatim`
</action>
<action type="add">
Add `ltex.environments.ignore` setting for defining own environments to ignore
</action>
</release>
<release version="4.7.4" date="2019-10-15">
<action type="add">
Add `disabledRules` and `enabledRules` settings (requires update of language extensions)
</action>
<action type="add">
Add `disable rule` quick fix
</action>
<action type="fix">
Fix a bug where the `codeAction` request gets stuck in infinite loop
</action>
<action type="fix">
Fix another `NullPointerException` for word2vec
</action>
</release>
<release version="4.7.3" date="2019-10-07">
<action type="fix" issue="valentjn/vscode-ltex#12">
Fix null pointer error for word2vec quick fixes
</action>
</release>
<release version="4.7.2" date="2019-10-02">
<action type="add">
Add missing error message if legacy false friends could not be loaded
</action>
</release>
<release version="4.7.1" date="2019-10-02">
<action type="add" issue="valentjn/vscode-ltex#11">
Add [`ltex.additionalRules.motherTongue`](https://ltex-plus.github.io/ltex-plus/settings.html#ltexadditionalrulesmothertongue) setting to enable detection of false friends