Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Generate release notes for 3.8.2 #2012

Merged
merged 1 commit into from
Jan 18, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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' | \
Expand Down
29 changes: 27 additions & 2 deletions NEWS.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
------------

Expand All @@ -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
=====

Expand Down