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

Compare commits

...

2 Commits

Author SHA1 Message Date
Kristian Andersen Hole
64cd537db2 changelog 2023-11-29 12:46:52 +01:00
Kristian Andersen Hole
d62043a2c3 adds context id to commit detail change section
To avoid conflict with status view folding states
2023-11-29 12:45:46 +01:00
4 changed files with 7 additions and 4 deletions

View File

@ -1,5 +1,8 @@
# Changelog
## [0.6.49]
- Fixed issue with folding in commit-detail-view
## [0.6.48]
- Fixed issue where pound symbol in untracked file caused those files to not show up.

4
package-lock.json generated
View File

@ -1,12 +1,12 @@
{
"name": "magit",
"version": "0.6.48",
"version": "0.6.49",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "magit",
"version": "0.6.48",
"version": "0.6.49",
"license": "MIT",
"dependencies": {
"@vscode/iconv-lite-umd": "^0.7.0",

View File

@ -7,7 +7,7 @@
"author": {
"name": "Kristian Andersen Hole"
},
"version": "0.6.48",
"version": "0.6.49",
"engines": {
"vscode": "^1.50.0"
},

View File

@ -17,7 +17,7 @@ export class CommitDetailView extends DocumentView {
constructor(uri: Uri, public commit: MagitCommit, header: string, diffChanges: MagitChange[]) {
super(uri);
const commitTextView = new ChangeSectionView(Section.Changes, diffChanges);
const commitTextView = new ChangeSectionView(Section.Changes, diffChanges, `-commitDetail@${commit.hash}`);
const headerView = new TextView(header);
headerView.isHighlightable = false;