Skip to content

Commit 7d0d6de

Browse files
committed
updated CHANGELOG
changed github workflow to lix
1 parent 9f3e6e4 commit 7d0d6de

File tree

5 files changed

+27
-18
lines changed

5 files changed

+27
-18
lines changed

.github/workflows/main.yml

+2-3
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,5 @@ jobs:
77
runs-on: ubuntu-latest
88
steps:
99
- uses: actions/checkout@v2
10-
- uses: krdlab/[email protected]
11-
- run: haxelib install vscode
12-
- run: haxe build-release.hxml
10+
- run: npm install
11+
- run: npx haxe build-release.hxml

.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
out
22
*.vsix
3-
3+
node_modules

.haxerc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
2-
"version": "a8f2911",
2+
"version": "779b005",
33
"resolveLibs": "scoped"
44
}

CHANGELOG.md

+18-11
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Codedox change log
22

3+
## 1.3.2
4+
5+
* fixed compatibility issue with vshaxe 2.24.x
6+
37
## 1.3.1
48

59
* replicate vshaxe onEnter rules as codedox overwrites them
@@ -15,11 +19,11 @@
1519

1620
## 1.2.8
1721

18-
* Change default comment prefix and formatting to better display in vshaxe and Dox.
22+
* Change default comment prefix and formatting to better display in vshaxe and Dox.
1923

2024
## 1.2.7
2125

22-
* Fixed broken indentation with a `commentprefix` that only contains whitespace; see [issue 26](https://github.com/vshaxe/codedox/issues/26)
26+
* Fixed broken indentation with a `commentprefix` that only contains whitespace; see [issue 26](https://github.com/vshaxe/codedox/issues/26)
2327

2428
## 1.2.6
2529

@@ -55,21 +59,24 @@
5559
* Added option to include/remove the '?' prefix for optional function args in @param tags
5660

5761
## 1.2.1
62+
5863
* Allow customizable formats for @param and @return tags. [issue 1](https://github.com/vshaxe/codedox/issues/1)
5964

6065
## 1.2.0
66+
6167
* Setup wizard to create minimal config without editing settings.json by hand
6268

6369
* Include built-in file header license templates
64-
* GNU Affero General Public License
65-
* Apache License, Version 2.0
66-
* GNU General Public License, Version 3.0
67-
* MIT License
68-
* Mozilla Public License, Version 2.0
70+
* GNU Affero General Public License
71+
* Apache License, Version 2.0
72+
* GNU General Public License, Version 3.0
73+
* MIT License
74+
* Mozilla Public License, Version 2.0
6975
* Better support for non-function related comments
70-
* Documentation added to [README.md](./README.md)
71-
* Built-in file header params
72-
* Built-in license templates
76+
* Documentation added to [README.md](./README.md)
77+
* Built-in file header params
78+
* Built-in license templates
7379

7480
## 1.1.0
75-
- Initial submission to VS Code Marketplace
81+
82+
* Initial submission to VS Code Marketplace

package.json

+5-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "codedox",
33
"displayname": "Codedox for Haxe",
44
"description": "JSDoc-style comments for Haxe. @param and @return tags, plus customizable file header license and copyright comments.",
5-
"version": "1.3.1",
5+
"version": "1.3.2",
66
"publisher": "wiggin77",
77
"license": "(MIT) View license in LICENSE.md",
88
"engines": {
@@ -39,6 +39,9 @@
3939
"scripts": {
4040
"vscode:prepublish": "haxe build-release.hxml"
4141
},
42+
"dependencies": {
43+
"lix": "^15.12.0"
44+
},
4245
"contributes": {
4346
"commands": [
4447
{
@@ -202,4 +205,4 @@
202205
"publisherDisplayName": "wiggin77",
203206
"publisherId": "577d2b04-bb43-4547-901e-a50f7565b354"
204207
}
205-
}
208+
}

0 commit comments

Comments
 (0)