@kevin314 and I focused heavily on fixing issues for this release.
- Added debug logging of every invocation of the
jj
CLI that the extension performs. You can view this by going to the Outputs view in VS Code and selecting the "Jujutsu Kaizen" output channel.jj
invocations are leveldebug
, so to view them, you'll need to change the log level setting in the viewer from the default ofinfo
todebug
. #27 - Fixed the count badge displayed on the source control view container icon to only include changes in the working copy, not parents. #30 (closes #16)
- jjk now supplies its own config to its
jj
invocations so that user configs don't break jjk functionality. #25 and #31 (closes #13) - Fixed a bug where squashing a file or change in the source control view could lead to indefinite hanging. #33
- Fixed a bug where the gutter diffs would fail to update properly when moving to a change with multiple parents. Now the gutter diffs disappear (rather than showing incorrect diffs) because we don't yet have the ability to compare the working copy against multiple parents. #39
- Moved all VS Code commands from jjk to be under the "Jujutsu" category. This means you can now find all of jjk's commands by typing in Jujutsu in the Command Palette.
- Added support for jj v0.28.0's new
jj status
output. #46 - Fixed a bug where abandoning a change while jjk was in the middle of refreshing the source control view could result in the source control view being unable to update until the extension was restarted. #49
- Fixed incorrect added/deleted/modified decorations for files in the Explorer on Windows. #51 (closes #47)