1
1
mirror of https://github.com/kahole/edamagit.git synced 2024-09-11 07:15:31 +03:00

changelog

This commit is contained in:
kahole 2021-04-08 20:06:56 +02:00
parent af23a485df
commit aa932b876d
4 changed files with 9 additions and 4 deletions

View File

@ -1,5 +1,8 @@
# Changelog # Changelog
## [0.6.9] - 2021-04-08
- Adds setting `magit.hide-status-sections` to hide listed sections from status view. @dandavison (Dan Davison)
## [0.6.8] - 2021-04-02 ## [0.6.8] - 2021-04-02
- Fixed issue with commiting on remote windows @stevenguh (Steven Guh) - Fixed issue with commiting on remote windows @stevenguh (Steven Guh)

View File

@ -85,7 +85,9 @@ Essential commands
## Settings ## Settings
- `Forge-enabled`: Enable Forge functionality (show pull requests, issues, etc from e.g. Github) - `Forge-enabled`: Enable Forge functionality (show pull requests, issues, etc from e.g. Github)
- `Display-buffer-function`: choose which side for magit windows to open on. - `Display-buffer-function`: Choose which side for magit windows to open on.
- `Hide-status-sections`: Hide listed sections from status view.
- `Quick-switch-enabled`: Automatically confirm switch menu after enabling a switch (e.g. --force)
## Vim support (VSCodeVim) ## Vim support (VSCodeVim)

2
package-lock.json generated
View File

@ -1,6 +1,6 @@
{ {
"name": "magit", "name": "magit",
"version": "0.6.8", "version": "0.6.9",
"lockfileVersion": 1, "lockfileVersion": 1,
"requires": true, "requires": true,
"dependencies": { "dependencies": {

View File

@ -7,7 +7,7 @@
"author": { "author": {
"name": "Kristian Andersen Hole" "name": "Kristian Andersen Hole"
}, },
"version": "0.6.8", "version": "0.6.9",
"engines": { "engines": {
"vscode": "^1.50.0" "vscode": "^1.50.0"
}, },
@ -408,7 +408,7 @@
"magit.quick-switch-enabled": { "magit.quick-switch-enabled": {
"type": "boolean", "type": "boolean",
"default": false, "default": false,
"description": "Enable quick switch where the switch menu will exit on selection" "description": "Enable automatic confirm for switch menu after enabling a switch (e.g. --force)"
} }
} }
}, },