Skip to content

Commit 06e4a3f

Browse files
authored
Update changelog and readme (#204)
Update changelog and readme (#204)
1 parent e2aedd7 commit 06e4a3f

File tree

3 files changed

+29
-4
lines changed

3 files changed

+29
-4
lines changed

CHANGELOG.md

Lines changed: 17 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,16 @@
1+
## [1.6.0] - 2022-10-10
2+
a. Added quick help in VS Code editor on mouse hover.
3+
4+
b. Enhanced auto-completion for DCL files.
5+
6+
c. Bug fixes.
7+
8+
19
## [1.5.0] - 2021-05-28
2-
a. Added the ability to generate a short comment above a user defined function for the programmer to complete.
10+
a. Added the ability to generate a short comment above a user defined function for the programmer to complete.
11+
12+
b. Fixed a few bugs.
313

4-
b. Fixed a few bugs.
514

615
## [1.4.0] - 2021-02-19
716
a. Added the ability to open the reference documentation of a built-in function or DCL tile/attribute when a LSP or DCL file is open. Select a function or DCL tile/attribute, and then right-click and choose "Open Online Help" to open the associated reference documentation.
@@ -12,9 +21,11 @@ c. Added support to go to the definition of a user-defined function or variable.
1221

1322
d. Fixed an issue with DCL comments and some other minor issues.
1423

24+
1525
## [1.3.2] - 2020-12-17
1626
Remove the call to the deprecated vscode APIs
1727

28+
1829
## [1.3.0] - 2020-06-12
1930
a. Support AutoLISP project editing. Support find and replace in the open project.
2031

@@ -24,15 +35,19 @@ b. Manage debug configuration with VS Code settings. The use of Launch.json for
2435
## [1.2.0] - 2020-03-23
2536
Support extension localization, support AutoCAD commands and sysvars in autocompletion within the string expression like (command "_line").
2637

38+
2739
## [1.1.0] - 2020-01-19
2840
Refine lisp code formatter and auto indent
2941

42+
3043
## [1.0.2] - 2020-01-02
3144
Initial release to VSCode marketplace
3245

46+
3347
## [0.1.4] – 2019-09-18
3448
Initial preview release for Mac OS.
3549

50+
3651
## [0.1.3] – 2019-07-10
3752
a. Intellisense has been added for all native AutoLISP and Visual LISP symbols (functions and variables). This functionality is like that of the Apropos window feature of the Visual LISP IDE.
3853

README.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,11 @@ Your feedback is highly appreciated! Should you have any suggestions, please cre
3131
* Easy access to online documentation through the context menu (selection sensitive)
3232
* Go to definition
3333
* Insert code region
34+
* Generate documentation for user defined function
35+
* Rename symbol
36+
* Go to references
37+
* Quick help on mouse hover
38+
* Add @Global in comment to expose symbol to workspace aware operations
3439

3540
3. AutoLISP Project
3641
* Open a project (.prj)
@@ -139,6 +144,11 @@ See [here](NOTICE.md).
139144
- 通过上下文菜单轻松访问在线文档(选择敏感)
140145
- 转到定义
141146
- 插入代码区域
147+
- 为自定义函数生成注释
148+
- 重命名符号
149+
- 转到引用
150+
- 鼠标悬停显示帮助
151+
- 在注释中添加 @Global 以将符号公开给工作区感知操作
142152
3. AutoLISP 项目
143153
- 打开项目(.prj)
144154
- 创建项目

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "autolispext",
33
"displayName": "AutoCAD AutoLISP Extension",
44
"description": "This is a vscode extension for AutoCAD AutoLISP",
5-
"version": "1.5.1",
5+
"version": "1.5.2",
66
"license": "SEE LICENSE IN LICENSE.md",
77
"bugs": {
88
"url": "https://github.com/Autodesk-AutoCAD/AutoLispExt/issues"
@@ -292,7 +292,7 @@
292292
"editor.autoIndent": "brackets",
293293
"files.encoding": "utf8",
294294
"editor.suggest.localityBonus": false,
295-
"editor.wordSeparators": "=;{}\":",
295+
"editor.wordSeparators": "=;{}\":",
296296
"editor.suggestSelection": "first",
297297
"editor.suggest.insertMode": "insert",
298298
"editor.suggest.snippetsPreventQuickSuggestions": false

0 commit comments

Comments
 (0)