Skip to content

Commit 970658e

Browse files
committed
update changelog
1 parent 14783b4 commit 970658e

2 files changed

Lines changed: 13 additions & 1 deletion

File tree

CodeStats/CodeStatsPackage.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -763,7 +763,7 @@ public static string GetCurrentLanguage() // Code::Stats
763763
if (found && Debug)
764764
Logger.Debug("[GetCurrentLanguage] Detected language \"" + language + "\" with detection type: " + foundDetectionMethod);
765765

766-
if (!found)
766+
if (!found || String.IsNullOrWhiteSpace(language))
767767
language = "Plain text";
768768

769769
return language;

HISTORY.rst

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,18 @@ History
33
-------
44

55

6+
1.1.0 (2022-10-20)
7+
++++++++++++++++++
8+
9+
- Fixed SSL/TLS errors by allowing the use of TLS 1.3, 1.2 and 1.1, plus disallowing use of the older ones
10+
- Fixed stats URL being broken
11+
- Supports editor's selected language for language detection, adds priority settings for detection
12+
- Supports creating custom extension mapping JSON, whose values take precedence over built-in ones
13+
- Fixed "Access violation" exception on exit if no pulses were made before the editor was closed
14+
- Made logging asynchronous, so its I/O operations never block the current thread
15+
- Probably various other fixes I forgot about
16+
17+
618
1.0.1 (2017-12-30)
719
++++++++++++++++++
820

0 commit comments

Comments
 (0)