diff --git a/CHANGELOG.md b/CHANGELOG.md index c84205f9..48de8b09 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,10 +1,11 @@ -## [1.4.0] - 2020-09-21 +## [1.4.0] - 2021-01-20 a. Added Right Click -> 'Open Online Help' feature. This makes it possible for users to quickly access official documentation on a selected symbol. +b. Support to insert custom regions. +c. F12 "Go to definition" support. +d. Fix DCL comments issue and other minor bugs. -b. Online Help GUID targets were provided by a new data source (webHelpAbstraction.json) that will likely be used to provide future intellisense enhancements - -c. Fixed a bug with DCL comments. Both single line and Block comments should now be working. - +## [1.3.2] - 2020-12-17 +Remove the call to the deprecated vscode APIs ## [1.3.0] - 2020-06-12 a. Support AutoLISP project editing. Support find and replace in the open project. diff --git a/extension/src/help/openWebHelp.ts b/extension/src/help/openWebHelp.ts index 5a94251a..33607f1e 100644 --- a/extension/src/help/openWebHelp.ts +++ b/extension/src/help/openWebHelp.ts @@ -148,7 +148,7 @@ class WebHelpEntity { static getDefaultHelpLink(): string { let lang: string = WebHelpEntity.getLanguageUrlDomain(); - let year: number = new Date().getFullYear() + 1; + let year: number = new Date().getFullYear(); return "https://help.autodesk.com/view/OARX/" + year.toString() + lang; }