]> git.sur5r.net Git - i3/i3/log
i3/i3
6 years agomove i3 sync code into sync_respond (for following commits)
Michael Stapelberg [Fri, 30 Mar 2018 19:05:32 +0000 (21:05 +0200)]
move i3 sync code into sync_respond (for following commits)

6 years agoAdd --modifier flag to i3-config-wizard (#3210)
Joona [Fri, 30 Mar 2018 10:57:41 +0000 (03:57 -0700)]
Add --modifier flag to i3-config-wizard (#3210)

Add --modifier flag to i3-config-wizard

The --modifier flag accepts either alt or win, and will generate the
configuration file without opening a window.

Also adds i3-config-wizard's flags to the manpage.

Fixes #3136.

6 years agoMerge pull request #3213 from orestisf1993/issue-2535
Ingo Bürk [Fri, 30 Mar 2018 10:48:12 +0000 (12:48 +0200)]
Merge pull request #3213 from orestisf1993/issue-2535

Fix memory leak when _XKB_RULES_NAMES can't be found

6 years agoFix memory leak when _XKB_RULES_NAMES can't be found 3213/head
Orestis Floros [Thu, 29 Mar 2018 14:42:58 +0000 (17:42 +0300)]
Fix memory leak when _XKB_RULES_NAMES can't be found

Steps to reproduce:

1. Force the branch to be taken:

diff --git a/src/bindings.c b/src/bindings.c
index fe77bc8f..caa5848c 100644
--- a/src/bindings.c
+++ b/src/bindings.c
@@ -941,7 +941,7 @@ bool load_keymap(void) {

     struct xkb_keymap *new_keymap = NULL;
     int32_t device_id;
-    if (xkb_supported && (device_id = xkb_x11_get_core_keyboard_device_id(conn)) > -1) {
+    if (0) {
         if ((new_keymap = xkb_x11_keymap_new_from_device(xkb_context, conn, device_id, 0)) == NULL) {
             ELOG("xkb_x11_keymap_new_from_device failed\n");
             return false;

2. Run `python2 ./xproperty.py _XKB_RULES_NAMES ''` (from
https://github.com/siemer/xproperty) in the xinitrc
3. Memory sanitizers detect memory leaks.

Note: We don't (and didn't) pass NULL in xkb_keymap_new_from_names() but
an xkb_rule_names structures with NULL fields (fill_rmlvo_from_root only
fills its argument when there are no errors) should be equivalent:
https://github.com/xkbcommon/libxkbcommon/blob/767fa86d42a5e25e7043622d189247e02a5ca379/NEWS#L349-L351
> The function xkb_keymap_new_from_names() now accepts a NULL value for
the 'names' parameter, instead of failing. This is equivalent to passing
a 'struct xkb_rule_names' with all fields set to NULL.

Fixes #2535.

6 years agoMerge pull request #3200 from orestisf1993/_con_move_to_con
Ingo Bürk [Thu, 29 Mar 2018 10:06:29 +0000 (12:06 +0200)]
Merge pull request #3200 from orestisf1993/_con_move_to_con

_con_move_to_con: don't change focus when moving to active workspace

6 years agoMerge pull request #3207 from orestisf1993/get_workspace_by_
Ingo Bürk [Thu, 29 Mar 2018 10:06:05 +0000 (12:06 +0200)]
Merge pull request #3207 from orestisf1993/get_workspace_by_

Introduce get_workspace_by_* functions

6 years agoMerge pull request #3192 from Exagone313/next
Orestis [Thu, 29 Mar 2018 09:16:12 +0000 (12:16 +0300)]
Merge pull request #3192 from Exagone313/next

translate_keysyms: fix potential memory leak

6 years agoIntroduce get_existing_workspace_by_num 3207/head
Orestis Floros [Tue, 27 Mar 2018 19:36:51 +0000 (22:36 +0300)]
Introduce get_existing_workspace_by_num

6 years agoIntroduce get_existing_workspace_by_name
Orestis Floros [Tue, 27 Mar 2018 19:18:17 +0000 (22:18 +0300)]
Introduce get_existing_workspace_by_name

6 years ago_con_move_to_con: don't change focus when moving to active workspace 3200/head
Orestis Floros [Sun, 25 Mar 2018 01:45:19 +0000 (04:45 +0300)]
_con_move_to_con: don't change focus when moving to active workspace

Seems to be the intention, indicated by this comment (con.c:1307-1309):
    /* For split containers, we use the currently focused container within it.
     * This allows setting marks on, e.g., tabbed containers which will move
     * con to a new tab behind the focused tab. */

Related to #3085.

6 years agoFix potential memory leak 3192/head
Elouan Martinet [Tue, 20 Mar 2018 13:06:17 +0000 (13:06 +0000)]
Fix potential memory leak

xkb_state_new uses calloc and may fail in a rare case, which would cause a memory leak.
Note that xkb_state_unref checks if the parameter given is not null (!state) before freeing.
Calls to xkb_state_new have been grouped to remove code duplication.

Signed-off-by: Elouan Martinet <exa@elou.world>
6 years agoMerge pull request #3205 from orestisf1993/free
Ingo Bürk [Tue, 27 Mar 2018 07:02:28 +0000 (09:02 +0200)]
Merge pull request #3205 from orestisf1993/free

cmd_append_layout: resolve_tilde already allocates memory

6 years agocmd_append_layout: resolve_tilde already allocates memory 3205/head
Orestis Floros [Tue, 27 Mar 2018 00:36:54 +0000 (03:36 +0300)]
cmd_append_layout: resolve_tilde already allocates memory

Fixes a small memory leak with all append_layout commands.

6 years agoMerge pull request #3204 from orestisf1993/focus_next
Ingo Bürk [Mon, 26 Mar 2018 19:35:12 +0000 (21:35 +0200)]
Merge pull request #3204 from orestisf1993/focus_next

_con_move_to_con: focus_next isn't always con_next_focused(con)

6 years agoxcb_drag_prepare_cb: drain events (#3193)
Orestis [Mon, 26 Mar 2018 15:59:34 +0000 (18:59 +0300)]
xcb_drag_prepare_cb: drain events (#3193)

As discussed in PR #3085, X11 events can appear while
dragloop->callback() is running.

Co-authored-by: Michael Stapelberg <michael@stapelberg.de>
6 years ago_con_move_to_con: focus_next isn't always con_next_focused(con) 3204/head
Orestis Floros [Sun, 25 Mar 2018 19:29:00 +0000 (22:29 +0300)]
_con_move_to_con: focus_next isn't always con_next_focused(con)

con_next_focused uses con's parent. But since con can be inside an
unfocused container this means that one of it's siblings could become
focused in the current workspace.

6 years agoMerge pull request #3203 from orestisf1993/free
Ingo Bürk [Sun, 25 Mar 2018 18:12:16 +0000 (20:12 +0200)]
Merge pull request #3203 from orestisf1993/free

memory leaks

6 years agocon_toggle_layout: free(tm_dup) outside loop 3203/head
Orestis Floros [Sun, 25 Mar 2018 17:48:20 +0000 (20:48 +0300)]
con_toggle_layout: free(tm_dup) outside loop

6 years agoFree A_TO_WORKSPACE_NUMBER assignments
Orestis Floros [Sun, 25 Mar 2018 17:35:53 +0000 (20:35 +0300)]
Free A_TO_WORKSPACE_NUMBER assignments

6 years agocfg_workspace: memleak on duplicate workspace assignment
Orestis Floros [Sun, 25 Mar 2018 17:23:46 +0000 (20:23 +0300)]
cfg_workspace: memleak on duplicate workspace assignment

assignment->output is set but lost since TAILQ_INSERT_TAIL is never
called when duplicate is set.
This essentially happens on every reload.

6 years agostartup.c: free timer
Orestis Floros [Sun, 25 Mar 2018 17:04:31 +0000 (20:04 +0300)]
startup.c: free timer

Small memleak. The timer is not called used again since ev_timer_init is
called with repeat = 0.

6 years agoMerge pull request #3202 from orestisf1993/issue-3201
Ingo Bürk [Sun, 25 Mar 2018 12:31:39 +0000 (14:31 +0200)]
Merge pull request #3202 from orestisf1993/issue-3201

Prefer fullscreen floating containers when on directional focus

6 years agoPrefer fullscreen floating containers when on directional focus 3202/head
Orestis Floros [Sun, 25 Mar 2018 11:25:20 +0000 (14:25 +0300)]
Prefer fullscreen floating containers when on directional focus

Fixes #3201

6 years agoMerge pull request #3196 from orestisf1993/_con_move_to_con
Ingo Bürk [Sat, 24 Mar 2018 17:49:26 +0000 (18:49 +0100)]
Merge pull request #3196 from orestisf1993/_con_move_to_con

_con_move_to_con cleanup

6 years agoMerge pull request #3199 from orestisf1993/workspace_show
Ingo Bürk [Sat, 24 Mar 2018 17:39:37 +0000 (18:39 +0100)]
Merge pull request #3199 from orestisf1993/workspace_show

workspace_show: remove redundant if

6 years agocon_activate -> con_focus when it is used as a building block 3196/head
Orestis Floros [Fri, 23 Mar 2018 11:27:05 +0000 (13:27 +0200)]
con_activate -> con_focus when it is used as a building block

6 years ago_con_move_to_con: remove outdated comment
Orestis Floros [Fri, 23 Mar 2018 11:00:36 +0000 (13:00 +0200)]
_con_move_to_con: remove outdated comment

6 years ago_con_move_to_con: showing target_ws is useless
Orestis Floros [Fri, 23 Mar 2018 10:56:30 +0000 (12:56 +0200)]
_con_move_to_con: showing target_ws is useless

The current_ws is shown latter anyway:
    if (!ignore_focus) {
        workspace_show(current_ws);
        ...

This also causes the following bug:
- Open a window in an empty workspace
- Switch to another workspace
- seturgent to the first window
- Move another window to the first workspace
- Urgent flag is now reset

6 years agoworkspace_show: remove redundant if 3199/head
Orestis Floros [Sat, 24 Mar 2018 13:14:20 +0000 (15:14 +0200)]
workspace_show: remove redundant if

6 years agoMerge pull request #3198 from orestisf1993/_workspace_show
Ingo Bürk [Sat, 24 Mar 2018 12:47:59 +0000 (13:47 +0100)]
Merge pull request #3198 from orestisf1993/_workspace_show

_workspace_show -> workspace_show

6 years ago_workspace_show -> workspace_show 3198/head
Orestis Floros [Sat, 24 Mar 2018 12:26:11 +0000 (14:26 +0200)]
_workspace_show -> workspace_show

a9b57a44a9d328d5153158445bc6a5c7b78420b0 removed the extra parameter of
workspace_show.

6 years agoMerge pull request #3184 from orestisf1993/issue-1341
Ingo Bürk [Fri, 23 Mar 2018 18:17:12 +0000 (19:17 +0100)]
Merge pull request #3184 from orestisf1993/issue-1341

floating_enable & floating_maybe_reassign_ws changes

6 years agofloating_maybe_reassign_ws: use get_output_from_rect 3184/head
Orestis Floros [Sat, 17 Mar 2018 18:43:11 +0000 (20:43 +0200)]
floating_maybe_reassign_ws: use get_output_from_rect

This significantly reduces the number of ELOGs while dragging floating
containers. The behaviour is improved since floating containers in the
edge of the screen will still get reassigned to their closest workspace.

For example, consider this setup:
fake-outputs 500x500+0+0,500x500+500+0

Now, open a window in the right output and run:
i3-msg floating enable, move position 0 px 450 px
The window is on the bottom edge of the left workspace but if you run:
i3-msg focus mode_toggle
focus will go to the right workspace since floating_maybe_reassign_ws
didn't change the assigned workspace of the floating container.

6 years agofloating_enable: change reassign logic
Orestis Floros [Sat, 17 Mar 2018 15:47:16 +0000 (17:47 +0200)]
floating_enable: change reassign logic

This allows the floating container's top left corner to be mapped
outside any output as long as they are contained partially by one. This,
for example, will allow:
mpv --geometry +1+1 video.mp4

For windows mapped to (0, 0) see comment in floating.c:270-273:
/* Some clients (like GIMP’s color picker window) get mapped
 * to (0, 0), so we push them to a reasonable position
 * (centered over their leader) */

 The floating_reassign_ws call is removed since we try to place the new
 floating container in the current output:
 /* Sanity check: Are the coordinates on the appropriate output? If not, we
  * need to change them */

Fixes #1341

6 years agoIntroduce get_output_from_rect
Orestis Floros [Sat, 17 Mar 2018 18:42:54 +0000 (20:42 +0200)]
Introduce get_output_from_rect

6 years agocontained_by_output: return output and rename to output_containing_rect
Orestis Floros [Sat, 17 Mar 2018 15:42:49 +0000 (17:42 +0200)]
contained_by_output: return output and rename to output_containing_rect

6 years agoMerge pull request #3195 from orestisf1993/issue-2993
Ingo Bürk [Fri, 23 Mar 2018 13:52:48 +0000 (14:52 +0100)]
Merge pull request #3195 from orestisf1993/issue-2993

Improve directional moving of fullscreen containers

6 years agoMerge pull request #3178 from orestisf1993/pr-2314
Ingo Bürk [Fri, 23 Mar 2018 13:50:46 +0000 (14:50 +0100)]
Merge pull request #3178 from orestisf1993/pr-2314

Support _NET_WM_STATE_FOCUSED

6 years agoImprove directional moving of fullscreen containers 3195/head
Orestis Floros [Fri, 23 Mar 2018 13:46:40 +0000 (15:46 +0200)]
Improve directional moving of fullscreen containers

Fixes #2993.

6 years agoSupport _NET_WM_STATE_FOCUSED 3178/head
Tony Crisci [Mon, 25 Jul 2016 00:43:56 +0000 (20:43 -0400)]
Support _NET_WM_STATE_FOCUSED

_NET_WM_STATE_FOCUSED is set on _NET_WM_STATE to indicate that the
window is focused. It must be set when the window is newly focused and
removed once the window no longer has focus.

> _NET_WM_STATE_FOCUSED indicates whether the window's decorations are
> drawn in an active state. Clients MUST regard it as a read-only hint.
> It cannot be set at map time or changed via a _NET_WM_STATE client
> message.

For example, this is used by GTK applications to show the decoration in
an active or inactive state. This change can be tested by opening a GTK
application (like evince), focusing the window and unfocusing the
window, and observing a change in the window decorations.

Fixes #2273

6 years agoMerge pull request #3185 from orestisf1993/cmd_move_window_to_position
Ingo Bürk [Wed, 21 Mar 2018 07:38:41 +0000 (08:38 +0100)]
Merge pull request #3185 from orestisf1993/cmd_move_window_to_position

Remove 'method' from cmd_move_window_to_position

6 years agocmd_move_window_to_position: improve error message 3185/head
Orestis Floros [Sun, 18 Mar 2018 00:41:12 +0000 (02:41 +0200)]
cmd_move_window_to_position: improve error message

6 years agoRemove 'method' from cmd_move_window_to_position
Orestis Floros [Sun, 18 Mar 2018 00:08:16 +0000 (02:08 +0200)]
Remove 'method' from cmd_move_window_to_position

For command:
move window to [absolute] position X px Y px
if the optional keyword 'absolute' is provided the end result is the
same even though it is implemented differently. Only difference is that
with absolute the floating window can move completely outside of any
output.

This commit removes the 'method' argument and only keeps the sane
implementation.

6 years agoMerge pull request #3191 from orestisf1993/userguide
Ingo Bürk [Tue, 20 Mar 2018 07:39:23 +0000 (08:39 +0100)]
Merge pull request #3191 from orestisf1993/userguide

Fix userguide link

6 years agoFix userguide link 3191/head
Orestis Floros [Mon, 19 Mar 2018 16:30:22 +0000 (18:30 +0200)]
Fix userguide link

[[move_to_outputs]] doesn't work currently:
https://i3wm.org/docs/userguide.html#move_to_outputs
This does:
https://i3wm.org/docs/userguide.html#_moving_containers_workspaces_to_randr_outputs

This combines a 'BlockId Element' with an 'anchor'. Both should work
now.

6 years agoMerge pull request #3189 from orestisf1993/run_assignments
Ingo Bürk [Mon, 19 Mar 2018 13:32:54 +0000 (14:32 +0100)]
Merge pull request #3189 from orestisf1993/run_assignments

run_assignments: check for A_COMMAND early

6 years agoMerge pull request #3188 from orestisf1993/free_ran_assignments
Ingo Bürk [Mon, 19 Mar 2018 06:04:45 +0000 (07:04 +0100)]
Merge pull request #3188 from orestisf1993/free_ran_assignments

Free ran_assignments

6 years agoMerge pull request #3187 from orestisf1993/assign-memleak
Ingo Bürk [Mon, 19 Mar 2018 06:03:47 +0000 (07:03 +0100)]
Merge pull request #3187 from orestisf1993/assign-memleak

Fix memleak: FREE(assign->dest.output)

6 years agorun_assignments: check for A_COMMAND early 3189/head
Orestis Floros [Mon, 19 Mar 2018 01:17:32 +0000 (03:17 +0200)]
run_assignments: check for A_COMMAND early

6 years agoFree ran_assignments 3188/head
Orestis Floros [Mon, 19 Mar 2018 01:00:35 +0000 (03:00 +0200)]
Free ran_assignments

When we run 'reload' all the assignments are freed:
https://github.com/i3/i3/blob/e3e09119bf994ea3f5222441832952a8dd352941/src/config.c#L99-L109

Assignments are saved to each window after they are executed:
https://github.com/i3/i3/blob/e3e09119bf994ea3f5222441832952a8dd352941/src/assignments.c#L41-L46

This means that the pointers stored in window->ran_assignments are
invalid (shouldn't be dangerous currently but could lead to a segfault
if the code is modified) after a 'reload'.

6 years agoFix memleak: FREE(assign->dest.output) 3187/head
Orestis Floros [Mon, 19 Mar 2018 00:02:59 +0000 (02:02 +0200)]
Fix memleak: FREE(assign->dest.output)

6 years agoMerge pull request #3186 from orestisf1993/i3-msg
Ingo Bürk [Sun, 18 Mar 2018 06:51:50 +0000 (07:51 +0100)]
Merge pull request #3186 from orestisf1993/i3-msg

i3-msg: only print input + errorposition if they exist

6 years agoi3-msg: only print input + errorposition if they exist 3186/head
Orestis Floros [Sun, 18 Mar 2018 01:38:06 +0000 (03:38 +0200)]
i3-msg: only print input + errorposition if they exist

Before:
$ i3-msg floating disable, move window to position 100 px 100 px
ERROR: Your command: (null)
ERROR:               (null)
ERROR: Cannot change position of a window/container because it is not floating.
[{"success":true},{"success":false,"error":"Cannot change position of a window/container because it is not floating."}]

After:
$ i3-msg floating disable, move window to position 100 px 100 px
ERROR: Cannot change position of a window/container because it is not floating.
[{"success":true},{"success":false,"error":"Cannot change position of a window/container because it is not floating."}]

6 years agotestcases: remove assumption from state atoms test
Tony Crisci [Mon, 25 Jul 2016 00:43:09 +0000 (20:43 -0400)]
testcases: remove assumption from state atoms test

Remove the assumption that only two atoms can possibly be set in
t/253-multiple-net-wm-state-atoms.t so that the tests will pass when
more atoms are supported that may be set during this test.

6 years agoMerge pull request #3180 from chrisduerr/next
Ingo Bürk [Sat, 17 Mar 2018 06:31:48 +0000 (07:31 +0100)]
Merge pull request #3180 from chrisduerr/next

Add alacritty to `i3-sensible-terminal`

6 years agoAdd alacritty to i3-sensible-terminal 3180/head
Christian Duerr [Fri, 16 Mar 2018 21:53:39 +0000 (22:53 +0100)]
Add alacritty to i3-sensible-terminal

6 years agoMerge pull request #2975 from orestisf1993/move-con_focus
Michael Stapelberg [Fri, 16 Mar 2018 08:31:53 +0000 (09:31 +0100)]
Merge pull request #2975 from orestisf1993/move-con_focus

Fix move's focus bugs

6 years agoMerge pull request #3177 from orestisf1993/trailing
Ingo Bürk [Thu, 15 Mar 2018 19:41:47 +0000 (20:41 +0100)]
Merge pull request #3177 from orestisf1993/trailing

Remove trailing whitespace from Perl scripts

6 years agoRemove trailing whitespace from Perl scripts 3177/head
Orestis Floros [Thu, 15 Mar 2018 19:33:45 +0000 (21:33 +0200)]
Remove trailing whitespace from Perl scripts

6 years agoDon't call con_focus in tree_move 2975/head
Orestis Floros [Fri, 22 Sep 2017 01:48:32 +0000 (04:48 +0300)]
Don't call con_focus in tree_move

Fixes:
- Issue where moving an urgent (unfocused) window resets it's urgency
hint.
- Moving an unfocused container to a new parent should not move it to
the top of the focus stack.

6 years agoCorrect insert_con_into's focus handling
Orestis Floros [Sat, 23 Sep 2017 16:23:49 +0000 (19:23 +0300)]
Correct insert_con_into's focus handling

Change from always putting con on the head of the new parent. Important
for moving unfocused containers.

6 years agoMerge pull request #3176 from orestisf1993/dump-asy-marks
Ingo Bürk [Wed, 14 Mar 2018 13:24:00 +0000 (14:24 +0100)]
Merge pull request #3176 from orestisf1993/dump-asy-marks

dump-asy.pl: Add marks

6 years agoMerge pull request #3175 from orestisf1993/dump-asy
Ingo Bürk [Wed, 14 Mar 2018 13:23:39 +0000 (14:23 +0100)]
Merge pull request #3175 from orestisf1993/dump-asy

dump-asy.pl: Add options

6 years agodump-asy.pl: Add marks 3176/head
Orestis Floros [Wed, 14 Mar 2018 12:59:26 +0000 (14:59 +0200)]
dump-asy.pl: Add marks

6 years agodump-asy.pl: Add --save option 3175/head
Orestis Floros [Wed, 14 Mar 2018 12:43:12 +0000 (14:43 +0200)]
dump-asy.pl: Add --save option

6 years agodump-asy.pl: Add --gv option
Orestis Floros [Wed, 14 Mar 2018 10:18:58 +0000 (12:18 +0200)]
dump-asy.pl: Add --gv option

6 years agodump-asy.pl: Add POD usage
Orestis Floros [Wed, 14 Mar 2018 10:11:53 +0000 (12:11 +0200)]
dump-asy.pl: Add POD usage

6 years agoMerge pull request #3172 from klorax/patch-1
Ingo Bürk [Sun, 11 Mar 2018 18:54:39 +0000 (19:54 +0100)]
Merge pull request #3172 from klorax/patch-1

Docs [#3164]: Clarification about X resource value

6 years agoDocs [#3164]: Clarification about X resource value 3172/head
Klorax [Sun, 11 Mar 2018 17:04:32 +0000 (18:04 +0100)]
Docs [#3164]: Clarification about X resource value

Clarification about X resource value: they are loaded verbatim and must therefore be in the format that i3 uses.
Solves #3164.

6 years agoMerge pull request #3167 from hwangcc23/fix-3163
Ingo Bürk [Sun, 11 Mar 2018 15:33:10 +0000 (16:33 +0100)]
Merge pull request #3167 from hwangcc23/fix-3163

Add strip_workspace_name

6 years agoAdd strip_workspace_name 3167/head
hwangcc23 [Sat, 10 Mar 2018 04:49:09 +0000 (12:49 +0800)]
Add strip_workspace_name

See the issue #3163 (https://github.com/i3/i3/issues/3163).

Add strip_workspace_name to strip off the workspace name.

6 years agoRefocus focused window for FOCUS_IN events on the root window. (#3097)
Ingo Bürk [Sat, 10 Mar 2018 18:18:44 +0000 (19:18 +0100)]
Refocus focused window for FOCUS_IN events on the root window. (#3097)

This deals with (admittedly somewhat misbehaving) clients which
use XSetInputFocus to take focus, but then don't properly restore
focus. This has been observed with TK apps, but also, e.g., Steam.

fixes #2722
fixes #3096

6 years agoMerge pull request #3166 from Hritik14/next
Ingo Bürk [Sat, 10 Mar 2018 18:11:55 +0000 (19:11 +0100)]
Merge pull request #3166 from Hritik14/next

Fixed typo

6 years agoMerge pull request #3168 from stapelberg/release-fixes
Ingo Bürk [Sat, 10 Mar 2018 18:08:19 +0000 (19:08 +0100)]
Merge pull request #3168 from stapelberg/release-fixes

Release fixes

6 years agoupdate release.sh after release 3168/head
Michael Stapelberg [Sat, 10 Mar 2018 17:53:20 +0000 (18:53 +0100)]
update release.sh after release

6 years agorelease: new-enough dput no longer needs an explicit file name
Michael Stapelberg [Sat, 10 Mar 2018 17:53:04 +0000 (18:53 +0100)]
release: new-enough dput no longer needs an explicit file name

6 years agorelease: also build a Debian source-only upload
Michael Stapelberg [Sat, 10 Mar 2018 17:52:50 +0000 (18:52 +0100)]
release: also build a Debian source-only upload

6 years agorelease: disable git’s rename protection (prevented merging)
Michael Stapelberg [Sat, 10 Mar 2018 17:52:27 +0000 (18:52 +0100)]
release: disable git’s rename protection (prevented merging)

6 years agodebian: update changelog
Michael Stapelberg [Sat, 10 Mar 2018 17:35:11 +0000 (18:35 +0100)]
debian: update changelog

6 years agoMerge branch 'release-4.15'
Michael Stapelberg [Sat, 10 Mar 2018 17:29:21 +0000 (18:29 +0100)]
Merge branch 'release-4.15'

6 years agoSet non-git version to 4.15-non-git.
Michael Stapelberg [Sat, 10 Mar 2018 17:29:21 +0000 (18:29 +0100)]
Set non-git version to 4.15-non-git.

6 years agorelease i3 4.15 4.15
Michael Stapelberg [Sat, 10 Mar 2018 17:29:14 +0000 (18:29 +0100)]
release i3 4.15

6 years agoFixed typo 3166/head
Hritik Vijay [Fri, 9 Mar 2018 21:08:47 +0000 (02:38 +0530)]
Fixed typo

6 years agoMerge pull request #3165 from stapelberg/nagbar
Ingo Bürk [Fri, 9 Mar 2018 07:40:19 +0000 (08:40 +0100)]
Merge pull request #3165 from stapelberg/nagbar

Bugfix: ignore ConfigureNotify with width == 0 || height == 0

6 years agoBugfix: ignore ConfigureNotify with width == 0 || height == 0 3165/head
Michael Stapelberg [Fri, 9 Mar 2018 07:25:07 +0000 (08:25 +0100)]
Bugfix: ignore ConfigureNotify with width == 0 || height == 0

fixes #3132

6 years agoMerge pull request #3087 from orestisf1993/focus_order
Ingo Bürk [Tue, 27 Feb 2018 06:59:37 +0000 (07:59 +0100)]
Merge pull request #3087 from orestisf1993/focus_order

 Fix focus order issues when encapsulating workspaces

6 years agoFix focus order issues when encapsulating workspaces 3087/head
Orestis Floros [Wed, 13 Dec 2017 14:15:01 +0000 (16:15 +0200)]
Fix focus order issues when encapsulating workspaces

See new tests for an explanation of the problem.

6 years agoIntroduce *focus_order functions
Orestis Floros [Wed, 13 Dec 2017 14:29:54 +0000 (16:29 +0200)]
Introduce *focus_order functions

6 years agoMerge pull request #3153 from orestisf1993/issue-2990
Ingo Bürk [Mon, 26 Feb 2018 20:50:59 +0000 (21:50 +0100)]
Merge pull request #3153 from orestisf1993/issue-2990

Don't raise floating windows when workspace is shown

6 years agoDon't raise floating windows when workspace is shown 3153/head
Orestis Floros [Mon, 26 Feb 2018 01:26:05 +0000 (03:26 +0200)]
Don't raise floating windows when workspace is shown

From comment:
https://github.com/i3/i3/issues/2990#issuecomment-368345169

To easily reproduce:
1. Open 2 floating windows
2. Focus (with `focus_follows_mouse`) the one behind
3. Move the mouse to the other workspace
4. Move the mouse inside the previous workspace (without it even
touching a window)

6 years agoMakefile: include contrib/ in dist tarballs (#3152)
Michael Stapelberg [Sun, 25 Feb 2018 12:55:30 +0000 (13:55 +0100)]
Makefile: include contrib/ in dist tarballs (#3152)

unbreaks the debian package build

6 years agoMerge pull request #3147 from walker0643/next
Ingo Bürk [Sat, 24 Feb 2018 08:48:04 +0000 (09:48 +0100)]
Merge pull request #3147 from walker0643/next

dump-asy: add prerequisites check; fix empty container names warnings

6 years agoMerge pull request #3150 from stapelberg/examples
Ingo Bürk [Sat, 24 Feb 2018 08:42:14 +0000 (09:42 +0100)]
Merge pull request #3150 from stapelberg/examples

debian: install contrib/ scripts as examples (Thanks anarcat)

6 years agoMerge pull request #3151 from stapelberg/gzip
Ingo Bürk [Sat, 24 Feb 2018 08:41:49 +0000 (09:41 +0100)]
Merge pull request #3151 from stapelberg/gzip

debian: explicitly use gzip compression

6 years agodebian: explicitly use gzip compression 3151/head
Michael Stapelberg [Sat, 24 Feb 2018 07:55:57 +0000 (08:55 +0100)]
debian: explicitly use gzip compression

fixes #3146

6 years agodebian: install contrib/ scripts as examples (Thanks anarcat) 3150/head
Michael Stapelberg [Sat, 24 Feb 2018 07:24:53 +0000 (08:24 +0100)]
debian: install contrib/ scripts as examples (Thanks anarcat)

6 years agocontrib/dump-asy.pl: add prerequisites check and fix warnings about empty container... 3147/head
walker0643 [Wed, 21 Feb 2018 21:55:55 +0000 (16:55 -0500)]
contrib/dump-asy.pl: add prerequisites check and fix warnings about empty container names

6 years agoMerge pull request #3145 from DebianWall/gvim
Ingo Bürk [Mon, 19 Feb 2018 15:03:55 +0000 (16:03 +0100)]
Merge pull request #3145 from DebianWall/gvim

Added gVim to i3-sensible-editor

6 years agoMerge pull request #3144 from DebianWall/guaketilda
Ingo Bürk [Mon, 19 Feb 2018 14:42:30 +0000 (15:42 +0100)]
Merge pull request #3144 from DebianWall/guaketilda

Added guake and tilda.

6 years agoAdded gVim to i3-sensible-editor 3145/head
DebianWall [Mon, 19 Feb 2018 14:39:46 +0000 (15:39 +0100)]
Added gVim to i3-sensible-editor