]> git.sur5r.net Git - i3/i3/blob - debian/changelog
Merge branch 'master' into next
[i3/i3] / debian / changelog
1 i3-wm (4.1-0) unstable; urgency=low
2
3   * NOT YET RELEASED!
4   * Implement system tray support in i3bar (for NetworkManager, Skype, …)
5   * Implement support for PCRE regular expressions in criteria
6   * Implement a new assign syntax which uses criteria
7   * Sort named workspaces whose name starts with a number accordingly
8   * Warn on duplicate bindings for the same key
9   * Restrict 'resize' command to left/right for horizontal containers, up/down
10     for vertical containers
11   * Implement the GET_MARKS IPC request to get all marks
12   * Implement the new_float config option (border style for floating windows)
13   * Implement passing IPC sockets to i3 (systemd-style socket activation)
14   * Implement the 'move output' command to move containers to a specific output
15   * Bugfix: Preserve marks when restarting
16
17  -- Michael Stapelberg <michael@stapelberg.de>  Sun, 28 Aug 2011 20:17:31 +0200
18
19 i3-wm (4.0.2-1) unstable; urgency=low
20
21   * i3-config-wizard: handle mouse button clicks on <win> and <alt> texts
22   * i3-config-wizard: check the modifier mapping to decide whether to use Mod1
23     or Mod4
24   * migrate-config: use \s, be a bit more whitespace tolerant
25   * userguide: s/mod+h/mod+s for stacking
26   * userguide: provide the default colors in the colors example
27   * userguide: document force_focus_wrapping directive
28   * userguide: properly document the resize command
29   * userguide: properly document command chaining and criteria
30   * Bugfix: Correctly bind on multiple keycodes if a symbol has more than one
31   * Bugfix: Allow multiple criteria in 'for_window'
32   * Bugfix: Ensure a minimum size when using the 'resize' command
33   * Bugfix: Start on the first named workspace, not always on '1'
34   * Bugfix: Fix resize command with direction != up for floating windows
35   * Bugfix: Correctly set the _NET_CLIENT_LIST_STACKING hint (chromium tabbar)
36   * Bugfix: 'workspace <next|prev>' now takes all outputs into account
37   * Bugfix: i3-wsbar: make workspace names clickable again
38   * Bugfix: i3-wsbar: correctly handle EOF on stdin
39   * Bugfix: i3-wsbar: display a separator between workspaces of each output
40   * Bugfix: Correctly handle the 'instance' criterion (WM_CLASS)
41   * Bugfix: Use correct format string in load_layout (fixes crash in restart)
42   * Bugfix: Fix border rendering (border lines were "cutting" through)
43   * Bugfix: Raise floating windows immediately when dragging/resizing
44   * Bugfix: Make focus switching work accross outputs again
45   * Bugfix: migration-script: handle resize top/bottom correctly
46   * Bugfix: Fix focus issue when moving containers to workspaces
47   * Bugfix: Warp cursor when changing outputs again
48   * Bugfix: i3bar: fix switching to workspaces with extremely long names
49   * Bugfix: i3bar: fix switching to workspaces "next" and "prev"
50   * Bugfix: i3bar: Correctly allocate pixmap for statuslines which are longer
51     than the screen
52   * Bugfix: i3bar: set statusline = NULL on EOF / SIGCHLD
53   * Bugfix: Correctly initialize the verbose flag
54   * Bugfix: Don’t start with workspace 'next' when the command 'workspace next'
55     is bound in the config file
56   * Bugfix: Set focus to where the mouse pointer is when starting
57   * Bugfix: Don’t change focus when assigned windows start on invisible
58     workspaces
59   * Bugfix: Don’t use absolute paths for exec in the config file
60   * Bugfix: Fix crash when using 'focus mode_toggle' on an empty workspace
61   * Bugfix: Make the 'resize' command work inside tabbed/stacked cons
62   * Bugfix: Correctly place floating windows on their appropriate output
63   * Bugfix: Fix coordinates when moving a floating window to a different output
64   * Bugfix: Correctly keep focus when moving non-leaf windows
65   * Bugfix: Accept '\t' in the set command
66   * Bugfix: Only consider tiling windows when attaching tiling windows to a
67     workspace
68   * Bugfix: Correctly render containers when a split container is focused
69   * Bugfix: Correctly recognize duplicate workspace assignments
70   * Bugfix: Re-enable X11 Eventmask *after* pushing all the X11 changes
71   * Bugfix: Fix focus stealing with assignments of floating windows
72   * Bugfix: Re-implement reconfiguring height of dock windows
73   * Bugfix: IPC: return name_json if available
74   * Bugfix: Make 'floating enable' check for dock windows
75
76  -- Michael Stapelberg <michael@stapelberg.de>  Sun, 28 Aug 2011 19:07:43 +0200
77
78 i3-wm (4.0.1-1) unstable; urgency=low
79
80   * Fix the build process of i3bar (Closes: #636274)
81   * Fix the build process on Mac OS X
82   * i3-config-wizard: also start i3bar in the keycode config template
83   * userguide: Remove the obsolete bar.* colors
84   * userguide: Use i3bar instead of dzen2 in the 'exec' example
85
86  -- Michael Stapelberg <michael@stapelberg.de>  Mon, 01 Aug 2011 23:31:06 +0200
87
88 i3-wm (4.0-1) unstable; urgency=low
89
90   * In addition to the proper flex/bison based parser for the config file
91     introduced in 3.δ, we now also have a flex/bison parser for commands. What
92     this means is that we can have more human-readable, beautiful command names
93     instead of cryptic commands like 'f' for fullscreen or 'mh' for move left.
94     In fact, the commands for the aforementioned functions *are* 'fullscreen'
95     and 'move left'!
96   * You can now chain commands using ';' (a semicolon). One example for that is
97     'workspace 3 ; exec /usr/bin/urxvt' to switch to a new workspace and open a
98     terminal.
99   * You can specify which windows should be affected by your command by using
100     different criteria. A good example is '[class="Firefox"] kill' to get rid
101     of all Firefox windows.
102   * As the configuration file needs new commands (and a few options are
103     obsolete), you need to change it. To make this process a little bit easier
104     for you, this release comes with the script i3-migrate-config-to-v4. Just
105     run it on your current config file and it will spit out a v4 config file to
106     stdout. To make things even better, i3 automatically detects v3 config files
107     and calls that script, so you never end up with a non-working config :).
108   * Similarly to the criteria when using commands, we now have a 'for_window'
109     configuration directive, which lets you automatically apply certain commands
110     to certain windows. Use it to set border styles per window, for example with
111     'for_window [class="XTerm"] border 1pixel'.
112   * Since dock clients (like dzen2) are now part of the layout tree (as opposed
113     to a custom data structure as before), it was easy to implement top and
114     bottom dock areas. Programs which properly specify the dock hint get placed
115     on the edge of the screen they request. i3bar has the -dtop and -dbottom
116     parameters, for example.
117   * The internal workspace bar is obsolete. Use i3bar instead.
118   * Resizing now works between all windows!
119   * Fullscreen now works for everything!
120   * Floating now works for everything!
121   * Your layout is now preserved when doing an inplace restart.
122   * When you have an error in your config file, a new program called i3-nagbar
123     will tell you so. It offers you two buttons: One to view the error in your
124     $PAGER and one to edit your config in your $EDITOR.
125   * The default config used key symbols (like 'bind Mod1+f fullscreen') instead
126     of key codes. If you use a non-qwerty layout, the program i3-config-wizard
127     can create a key symbol based config file based on your current layout. You
128     can also chose between Windows (Mod4) and Alt (Mod1) as your default
129     modifier. i3-config-wizard will automatically be started as long as you
130     don’t have a configuration file for i3.
131   * Custom X cursor themes are now supported.
132   * The RandR backend now respects the primary output.
133   * A wrong 'font' configuration in your config file will no longer make i3
134     exit. Instead, it will fall back to a different font and tell you about the
135     error in its log.
136   * The default split direction (whether a new window gets placed right next to
137     the current one or below the current one) is now automatically set to
138     horizontal if you have a monitor that is wider than high or vertical if you
139     a monitor which is higher than wide. This works great with rotated monitors.
140   * Sockets and temporary files are now placed in XDG_RUNTIME_DIR, if set (this
141     is used on systemd based systems).
142   * Tools like i3bar, i3-msg etc. use the I3_SOCKET_PATH property which is set
143     to the X11 root window, so you don’t have to configure your socket path
144     anywhere.
145   * The kill command kills single windows by default now. To kill a whole
146     application, use 'kill client'.
147   * IPC: Commands can now have custom replies. When the parser encounters an
148     error, a proper error reply is sent.
149   * There is now an 'exec_always' configuration directive which works like
150     'exec' but will also be run when restarting.
151
152  -- Michael Stapelberg <michael@stapelberg.de>  Sun, 31 Jul 2011 22:34:26 +0200
153
154 i3-wm (3.e-bf1-3) unstable; urgency=low
155
156   * include keyboard-layer{1,2}.png in docs (Closes: #595295)
157
158  -- Michael Stapelberg <michael@stapelberg.de>  Wed, 03 Nov 2010 20:32:42 +0100
159
160 i3-wm (3.e-bf1-2) unstable; urgency=low
161
162   * debian: call dh_installwm to register as alternative for x-window-manager
163
164  -- Michael Stapelberg <michael@stapelberg.de>  Wed, 23 Jun 2010 18:23:10 +0200
165
166 i3-wm (3.e-bf1-1) unstable; urgency=low
167
168   * Bugfix: Correctly initialize workspaces if RandR is not available
169   * Bugfix: Correctly handle asprintf() return value
170   * Bugfix: Update _NET_WM_STATE when clients request changes via ClientMessage
171   * Bugfix: Don’t invert directions when resizing floating clients (top/left)
172   * Bugfix: Don’t leak file descriptors
173
174  -- Michael Stapelberg <michael@stapelberg.de>  Wed, 09 Jun 2010 09:51:10 +0200
175
176 i3-wm (3.e-3) unstable; urgency=low
177
178   * Bump debian policy version
179   * Add Recommends: libanyevent-i3-perl, libanyevent-perl, libipc-run-perl
180     which are necessary to use i3-wsbar (which is not core functionality,
181     thus no Depends:) (Closes: #577287)
182
183  -- Michael Stapelberg <michael@stapelberg.de>  Sat, 24 Apr 2010 11:20:19 +0200
184
185 i3-wm (3.e-2) unstable; urgency=low
186
187   * Use x-terminal-emulator instead of hard-coded urxvt
188
189  -- Michael Stapelberg <michael@stapelberg.de>  Sun, 04 Apr 2010 19:30:46 +0200
190
191 i3-wm (3.e-1) unstable; urgency=low
192
193   * Implement RandR instead of Xinerama
194   * Obey the XDG Base Directory Specification for config file paths
195   * lexer/parser: proper error messages
196   * Add new options -V for verbose mode and -d <loglevel> for debug log levels
197   * Implement resize command for floating clients
198   * Include date of the last commit in version string
199   * Fixed cursor orientation when resizing
200   * Added focus_follows_mouse config option
201   * Feature: Cycle through workspaces
202   * Fix bindings using the cursor keys in default config
203   * added popup for handling SIGSEGV or SIGFPE
204   * Correctly exit when another window manager is already running
205   * Take into account the window’s base_{width,height} when resizing
206   * Disable XKB instead of quitting with an error
207   * Make containers containing exactly one window behave like default containers
208   * Also warp the pointer when moving a window to a another visible workspace
209   * work around clients setting 0xFFFF as resize increments
210   * Move autostart after creating the IPC socket in start process
211   * Restore geometry of all windows before exiting/restarting
212   * When in fullscreen mode, focus whole screens instead of denying to focus
213   * draw consistent borders for each frame in a tabbed/stacked container
214   * Update fullscreen client position/size when an output changes
215   * i3-input: Bugfix: repeatedly grab the keyboard if it does not succeed
216   * put windows with WM_CLIENT_LEADER on the workspace of their leader
217   * use real functions instead of nested functions (enables compilation with
218     llvm-clang)
219   * implement screen-spanning fullscreen mode
220   * floating resize now uses arbitrary corners
221   * floating resize now works proportionally when pressing shift
222   * Don’t use SYNC key bindings for mode_switch but re-grab keys
223   * support PREFIX and SYSCONFDIR in Makefile
224   * make pointer follow the focus when moving to a different screen also for
225     floating clients
226   * start dock clients on the output they request to be started on according
227     to their geometry
228   * handle destroy notify events like unmap notify events
229   * ewmh: correctly set _NET_CURRENT_DESKTOP to the number of the active
230     workspace
231   * ewmh: correctly set _NET_ACTIVE_WINDOW
232   * ewmh: implement support for _NET_WORKAREA (rdesktop can use that)
233   * default ipc-socket path is now ~/.i3/ipc.sock, enabled in the default config
234   * Bugfix: Containers could lose their snap state
235   * Bugfix: Use ev_loop_new to not block SIGCHLD
236   * Bugfix: if a font provides no per-char info for width, fall back to default
237   * Bugfix: lexer: return to INITIAL state after floating_modifier
238   * Bugfix: Don’t leak IPC socket to launched processes
239   * Bugfix: Use both parts of WM_CLASS (it contains instance and class)
240   * Bugfix: Correctly do boundary checking/moving to other workspaces when
241     moving floating clients via keyboard
242   * Bugfix: checked for wrong flag in size hints
243   * Bugfix: Correctly render workspace names containing some non-ascii chars
244   * Bugfix: Correctly position floating windows sending configure requests
245   * Bugfix: Don’t remap stack windows errnously when changing workspaces
246   * Bugfix: configure floating windows above tiling windows when moving them
247     to another workspace
248   * Bugfix: Take window out of fullscreen mode before entering floating mode
249   * Bugfix: Don’t enter BIND_A2WS_COND state too early
250   * Bugfix: only restore focus if the workspace is focused, not if it is visible
251   * Bugfix: numlock state will now be filtered in i3-input and signal handler
252   * Bugfix: Don’t unmap windows when current workspace gets reassigned
253   * Bugfix: correctly translate coordinates for floating windows when outputs
254     change
255   * Bugfix: Correctly switch workspace when using the "jump" command
256   * Bugfix: Fix rendering of workspace names after "reload"
257   * Bugfix: Correctly ignore clicks when in fullscreen mode
258   * Bugfix: Don’t allow fullscreen floating windows to be moved
259   * Bugfix: Don’t render containers which are not visible on hint changes
260   * Some memory leaks/invalid accesses have been fixed
261
262  -- Michael Stapelberg <michael@stapelberg.de>  Tue, 30 Mar 2010 13:11:50 +0200
263
264 i3-wm (3.d-bf1-1) unstable; urgency=low
265
266   * Bugfix: Don’t draw window title when titlebar is disabled
267   * Bugfix: Correctly switch border types for floating windows
268   * Bugfix: Correctly replay pointer if the click handler does not trigger
269   * Bugfix: Also allow WORDs as workspace names
270   * Bugfix: Correctly clear the urgency hint if a window gets unmapped without
271     clearing it
272   * Bugfix: Fix resizing of floating windows in borderless/1-px-border mode
273   * Bugfix: Accept underscores in bindsym
274   * Bugfix: Don’t set the urgency flag if the window is focused
275   * Bugfix: Handle stack-limit cols on tabbed containers
276   * Bugfix: Resize client after updating base_width/base_height
277   * Bugfix: Force render containers after setting the client active
278   * Bugfix: Fix two problems in resizing floating windows with right mouse
279   * Bugfix: Use more precise floating point arithmetics
280   * Bugfix: Correctly place new windows below fullscreen windows
281
282  -- Michael Stapelberg <michael@stapelberg.de>  Mon, 21 Dec 2009 22:33:02 +0100
283
284 i3-wm (3.d-2) unstable; urgency=low
285
286   * debian: register in doc-base
287   * debian: add watchfile
288   * debian: remove unnecessary priority-field from binary packages
289   * debian: add missing images to documentation
290
291  -- Michael Stapelberg <michael@stapelberg.de>  Mon, 23 Nov 2009 21:56:04 +0100
292
293 i3-wm (3.d-1) unstable; urgency=low
294
295   * Implement tabbing (command "T")
296   * Implement horizontal resize of containers (containers! not windows)
297   * Implement the urgency hint for windows/workspaces
298   * Implement vim-like marks (mark/goto command)
299   * Implement stack-limit for further defining how stack windows should look
300   * Implement modes which allow you to use a different set of keybindings
301     when inside a specific mode
302   * Implement changing the default mode of containers
303   * Implement long options (--version, --no-autostart, --help, --config)
304   * Implement 'bt' to toggle between the different border styles
305   * Implement an option to specify the default border style
306   * Use a yacc/lex parser/lexer for the configuration file
307   * The number of workspaces is now dynamic instead of limited to 10
308   * Floating windows (and tiled containers) can now be resized using
309     floating_modifier and right mouse button
310   * Dock windows can now reconfigure their height
311   * Bugfix: Correctly handle multiple messages on the IPC socket
312   * Bugfix: Correctly use base_width, base_height and size increment hints
313   * Bugfix: Correctly send fake configure_notify events
314   * Bugfix: Don’t crash if the numlock symbol cannot be found
315   * Bugfix: Don’t display a colon after unnamed workspaces
316   * Bugfix: If the pointer is outside of the screen when starting, fall back to
317     the first screen.
318   * Bugfix: Initialize screens correctly when not using Xinerama
319   * Bugfix: Correctly handle unmap_notify events when resizing
320   * Bugfix: Correctly warp pointer after rendering the layout
321   * Bugfix: Fix NULL pointer dereference when reconfiguring screens
322   * Explicitly specify -lxcb when linking (Closes: #554860)
323
324  -- Michael Stapelberg <michael@stapelberg.de>  Mon, 09 Nov 2009 20:53:43 +0100
325
326 i3-wm (3.c-2) unstable; urgency=low
327
328   * Fix FTBFS on GNU/kFreeBSD and possibly GNU/Hurd (Closes: #542877)
329   * Add manpage for i3-msg
330
331  -- Michael Stapelberg <michael@stapelberg.de>  Mon, 24 Aug 2009 12:23:18 +0200
332
333 i3-wm (3.c-1) unstable; urgency=low
334
335   * Implement a reload command
336   * Implement keysymbols in configuration file
337   * Implement assignments of workspaces to screens
338   * Implement named workspaces
339   * Implement borderless/1-px-border windows
340   * Implement command to focus screens
341   * Implement IPC via unix sockets
342   * Correctly render decoration of floating windows
343   * Map floating windows requesting (0x0) to center of their leader/workspace
344   * Optimization: Render stack windows on pixmaps to reduce flickering
345   * Optimization: Directly position new windows to their final position
346   * Bugfix: Repeatedly try to find screens if none are available
347   * Bugfix: Correctly redecorate clients when changing focus
348   * Bugfix: Don’t crash when clients reconfigure themselves
349   * Bugfix: Fix screen wrapping
350   * Bugfix: Fix selecting a different screen with your mouse when not having
351     any windows on the current workspace
352   * Bugfix: Correctly unmap stack windows and don’t re-map them too early
353   * Bugfix: Allow switching layout if there are no clients in the this container
354   * Bugfix: Set WM_STATE_WITHDRAWN when unmapping, unmap windows when
355     destroying
356   * Bugfix: Don’t hide assigned clients to inactive but visible workspaces
357
358  -- Michael Stapelberg <michael@stapelberg.de>  Wed, 19 Aug 2009 13:07:58 +0200
359
360 i3-wm (3.b-1) unstable; urgency=low
361
362   * Bugfix: Correctly handle col-/rowspanned containers when setting focus.
363   * Bugfix: Correctly handle col-/rowspanned containers when snapping.
364   * Bugfix: Force reconfiguration of all windows on workspaces which are
365     re-assigned because a screen was detached.
366   * Bugfix: Several bugs in resizing table columns fixed.
367   * Bugfix: Resizing should now work correctly in all cases.
368   * Bugfix: Correctly re-assign dock windows when workspace is destroyed.
369   * Bugfix: Correctly handle Mode_switch modifier.
370   * Bugfix: Don't raise clients in fullscreen mode.
371   * Bugfix: Re-assign dock windows to different workspaces when a workspace
372     is detached.
373   * Bugfix: Fix crash because of workspace-pointer which did not get updated
374   * Bugfix: Correctly initialize screen when Xinerama is disabled.
375   * Bugfix: Fullscreen window movement and focus problems fixed
376   * Implement jumping to other windows by specifying their position or
377     window class/title.
378   * Implement jumping back by using the focus stack.
379   * Implement autostart (exec-command in configuration file).
380   * Implement floating.
381   * Implement automatically assigning clients on specific workspaces.
382   * Implement variables in configfile.
383   * Colors are now configurable.
384
385  -- Michael Stapelberg <michael@stapelberg.de>  Fri, 26 Jun 2009 04:42:23 +0200
386
387 i3-wm (3.a-bf2-1) unstable; urgency=low
388
389   * Bugfix: Don't crash when setting focus
390   * Bugfix: Reconfigure bar window when changing resolutions
391
392  -- Michael Stapelberg <michael@stapelberg.de>  Sun, 03 May 2009 23:02:24 +0200
393
394 i3-wm (3.a-bf1-1) unstable; urgency=low
395
396   * Bugfix: When entering a stack window with the mouse, set focus to the
397     active client in the container the stack window belongs to.
398   * Bugfix: Correctly filter out the numlock bit. This fixes i3 not reacting
399     to any keybindings after pressing numlock once.
400   * Bugfix: Don't crash when Xinerama is disabled.
401   * Bugfix: Correctly remove client from container when moving to another
402     workspace.
403   * Bugfix: Set focus to the client which was previously focused instead of
404     the next client in container when moving windows out of a container.
405   * Bugfix: Correctly set focus when switching between screens.
406   * Bugfix: Don't crash anymore moving focus to another screen under the
407     following conditions: The screen you switch to has a lower number of cells
408     and/or rows than the current one, you switch focus using your mouse, you
409     previously were in a column/row which is not available on the destination
410     screen.
411   * Bugfix: When switching screens, warp the pointer to the correct
412     destination window.
413   * Bugfix: Store dock clients per screen, not per workspace.
414   * Bugfix: Perform bounds checking for snapped containers.
415   * Bugfix: Send clients their absolute position/size (on the root window) in
416     generated configure events. This fixes problems with xfontsel, xmaple,
417     etc.
418   * Bugfix: Correctly update state when moving fullscreen windows across
419     workspaces.
420   * Bugfix: Correctly restart i3 when not using its absolute path
421   * Bugfix: Drag & Drop in GTK applications works now
422   * Bugfix: Don't hide non-managed windows (libnotify-popups for example)
423     when raising clients in stacked containers.
424   * Bugfix: Correctly restore focus when leaving fullscreen mode
425   * Bugfix: Re-distribute free space when closing customly resized containers,
426     re-evaluate for other containers
427   * Bugfix: When moving windows into different containers, insert them at the
428     correct position.
429   * Bugfix: Correctly set focus when moving windows into other containers
430   * Implement scrolling on stack windows and on the bottom bar.
431   * Create i3-wm-dbg with debug symbols
432   * Don't rely on libxcb-wm any longer, as it got removed in libxcb 0.3.4.
433
434  -- Michael Stapelberg <michael@stapelberg.de>  Sat, 02 May 2009 20:55:46 +0200
435
436 i3-wm (3.a-1) unstable; urgency=low
437
438   * First release (Closes: #521709)
439
440  -- Michael Stapelberg <michael@stapelberg.de>  Sun, 29 Mar 2009 18:21:30 +0200