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