From f0f3821ff068012d6590cfce2cd5f75b153c4de5 Mon Sep 17 00:00:00 2001 From: Michael Stapelberg Date: Fri, 30 Aug 2019 23:06:47 +0200 Subject: [PATCH 1/2] release i3 4.17.1 --- I3_VERSION | 2 +- Makefile.am | 2 +- RELEASE-NOTES-4.17 | 96 -------------------------------------------- RELEASE-NOTES-4.17.1 | 29 +++++++++++++ configure.ac | 2 +- 5 files changed, 32 insertions(+), 99 deletions(-) delete mode 100644 RELEASE-NOTES-4.17 create mode 100644 RELEASE-NOTES-4.17.1 diff --git a/I3_VERSION b/I3_VERSION index 4aa58fe3..319acb99 100644 --- a/I3_VERSION +++ b/I3_VERSION @@ -1 +1 @@ -4.17-non-git +4.17.1 (2019-08-30) diff --git a/Makefile.am b/Makefile.am index 51c4f539..ee0e038b 100644 --- a/Makefile.am +++ b/Makefile.am @@ -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 \ diff --git a/RELEASE-NOTES-4.17 b/RELEASE-NOTES-4.17 deleted file mode 100644 index d5070705..00000000 --- a/RELEASE-NOTES-4.17 +++ /dev/null @@ -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 diff --git a/RELEASE-NOTES-4.17.1 b/RELEASE-NOTES-4.17.1 new file mode 100644 index 00000000..710c4eb8 --- /dev/null +++ b/RELEASE-NOTES-4.17.1 @@ -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 diff --git a/configure.ac b/configure.ac index 849ae5de..22e27f6f 100644 --- a/configure.ac +++ b/configure.ac @@ -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]) From 942a33d0ec69a34dbaa352dcca2dcc51737f2ee0 Mon Sep 17 00:00:00 2001 From: Michael Stapelberg Date: Fri, 30 Aug 2019 23:06:59 +0200 Subject: [PATCH 2/2] Set non-git version to 4.17.1-non-git. --- I3_VERSION | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/I3_VERSION b/I3_VERSION index 319acb99..f15477ff 100644 --- a/I3_VERSION +++ b/I3_VERSION @@ -1 +1 @@ -4.17.1 (2019-08-30) +4.17.1-non-git