Releases: jaspernbrouwer/powerline-gitstatus
Releases · jaspernbrouwer/powerline-gitstatus
v1.3.3
v1.3.2
- Fix command injection via malicious repository config (CVE-2022-42906)
- Create a configuration option (
untracked_not_dirty
) that prevents untracked files alone from marking the branch status - README improvements
v1.3.1
- New
format
argument allowing to customisation of the segment symbols - New
last
,annotated
,contains
andexact
options forshow_tag
argument. The behavior whenshow_tag
isTrue
changed fromlast
toexact
- New
detached_head_style
argument - Bypass the user-defined locale, fixes detached HEAD display when user has non-English locale
v1.2.0
Introduced the show_tag
argument, which shows the most recent tag reachable in the current branch.
v1.1.0
Introduced the use_dash_c
argument.
When true
(the default), we will call git
with the -C
argument, but that requires git 1.8.5 or higher.
When that requirement cannot be met, one can pass false
, which will fall back to the --git-dir
and --work-tree
arguments. Because we need to traverse the current working directory up to root and search for a .git
directory, this options is less performant and accurate. Therefor using git 1.8.5 or higher is recommended.
This release should solve the working directory issues (#1 and #4) once and for all!