diff --git a/Makefile b/Makefile index 883d9e674..f05a52119 100644 --- a/Makefile +++ b/Makefile @@ -424,7 +424,7 @@ release-note-github: reno-lint @echo "-------- copy / paste from here --------" @# markdown_github to be avoided => gfm output comes in pandoc 2.0.4 release dec 2017 @pipenv run reno report 2>/dev/null | \ - pandoc -f rst -t markdown --atx-headers --wrap=none --tab-stop 2 | \ + pandoc -f rst -t markdown --markdown-headings=atx --wrap=none --tab-stop 2 | \ tr '\n' '\r' | \ sed 's/\r\r//g' | \ sed 's/\r\-\ \r\r\ /\r-/g' | \ diff --git a/NEWS.rst b/NEWS.rst index 23d23bce3..5be0d5991 100644 --- a/NEWS.rst +++ b/NEWS.rst @@ -2,16 +2,25 @@ guake ===== -(unreleased yet) -================ +3.8.2 +===== Release Summary --------------- Fix system font application issue +Add fallback for version number finding + +Deprecated pbr + Use keycodes instead of keyvals for keybindings. This allow to use keybindings with different keyboard layouts. +New Features +------------ + +- --is-visible option returns 1 when visible, and 0 when not + Known Issues ------------ @@ -20,8 +29,24 @@ Known Issues Bug Fixes --------- +- Changed Toggle Hide on Lose Focus Shortcut to Shift-Ctrl-F1. + Instead of change Go to tab1 shortcut, because Ctrl-F1 is in the pool Ctrl-Fn of change to tabs. + +- Fix issue Ctrl+F1 does two jobs in Keyboard Shortcuts Page + +- - Add environment variable GUAKE_ENABLE_WAYLAND, fixed #1934 + - - System font aplied only for last tab #1947 +- - Guake suddenly not starting any more due to ModuleNotFoundError: No module named 'importlib_metadata' #1962 + +- - Fix vte spawn_sync runtime check failed: ((spawn_flags & ignored_spawn_flags()) == 0) + +Notes for Package Maintainers +----------------------------- + +- Switched from importlib + pbr to setuptools_scm for versioning + 3.8.1 =====