Skip to content

Commit 6648273

Browse files
committed
Release glv@v1.4.0
1 parent 96a49e2 commit 6648273

File tree

3 files changed

+26
-3
lines changed

3 files changed

+26
-3
lines changed

CHANGELOG.md

Lines changed: 24 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,30 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
66
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
77

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+
832
## [v1.3.0] - 2020-04-19
933

1034
### Added
@@ -56,7 +80,6 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
5680
- use a statusbar for showing search progress
5781
- improvement: add own custom style
5882

59-
6083
### Changed
6184

6285
- rename package to 'git-log-viewer'

glv/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
from glv.ui.history import HistoryContainer
5858
from glv.utils import repo_from_args, screen_height, screen_width
5959

60-
ARGUMENTS = docopt(__doc__, version='v1.2.0', options_first=True)
60+
ARGUMENTS = docopt(__doc__, version='v1.4.0', options_first=True)
6161
DEBUG = ARGUMENTS['--debug']
6262

6363
LOG = logging.getLogger('glv')

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
setuptools.setup(
99
name="git-log-viewer",
10-
version="1.3.0",
10+
version="1.4.0",
1111
python_requires='>=3.6',
1212
author="Bahtiar `kalkin` Gadimov",
1313
author_email="bahtiar@gadimov.de",

0 commit comments

Comments
 (0)