version 0.12.1

This commit is contained in:
Kovid Goyal 2018-09-08 05:22:02 +05:30
parent cca672e536
commit 7438e0e997
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C
2 changed files with 5 additions and 2 deletions

View File

@ -3,7 +3,7 @@ Changelog
|kitty| is a feature full, cross-platform, *fast*, GPU based terminal emulator.
0.12.1 [future]
0.12.1 [2018-09-08]
------------------------------
- Add a new :option:`kitty --start-in-fullscreen` command line flag to start
@ -43,6 +43,9 @@ Changelog
- Linux: Fix crash with some Nvidia drivers when creating tabs in the first
top level-window after creating a second top-level window. (:iss:`873`)
- macOS: Diff kitten: Fix syntax highlighting not working because of
a bug in the 0.12.0 macOS package
0.12.0 [2018-09-01]
------------------------------

View File

@ -9,7 +9,7 @@ from collections import namedtuple
appname = 'kitty'
version = (0, 12, 0)
version = (0, 12, 1)
str_version = '.'.join(map(str, version))
_plat = sys.platform.lower()
is_macos = 'darwin' in _plat