version 0.12.3

This commit is contained in:
Kovid Goyal 2018-09-29 09:15:40 +05:30
parent 7eb234c250
commit b0d34b136f
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C
2 changed files with 2 additions and 2 deletions

View File

@ -3,7 +3,7 @@ Changelog
|kitty| is a feature full, cross-platform, *fast*, GPU based terminal emulator. |kitty| is a feature full, cross-platform, *fast*, GPU based terminal emulator.
0.12.3 [future] 0.12.3 [2018-09-29]
------------------------------ ------------------------------
- macOS: Fix kitty window not being rendered on macOS Mojave until the window is - macOS: Fix kitty window not being rendered on macOS Mojave until the window is

View File

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