Skip to content

Commit

Permalink
release i3 4.13
Browse files Browse the repository at this point in the history
  • Loading branch information
stapelberg committed Nov 8, 2016
1 parent 667857f commit 9c8dc36
Show file tree
Hide file tree
Showing 5 changed files with 117 additions and 135 deletions.
2 changes: 1 addition & 1 deletion I3_VERSION
@@ -1 +1 @@
4.12-non-git
4.13 (2016-11-08)
2 changes: 1 addition & 1 deletion Makefile.am
Expand Up @@ -94,7 +94,7 @@ EXTRA_DIST = \
I3_VERSION \
LICENSE \
PACKAGE-MAINTAINER \
RELEASE-NOTES-4.12 \
RELEASE-NOTES-4.13 \
generate-command-parser.pl \
parser-specs/commands.spec \
parser-specs/config.spec \
Expand Down
132 changes: 0 additions & 132 deletions RELEASE-NOTES-4.12

This file was deleted.

114 changes: 114 additions & 0 deletions RELEASE-NOTES-4.13
@@ -0,0 +1,114 @@

β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”
β”‚ Release notes for i3 v4.13 β”‚
β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜

This is i3 v4.13. This version is considered stable. All users of i3 are
strongly encouraged to upgrade.

For users, there are two changes to be aware of:

1. The X server DPI is read from the Xft.dpi X resource (if available).
Previously, i3 used to directly look at the X server’s DPI (based on screen
resolution and physical size). Looking at Xft.dpi is more consistent with
other software, more likely to be correct (because it’s user-specified and
not read from possibly broken hardware information) and allows users to
override the value.

2. It is now possible to set config file variables from X resources using the
β€œset_from_resource” directive. This allows users to have a single source of
truth for e.g. theming X11 applications (specify β€œ*color0: #121212” and have
it apply to URxvt and your i3 config).

For packagers, there are three changes that likely require action:

1. cairo/pango are now required dependencies, as announced in the i3 v4.12
release notes.

2. The aforementioned β€œset_from_resource” feature requires the new dependency
libxcb-util-xrm.

3. i3 now uses the GNU build system (autotools). Please see
https://github.com/i3/i3/commit/4a52a7e9fb6fb2e1f0256b2e086cfa313f411cd8 for
a lot more details about the rationale and what this means for your package.
Bottomline, things should get simpler for you, though :).

β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”
β”‚ Changes in i3 v4.13 β”‚
β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜

β€’ build: wire up version handling for non-release tarballs (as opposed to git
checkouts)
β€’ build: switch to the GNU build system
β€’ i3bar: disable pango markup for plain-text input
β€’ man/i3-msg: point out default ipc message type
β€’ config: introduce support for specifying variables from X resources
β€’ config: ensure variables match on longest-length, eliminating problems
where one variable was a prefix of another
β€’ config: do not count '\' in comment lines as line continuation
β€’ ipc: introduce a new GET_BINDING_MODES command
β€’ ipc: implement new window::mark event
β€’ ipc: add β€œoutput” to IPC events referencing a container
β€’ make fullscreen windows open on the output which is indicated by their
geometry (fixes LibreOffice Impress multi-monitor presentations)
β€’ focus newly managed windows only if they don’t use the globally active
input mode (fixes issues with RubyMine)
β€’ remove title indentation in nested containers (rationale was unclear,
nobody spoke up when we asked about the feature on i3-discuss)
β€’ use the last known timestamp when calling xcb_set_input_focus (might fix
rare race conditions in focus handling)
β€’ introduce the β€œsmart” option for hide_edge_borders, which will hide borders
when there is precisely one window on the workspace
β€’ handle _MOTIF_WM_HINTS changes (_MOTIF_WM_HINTS were previously only
considered when managing a new window)
β€’ don’t change border style if BS_NORMAL is requested in _MOTIF_WM_HINTS
β€’ only add numlock fallback for keybindings where necessary (allows users to
correctly bind keys on the numpad)
β€’ do not match docks in config and command criteria
β€’ get DPI from the Xft.dpi resource instead of directly looking at the screen
resolution/size
β€’ handle _NET_ACTIVE_WINDOW for scratchpad windows (for pagers)
β€’ set _NET_WM_DESKTOP to sticky for scratchpad windows
β€’ add new criteria β€œtiling” and β€œfloating”
β€’ implement special output name β€œcurrent” for commands
β€’ handle ResizeRequests for tray clients (fixes VLC tray icon)

β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”
β”‚ Bugfixes β”‚
β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜

β€’ i3bar: fix crash when the I3SOCK environment variable is present
β€’ i3-dmenu-desktop: do not die on failed open

This comment has been minimized.

Copy link
@kilbith

kilbith Nov 9, 2016

i3-dmenu-desktop

Oh, still there 😞

This comment has been minimized.

Copy link
@Airblader

Airblader Nov 9, 2016

Member

No one has raised a PR implement Michael's proposal yet.

β€’ i3-input: properly position in non-standard cases (fixes an issue where
i3-input would launch off-screen)
β€’ i3-save-tree: rename β€œmark” to β€œmarks” to reflect our recent change to
allow multiple marks
β€’ mouse bindings: only grab the mouse buttons that need to be grabbed
β€’ no_focus: correctly count the number of windows (makes no_focus work with
tabbed/stacked workspace layouts).
β€’ properly close disabled outputs restored during a restart (this fixes state
handling when RandR changes happen during i3 restarts)
β€’ don’t trigger bindings on window border clicks unless --border was
specified for the binding
β€’ traverse numbered workspaces in correct order
β€’ fix transition from named to numbered workspaces in β€œworkspace next|prev”
β€’ avoid setting urgency hint on content containers and above (fixes crashes)
β€’ don’t trigger unrelated key bindings for --release bindings
β€’ fix colormap handling for containers (fixes taking screenshots using xwd)
β€’ check output crossing on ENTER_NOTIFY to dockarea (fixes pointer jumping)
β€’ fix a use-after-free bug (fixes β€œfloating enable” on single split windows)

β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”
β”‚ Thanks! β”‚
β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜

Thanks for testing, bugfixes, discussions and everything I forgot go out to:

Benedikt Heine, Cedric Buissart, Chih-Chyuan Hwang, Denton Liu, eplanet, Eric
EngestrΓΆm, EvilPudding, Ferdinand Bachmann, Hong, Ingo BΓΌrk, Jakob Schnell,
Jakub Wilk, johannes karoff, Johannes Lange, joshrosso, Julien Lequertier,
Kacper Kowalik, Kenneth Lyons, Kyle Kneitinger, madroach, Michael Vetter,
Nathan Schulte, Øsse, Peder Stray, Tony Crisci, Trevor Merrifield, wentasah,
yshui, Zamarin Arthur

-- Michael Stapelberg, 2016-11-08
2 changes: 1 addition & 1 deletion configure.ac
Expand Up @@ -2,7 +2,7 @@
# Run autoreconf -fi to generate a configure script from this file.

AC_PREREQ([2.69])
AC_INIT([i3], [4.12], [https://github.com/i3/i3/issues])
AC_INIT([i3], [4.13], [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])
Expand Down

0 comments on commit 9c8dc36

Please sign in to comment.