Skip to content

Commit e89e058

Browse files
refine CHANGELOG and fix online help bug (#67)
##### Objective In this commit I want to fix the online help bug, because the latest AutoCAD has not been released, so the ACAD2022 help can not get. And I also refined the changelog text. ##### Abstractions Our tester complains these two issues to us that the "online help" is broken at this point that the new AutoCAD 2022 has not been released. And the change log text is also not correct. So in this commit I aimed to resolve those two issues. ##### Tests performed - to test the "Online help" can work well for built in keywords ##### Screen shot Not applicable for this PR
1 parent 4513a13 commit e89e058

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

CHANGELOG.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
1-
## [1.4.0] - 2020-09-21
1+
## [1.4.0] - 2021-01-20
22
a. Added Right Click -> 'Open Online Help' feature. This makes it possible for users to quickly access official documentation on a selected symbol.
3+
b. Support to insert custom regions.
4+
c. F12 "Go to definition" support.
5+
d. Fix DCL comments issue and other minor bugs.
36

4-
b. Online Help GUID targets were provided by a new data source (webHelpAbstraction.json) that will likely be used to provide future intellisense enhancements
5-
6-
c. Fixed a bug with DCL comments. Both single line and Block comments should now be working.
7-
7+
## [1.3.2] - 2020-12-17
8+
Remove the call to the deprecated vscode APIs
89

910
## [1.3.0] - 2020-06-12
1011
a. Support AutoLISP project editing. Support find and replace in the open project.

extension/src/help/openWebHelp.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ class WebHelpEntity {
148148

149149
static getDefaultHelpLink(): string {
150150
let lang: string = WebHelpEntity.getLanguageUrlDomain();
151-
let year: number = new Date().getFullYear() + 1;
151+
let year: number = new Date().getFullYear();
152152
return "https://help.autodesk.com/view/OARX/" + year.toString() + lang;
153153
}
154154

0 commit comments

Comments
 (0)