Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: kahole/edamagit
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 4a52f757d6791fc4f0a52322c9e89fbcca05b65f
Choose a base ref
..
head repository: kahole/edamagit
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 154822599bd5259b0834a8dc9eb92cd0129aa2ef
Choose a head ref
Showing with 7 additions and 4 deletions.
  1. +3 −0 CHANGELOG.md
  2. +2 −2 package-lock.json
  3. +1 −1 package.json
  4. +1 −1 src/views/commitDetailView.ts
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -7,7 +7,7 @@
"author": {
"name": "Kristian Andersen Hole"
},
"version": "0.6.48",
"version": "0.6.49",
"engines": {
"vscode": "^1.50.0"
},
2 changes: 1 addition & 1 deletion src/views/commitDetailView.ts
Original file line number Diff line number Diff line change
@@ -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;