Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 0.6.0 #186

Merged
merged 2 commits into from
Jun 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# Changelog

# v0.6.0

### What's New

- Configuration changes:
* `fossil.path` option can change `fossil` path without restart
* `fossil.path` and `fossil.username` options are of string type now, i.e. easily editable in "Settings" panel
* Remove `fossil.enabled` option
- Warn user when `fossil` executable is not found
- Log output with timestamp and log level


# v0.5.7

### What's New
Expand Down
2 changes: 1 addition & 1 deletion docs/dev/api.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ _Work in progress_.
| fossil.fileLog | Show file history... |
| fossil.forget | Forget Files |
| fossil.ignore | Add to ignore-glob | •&nbsp;Command palette<br>•&nbsp;Untracked submenu | 1. Modify `/.fossil-settings/ignore-glob`<br>2. Add `ignore-glob` to the current checkout (not staging)<br>3. Show ignore-glob file
| fossil.init | Initialize Fossil Repository |
| fossil.init | Initialize Fossil Repository | •&nbsp;Main SCM menu<br>•&nbsp;Command palette | 1. Ask `.fossil` path<br>2. Ask project name<br>3. Ask project description<br>4. Run `fossil init`<br>5. Ask to open repository
| fossil.integrate | Integrate into working directory... |
| fossil.log | Log... |
| fossil.merge | Merge into working directory... |
Expand Down
2 changes: 1 addition & 1 deletion docs/dev/release.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# How to release vscode-fossil extension

## Desribe the changes
## Describe the changes
1. Update version in `package.json`
1. Update `CHANGELOG.md`

Expand Down
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"bugs": {
"url": "https://github.com/koog1000/vscode-fossil/issues"
},
"version": "0.5.7",
"version": "0.6.0",
"engines": {
"vscode": "^1.36.0"
},
Expand Down Expand Up @@ -1058,7 +1058,8 @@
},
"fossil.path": {
"type": "string",
"description": "%config.path%"
"description": "%config.path%",
"scope": "machine"
},
"fossil.username": {
"type": "string",
Expand Down