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 2020-06-29 17:25:11 +02:00
parent 5f55442c45
commit 60c8e61e4e
3 changed files with 11 additions and 3 deletions

View File

@ -1,5 +1,10 @@
# Change Log
### 0.2.4
- bugfixes
Co-contributors: Griffin Schneider, Jack Franklin, and Steven Guh
### 0.2.3
- Adds `magit.display-buffer-function` config option allowing you to choose where new buffers will be displayed.
(thanks @GriffinSchneider Griffin Schneider)

2
package-lock.json generated
View File

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

View File

@ -7,7 +7,7 @@
"author": {
"name": "Kristian Andersen Hole"
},
"version": "0.2.3",
"version": "0.2.4",
"engines": {
"vscode": "^1.42.1"
},
@ -364,7 +364,10 @@
"properties": {
"magit.display-buffer-function": {
"type": "string",
"enum": ["other-column", "same-column"],
"enum": [
"other-column",
"same-column"
],
"default": "other-column",
"description": "Choose where new buffers will be displayed."
}