Merge branch 'master' into next
This commit is contained in:
commit
2ec14630fd
|
@ -1 +1 @@
|
|||
4.17-non-git
|
||||
4.17.1-non-git
|
||||
|
|
|
@ -118,7 +118,7 @@ EXTRA_DIST = \
|
|||
I3_VERSION \
|
||||
LICENSE \
|
||||
PACKAGE-MAINTAINER \
|
||||
RELEASE-NOTES-4.17 \
|
||||
RELEASE-NOTES-4.17.1 \
|
||||
generate-command-parser.pl \
|
||||
parser-specs/commands.spec \
|
||||
parser-specs/config.spec \
|
||||
|
|
|
@ -0,0 +1,61 @@
|
|||
|
||||
┌──────────────────────────────┐
|
||||
│ Release notes for i3 v4.14.1 │
|
||||
└──────────────────────────────┘
|
||||
|
||||
This is i3 v4.14.1. This version is considered stable. All users of i3 are
|
||||
strongly encouraged to upgrade.
|
||||
|
||||
This is a bugfix release for v4.14.
|
||||
|
||||
┌────────────────────────────┐
|
||||
│ Changes in i3 v4.14.1 │
|
||||
└────────────────────────────┘
|
||||
|
||||
• docs/hacking-howto: promote contributing-related sections
|
||||
• docs/ipc: tree reply: document focus, nodes and floating_nodes
|
||||
• docs/ipc: urgent: complete the list of container types
|
||||
• docs/ipc: document how to detect i3’s byte order in memory-safe languages
|
||||
• docs/ipc: document the (existing since v4.14) GET_CONFIG request
|
||||
• docs/userguide: document that i3 can accept RandR output names
|
||||
• include AnyEvent-I3 in dist tarballs
|
||||
• append_layout: validate JSON before loading
|
||||
• move: fix erratic behavior with single container child jumping outputs
|
||||
• ipc: rename COMMAND to RUN_COMMAND for consistency
|
||||
• replace http:// with https:// where applicable
|
||||
|
||||
┌────────────────────────────┐
|
||||
│ Bugfixes │
|
||||
└────────────────────────────┘
|
||||
|
||||
• fix various memory errors
|
||||
• fix output and tray_output related issues with RandR 1.5
|
||||
• avoid use of uninitialized in init_dpi_end
|
||||
• properly initialize sigaction struct
|
||||
• swap: invert condition to log debug message in correct situation
|
||||
• swap: fix crash on invalid container id
|
||||
• fix a crash when restarting with marks
|
||||
• i3bar: fix a memory leak
|
||||
• test workers: re-seed random number generator after fork
|
||||
• tests: run environment-modifying 533-randr15.t at the very end
|
||||
• tests: unflake t/257-keypress-group1-fallback.t
|
||||
• tests: unflake t/263-edge-borders.t
|
||||
• tests: unflake tests by not starting i3bar
|
||||
• fix a crash with configfiles which do not end in a newline.
|
||||
• append_layout: free incomplete containers when JSON parsing fails
|
||||
• layout toggle: fix crash with invalid parameters
|
||||
• outputs: avert crash by fixing focus when creating output containers
|
||||
• correctly raise floating videos to the top when switching between windows
|
||||
programmatically
|
||||
• fix crash when a floating window is tiled while being resized via mouse
|
||||
|
||||
┌────────────────────────────┐
|
||||
│ Thanks! │
|
||||
└────────────────────────────┘
|
||||
|
||||
Thanks for testing, bugfixes, discussions and everything I forgot go out to:
|
||||
|
||||
hwangcc23, Ingo Bürk, Kent Fredric, Martin T. H. Sandsmark, Orestis Floros,
|
||||
Theo Buehler, Vladimir Panteleev
|
||||
|
||||
-- Michael Stapelberg, 2017-09-24
|
|
@ -0,0 +1,35 @@
|
|||
|
||||
┌──────────────────────────────┐
|
||||
│ Release notes for i3 v4.16.1 │
|
||||
└──────────────────────────────┘
|
||||
|
||||
This is i3 v4.16.1. This version is considered stable. All users of i3 are
|
||||
strongly encouraged to upgrade.
|
||||
|
||||
This is a bugfix release for v4.16.
|
||||
|
||||
┌────────────────────────────┐
|
||||
│ Bugfixes │
|
||||
└────────────────────────────┘
|
||||
|
||||
• Truncate wm_name utf8 strings to first zero byte
|
||||
(fixes window title corruption)
|
||||
• Apply title_align to non-leaf containers
|
||||
Additionally, marks will now display for non-leaf containers.
|
||||
• attach_to_workspace: set new parent before tree_render
|
||||
(fixes a heap-use-after-free)
|
||||
• Use ipc queue for all messages
|
||||
(fixes an i3bar crash)
|
||||
• Fix crash with popups when fullscreen is non-leaf
|
||||
• Fix: render_con shows floating containers on wrong workspace
|
||||
|
||||
|
||||
┌────────────────────────────┐
|
||||
│ Thanks! │
|
||||
└────────────────────────────┘
|
||||
|
||||
Thanks for testing, bugfixes, discussions and everything I forgot go out to:
|
||||
|
||||
Orestis Floros
|
||||
|
||||
-- Michael Stapelberg, 2019-01-27
|
|
@ -1,96 +0,0 @@
|
|||
|
||||
┌────────────────────────────┐
|
||||
│ Release notes for i3 v4.17 │
|
||||
└────────────────────────────┘
|
||||
|
||||
This is i3 v4.17. This version is considered stable. All users of i3 are
|
||||
strongly encouraged to upgrade.
|
||||
|
||||
This release contains a number of assorted fixes and improvements across pretty
|
||||
much all individual components of i3.
|
||||
|
||||
┌────────────────────────────┐
|
||||
│ Changes in i3 v4.17 │
|
||||
└────────────────────────────┘
|
||||
|
||||
• config: make binding modes case-sensitive
|
||||
• default config: mention ~/.config/i3/config
|
||||
• default config: start xss-lock, nm-applet, pactl (volume keys)
|
||||
• docs/userguide: update syntax in strip_workspace_*
|
||||
• docs/userguide: add a section about hidpi displays
|
||||
• docs/userguide: document mark --replace
|
||||
• docs/userguide: uncomment and update mark section example
|
||||
• docs/userguide: point out differences of normal/pixel title bars
|
||||
• docs/userguide: clarify which config directives can be used at runtime
|
||||
• docs/userguide: for_window is a directive, not a command
|
||||
• docs/ipc: clarify event/reply types
|
||||
• docs/ipc: mention new i3-ipc++ C++ library
|
||||
• docs/ipc: clarify restart/exit behavior
|
||||
• docs/i3bar-protocol: add markup
|
||||
• man/i3.man: fix config file search order
|
||||
• ipc: make restart command send a reply once restart completed
|
||||
• ipc: use queue for all messages
|
||||
fixes i3bar issues when switching between workspaces with many windows
|
||||
• i3-dump-log: clarify log message
|
||||
• i3-msg: exit with status code 2 when i3 returns an error
|
||||
• render left and right borders of titles in stacked mode
|
||||
• make swap work with floating windows, fix swap crash
|
||||
• switch to clang-format-6.0
|
||||
• add input and bounding shapes support
|
||||
(e.g. for the https://github.com/phw/peek screen recorder)
|
||||
• preserve back_and_forth across restarts
|
||||
• allow partial UTF-8 to UCS-2 conversion for better handling of
|
||||
title bar content which cannot be represented (e.g. emoji)
|
||||
when using bitmap pixel fonts
|
||||
• check for duplicate key bindings in i3 -C
|
||||
• i3bar: support transparency via --transparency flag (RGBA)
|
||||
• i3bar: support for user-defined border widths
|
||||
|
||||
┌────────────────────────────┐
|
||||
│ Bugfixes │
|
||||
└────────────────────────────┘
|
||||
|
||||
• build: correctly depend on glib (for g_utf8_make_valid)
|
||||
• build: fix build when git is configured to show signatures
|
||||
• ipc: report correct workspace in init event after workspace move
|
||||
• ipc: send missing window:focus event
|
||||
• i3bar: correctly recognize click events with text alignment
|
||||
• i3bar: fix running without fd 0
|
||||
• i3bar: correctly handle button presses on separator
|
||||
• i3 --moreversion: warn when $DISPLAY is unset
|
||||
• i3bar: support disabling click events
|
||||
• release.sh: persist correct version number in docs
|
||||
• accept output names containing spaces (e.g. in assignment)
|
||||
• fix cursor resizing positioning
|
||||
• fix aspect ratio issues (e.g. with mpv)
|
||||
• fix brief focus flicker when renaming workspaces
|
||||
• fix crash when canceling i3 via ctrl+c
|
||||
• fix heap-use-after-free, memory leak
|
||||
• fix focus bugs in enabling/disabling RandR outputs
|
||||
• fix crash with popups when fullscreen is non-leaf
|
||||
• fix crash when moving a second window to mark
|
||||
• fix crash with programs with splash screen
|
||||
• fix atoms when closing inactive workspace
|
||||
• apply title_align to non-leaf containers
|
||||
• layout loading: correctly mark non-leaf containers
|
||||
• truncate wm_name utf8 strings to first zero byte
|
||||
(makes window titles work with buggy clients)
|
||||
• fix crash in workspace moving
|
||||
• export I3SOCK environment variable (again)
|
||||
• fix hanging flaky testcase by using the correct X11 connection
|
||||
• resize: add missing error replies
|
||||
• don’t pop up floating windows on the wrong workspace
|
||||
• remove extra \n from errx and die calls
|
||||
|
||||
┌────────────────────────────┐
|
||||
│ Thanks! │
|
||||
└────────────────────────────┘
|
||||
|
||||
Thanks for testing, bugfixes, discussions and everything I forgot go out to:
|
||||
|
||||
aksel, Albert Safin, Alejandro Angulo, Christopher Hasse, Connor E, Hamish
|
||||
Macdonald, Ingo Bürk, Iskustvo, Jeffrey Huxen, Jeremy Klotz, Jonathan
|
||||
Woodlief, lasers, Morten Linderud, nejni-marji, Nguyễn Thái Ngọc Duy, Nils
|
||||
ANDRÉ-CHANG, Oliver Kraitschy, Orestis Floros, TAL, Vladimir Panteleev
|
||||
|
||||
-- Michael Stapelberg, 2019-08-03
|
|
@ -0,0 +1,29 @@
|
|||
|
||||
┌──────────────────────────────┐
|
||||
│ Release notes for i3 v4.17.1 │
|
||||
└──────────────────────────────┘
|
||||
|
||||
This is i3 v4.17.1. This version is considered stable. All users of i3 are
|
||||
strongly encouraged to upgrade.
|
||||
|
||||
This is a bugfix release for v4.17
|
||||
|
||||
┌────────────────────────────┐
|
||||
│ Bugfixes │
|
||||
└────────────────────────────┘
|
||||
|
||||
• unset _I3_RESTART_FD after restart (fixes crashes on restart)
|
||||
• default config: immediately refresh i3status after volume changes
|
||||
• default config: add XF86AudioMicMute
|
||||
• default config: mention loginctl lock-session alongside xss-lock
|
||||
• default config: use workspace number, not just workspace
|
||||
|
||||
┌────────────────────────────┐
|
||||
│ Thanks! │
|
||||
└────────────────────────────┘
|
||||
|
||||
Thanks for testing, bugfixes, discussions and everything I forgot go out to:
|
||||
|
||||
David Shen
|
||||
|
||||
-- Michael Stapelberg, 2019-08-30
|
|
@ -2,7 +2,7 @@
|
|||
# Run autoreconf -fi to generate a configure script from this file.
|
||||
|
||||
AC_PREREQ([2.69])
|
||||
AC_INIT([i3], [4.17], [https://github.com/i3/i3/issues])
|
||||
AC_INIT([i3], [4.17.1], [https://github.com/i3/i3/issues])
|
||||
# For AX_EXTEND_SRCDIR
|
||||
AX_ENABLE_BUILDDIR
|
||||
AM_INIT_AUTOMAKE([foreign subdir-objects -Wall no-dist-gzip dist-bzip2])
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
i3-wm (4.17.1-1) unstable; urgency=medium
|
||||
|
||||
* UNRELEASED
|
||||
* New upstream release.
|
||||
|
||||
-- Michael Stapelberg <stapelberg@debian.org> Sat, 03 Aug 2019 15:14:28 +0200
|
||||
|
||||
|
|
Loading…
Reference in New Issue