Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
kalkin committed May 1, 2020
1 parent 96a49e2 commit 6648273
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 3 deletions.
25 changes: 24 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,30 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [v1.4.0] - 2020-05-01

### Added

- config file support
- documentation for the config file
- commit type icon column
- separate icon set using NerdFont icons for icon column
- support ’..’ (two-dot) Range Notation as REVISION argument
- Tab key switches focus between views
- use vertical split if screen width ≥160

### Fixed

- assert insert-mode when search keybinding is triggered
- diff view render modules joined by a ’,’
- fetch pr & issues from GitHub for remotes ending with '.git'
- search for a string containing char ’q’

### Refactored

- Move module string construction from `Commit` to `LogEntry`
- container names in the layout

## [v1.3.0] - 2020-04-19

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


### Changed

- rename package to 'git-log-viewer'
Expand Down
2 changes: 1 addition & 1 deletion glv/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
from glv.ui.history import HistoryContainer
from glv.utils import repo_from_args, screen_height, screen_width

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

LOG = logging.getLogger('glv')
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

setuptools.setup(
name="git-log-viewer",
version="1.3.0",
version="1.4.0",
python_requires='>=3.6',
author="Bahtiar `kalkin` Gadimov",
author_email="[email protected]",
Expand Down

0 comments on commit 6648273

Please sign in to comment.