File tree Expand file tree Collapse file tree 3 files changed +26
-3
lines changed Expand file tree Collapse file tree 3 files changed +26
-3
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,30 @@ All notable changes to this project will be documented in this file.
5
5
The format is based on [ Keep a Changelog] ( http://keepachangelog.com/en/1.0.0/ )
6
6
and this project adheres to [ Semantic Versioning] ( http://semver.org/spec/v2.0.0.html ) .
7
7
8
+ ## [ v1.4.0] - 2020-05-01
9
+
10
+ ### Added
11
+
12
+ - config file support
13
+ - documentation for the config file
14
+ - commit type icon column
15
+ - separate icon set using NerdFont icons for icon column
16
+ - support ’..’ (two-dot) Range Notation as REVISION argument
17
+ - Tab key switches focus between views
18
+ - use vertical split if screen width ≥160
19
+
20
+ ### Fixed
21
+
22
+ - assert insert-mode when search keybinding is triggered
23
+ - diff view render modules joined by a ’,’
24
+ - fetch pr & issues from GitHub for remotes ending with '.git'
25
+ - search for a string containing char ’q’
26
+
27
+ ### Refactored
28
+
29
+ - Move module string construction from ` Commit ` to ` LogEntry `
30
+ - container names in the layout
31
+
8
32
## [ v1.3.0] - 2020-04-19
9
33
10
34
### Added
@@ -56,7 +80,6 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
56
80
- use a statusbar for showing search progress
57
81
- improvement: add own custom style
58
82
59
-
60
83
### Changed
61
84
62
85
- rename package to 'git-log-viewer'
Original file line number Diff line number Diff line change 57
57
from glv .ui .history import HistoryContainer
58
58
from glv .utils import repo_from_args , screen_height , screen_width
59
59
60
- ARGUMENTS = docopt (__doc__ , version = 'v1.2 .0' , options_first = True )
60
+ ARGUMENTS = docopt (__doc__ , version = 'v1.4 .0' , options_first = True )
61
61
DEBUG = ARGUMENTS ['--debug' ]
62
62
63
63
LOG = logging .getLogger ('glv' )
Original file line number Diff line number Diff line change 7
7
8
8
setuptools .setup (
9
9
name = "git-log-viewer" ,
10
- version = "1.3 .0" ,
10
+ version = "1.4 .0" ,
11
11
python_requires = '>=3.6' ,
12
12
author = "Bahtiar `kalkin` Gadimov" ,
13
13
author_email = "bahtiar@gadimov.de" ,
You can’t perform that action at this time.
0 commit comments