Skip to content

Commit 9f47f2d

Browse files
committed
release: 2.0.0-preview
1 parent e1b2490 commit 9f47f2d

File tree

4 files changed

+30
-17
lines changed

4 files changed

+30
-17
lines changed

README.md

Lines changed: 13 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -21,16 +21,19 @@ Help you write systemd configurations in Visual Studio Code
2121

2222
## Changelog
2323

24-
### 1.0.0 (2021-12-18)
25-
26-
- Refactor the extension
27-
- Rewrite the syntax config to fix incorrect highlight
28-
- Update directives and their documents to the latest
29-
- Add the configuration parser for more accurate language features
30-
- Add more autocompletion
31-
- Add liner for directive names
32-
- Add document for directives and specifiers
33-
- Support running on the browser <https://vscode.dev>
24+
### 2.0.0-preview (2023-11-26)
25+
26+
- Add [Podman](https://docs.podman.io/en/latest/markdown/podman-systemd.unit.5.html) into the support
27+
- Related issue: <https://github.com/hangxingliu/vscode-systemd/issues/7>
28+
- Add more completion and docs for directive value
29+
- Related issue: <https://github.com/hangxingliu/vscode-systemd/issues/8>
30+
- Add completion for well-known unit names (`network-online.target`, ...)
31+
- Improve the accuracy of variant completion based on file path and section name
32+
- Fix links in completion/help documents
33+
- Add `.dnssd` as an extension
34+
- Add more systemd sections into the support
35+
- Update directives to version 255 and remove incorrect directives
36+
- Refactor the related code to hint data manager
3437

3538
See [CHANGELOG.md](docs/CHANGELOG.md)
3639

docs/CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# CHANGELOG
22

3+
### 2.0.0-preview (2023-11-26)
4+
5+
- Add [Podman](https://docs.podman.io/en/latest/markdown/podman-systemd.unit.5.html) into the support
6+
- Related issue: <https://github.com/hangxingliu/vscode-systemd/issues/7>
7+
- Add more completion and docs for directive value
8+
- Related issue: <https://github.com/hangxingliu/vscode-systemd/issues/8>
9+
- Add completion for well-known unit names (`network-online.target`, ...)
10+
- Improve the accuracy of variant completion based on file path and section name
11+
- Fix links in completion/help documents
12+
- Add `.dnssd` as an extension
13+
- Add more systemd sections into the support
14+
- Update directives to version 255 and remove incorrect directives
15+
- Refactor the related code to hint data manager
16+
317
### 1.0.0 (2021-12-18)
418

519
- Refactor the extension

docs/TODO.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,4 @@
66
- [ ] capabilities
77
- https://man7.org/linux/man-pages/man7/capabilities.7.html
88
- [ ] View, search and edit remote unit files
9+
- [ ] Completion/Syntax for time spans, e.g., `OnCalendar=`, `weekly`

package.json

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@
55
"icon": "out/assets/icon.png",
66
"main": "out/index.js",
77
"browser": "out/index.js",
8-
"version": "1.1.0",
8+
"version": "2.0.0",
9+
"preview": true,
910
"publisher": "hangxingliu",
1011
"author": "hangxingliu",
1112
"license": "MIT",
@@ -116,12 +117,6 @@
116117
]
117118
],
118119
"description": "An array contains case-sensitive strings or regex expressions. The extension will add them to the completion list and linter."
119-
},
120-
"systemd.enablePodman": {
121-
"title": "Enable Podman Systemd Directives/Sections",
122-
"type": "boolean",
123-
"default": false,
124-
"markdownDescription": "[Podman](https://docs.podman.io/en/latest/index.html) is a daemonless, open source, Linux native tool designed to make it easy to find, run, build, share and deploy applications using Open Containers Initiative (OCI) Containers and Container Images. \nEnable this config to tell this extension to activate the following features:\n1. Treat \"*.container\"/\"*.volume\"/\"*.kube\" as systemd configuration\n2. Highlight and hint all Podman sections/directives during editing of systemd configuration"
125120
}
126121
}
127122
}

0 commit comments

Comments
 (0)