Skip to content

Commit

Permalink
release: 2.0.0-preview
Browse files Browse the repository at this point in the history
  • Loading branch information
hangxingliu committed Nov 26, 2023
1 parent e1b2490 commit 9f47f2d
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 17 deletions.
23 changes: 13 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,16 +21,19 @@ Help you write systemd configurations in Visual Studio Code

## Changelog

### 1.0.0 (2021-12-18)

- Refactor the extension
- Rewrite the syntax config to fix incorrect highlight
- Update directives and their documents to the latest
- Add the configuration parser for more accurate language features
- Add more autocompletion
- Add liner for directive names
- Add document for directives and specifiers
- Support running on the browser <https://vscode.dev>
### 2.0.0-preview (2023-11-26)

- Add [Podman](https://docs.podman.io/en/latest/markdown/podman-systemd.unit.5.html) into the support
- Related issue: <https://github.com/hangxingliu/vscode-systemd/issues/7>
- Add more completion and docs for directive value
- Related issue: <https://github.com/hangxingliu/vscode-systemd/issues/8>
- Add completion for well-known unit names (`network-online.target`, ...)
- Improve the accuracy of variant completion based on file path and section name
- Fix links in completion/help documents
- Add `.dnssd` as an extension
- Add more systemd sections into the support
- Update directives to version 255 and remove incorrect directives
- Refactor the related code to hint data manager

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

Expand Down
14 changes: 14 additions & 0 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# CHANGELOG

### 2.0.0-preview (2023-11-26)

- Add [Podman](https://docs.podman.io/en/latest/markdown/podman-systemd.unit.5.html) into the support
- Related issue: <https://github.com/hangxingliu/vscode-systemd/issues/7>
- Add more completion and docs for directive value
- Related issue: <https://github.com/hangxingliu/vscode-systemd/issues/8>
- Add completion for well-known unit names (`network-online.target`, ...)
- Improve the accuracy of variant completion based on file path and section name
- Fix links in completion/help documents
- Add `.dnssd` as an extension
- Add more systemd sections into the support
- Update directives to version 255 and remove incorrect directives
- Refactor the related code to hint data manager

### 1.0.0 (2021-12-18)

- Refactor the extension
Expand Down
1 change: 1 addition & 0 deletions docs/TODO.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,4 @@
- [ ] capabilities
- https://man7.org/linux/man-pages/man7/capabilities.7.html
- [ ] View, search and edit remote unit files
- [ ] Completion/Syntax for time spans, e.g., `OnCalendar=`, `weekly`
9 changes: 2 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@
"icon": "out/assets/icon.png",
"main": "out/index.js",
"browser": "out/index.js",
"version": "1.1.0",
"version": "2.0.0",
"preview": true,
"publisher": "hangxingliu",
"author": "hangxingliu",
"license": "MIT",
Expand Down Expand Up @@ -116,12 +117,6 @@
]
],
"description": "An array contains case-sensitive strings or regex expressions. The extension will add them to the completion list and linter."
},
"systemd.enablePodman": {
"title": "Enable Podman Systemd Directives/Sections",
"type": "boolean",
"default": false,
"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"
}
}
}
Expand Down

0 comments on commit 9f47f2d

Please sign in to comment.