]> git.sur5r.net Git - i3/i3/log
i3/i3
14 years agoSwitch to libev for the event loop to build a base for IPC stuff. Please test!
Michael Stapelberg [Mon, 1 Jun 2009 18:59:40 +0000 (20:59 +0200)]
Switch to libev for the event loop to build a base for IPC stuff. Please test!

14 years agoImplement variables in configfile.
Michael Stapelberg [Mon, 1 Jun 2009 14:19:06 +0000 (16:19 +0200)]
Implement variables in configfile.

This implements ticket #42.

Syntax is "set $key value". All further instances of $key will be
replaced with value before parsing each line of the configfile.

14 years agoBugfix: Rendering of the bottom border line was still off by one
Michael Stapelberg [Mon, 1 Jun 2009 13:35:59 +0000 (15:35 +0200)]
Bugfix: Rendering of the bottom border line was still off by one

14 years agodebian: Update changelog
Michael Stapelberg [Mon, 1 Jun 2009 13:21:35 +0000 (15:21 +0200)]
debian: Update changelog

14 years agoOptimization: Get the colorpixels when loading configuration, make use of the new...
Michael Stapelberg [Mon, 1 Jun 2009 13:14:45 +0000 (15:14 +0200)]
Optimization: Get the colorpixels when loading configuration, make use of the new config struct

Instead of building arrays of colorpixels we can simply use a pointer
to a struct Colortriple. Furthermore, by getting the colorpixels when
loading the configuration, we save a lot of function calls in the
main code.

14 years agouserguide: Document most features
Michael Stapelberg [Mon, 1 Jun 2009 12:59:25 +0000 (14:59 +0200)]
userguide: Document most features

14 years agoDraw the border lines in the window decoration correctly
Michael Stapelberg [Sun, 31 May 2009 16:37:47 +0000 (18:37 +0200)]
Draw the border lines in the window decoration correctly

14 years agoDon’t check twice for client.focused, change all places were colorcodes are used
Michael Stapelberg [Sun, 31 May 2009 15:18:49 +0000 (17:18 +0200)]
Don’t check twice for client.focused, change all places were colorcodes are used

14 years agoImplement clients going automatically into floating
Michael Stapelberg [Sat, 30 May 2009 22:31:18 +0000 (00:31 +0200)]
Implement clients going automatically into floating

14 years agoretab! src/config.c
Michael Stapelberg [Sat, 30 May 2009 20:24:05 +0000 (22:24 +0200)]
retab! src/config.c

14 years agoAdd header for config.h, retab! the file
Michael Stapelberg [Sat, 30 May 2009 20:22:58 +0000 (22:22 +0200)]
Add header for config.h, retab! the file

14 years agoUse a more efficient struct for storing colors, validate/parse them more easily
Michael Stapelberg [Sat, 30 May 2009 20:20:32 +0000 (22:20 +0200)]
Use a more efficient struct for storing colors, validate/parse them more easily

14 years agoIntroduced color setting.
Atsutane [Fri, 29 May 2009 14:33:48 +0000 (16:33 +0200)]
Introduced color setting.

14 years agoBugfix: Send fake configure notify events when moving clients (Thanks Volker)
Michael Stapelberg [Sat, 30 May 2009 09:49:50 +0000 (11:49 +0200)]
Bugfix: Send fake configure notify events when moving clients (Thanks Volker)

This fixes ticket #47

14 years agoBugfix: Correctly set focus when switching to a workspace with floating clients
Michael Stapelberg [Sat, 30 May 2009 09:41:49 +0000 (11:41 +0200)]
Bugfix: Correctly set focus when switching to a workspace with floating clients

This fixes ticket #45

14 years agoBugfix: Correctly cleanup stack_windows when setting clients to floating
Michael Stapelberg [Sat, 30 May 2009 09:35:32 +0000 (11:35 +0200)]
Bugfix: Correctly cleanup stack_windows when setting clients to floating

This fixes ticket #44

15 years agoDon’t kill workspaces on which you currently are when changing screen configuration
Michael Stapelberg [Wed, 27 May 2009 16:46:58 +0000 (18:46 +0200)]
Don’t kill workspaces on which you currently are when changing screen configuration

15 years agoBugfix: Don’t ignore enter_notify events for clients on different screens (Thanks...
Michael Stapelberg [Wed, 27 May 2009 16:19:14 +0000 (18:19 +0200)]
Bugfix: Don’t ignore enter_notify events for clients on different screens (Thanks Mirko)

This fixes ticket #41.

15 years agoBugfix: Forgot to update client’s workspace pointer (Thanks Mirko)
Michael Stapelberg [Wed, 27 May 2009 10:27:29 +0000 (12:27 +0200)]
Bugfix: Forgot to update client’s workspace pointer (Thanks Mirko)

15 years agoBugfix: Fix crash when focusing/moving on an empty workspace (Thanks Mirko)
Michael Stapelberg [Wed, 27 May 2009 10:15:23 +0000 (12:15 +0200)]
Bugfix: Fix crash when focusing/moving on an empty workspace (Thanks Mirko)

15 years agoRemove MAKE=make from makefile to ensure recursive invocations work (i.e. clean target)
Michael Stapelberg [Tue, 26 May 2009 22:47:00 +0000 (00:47 +0200)]
Remove MAKE=make from makefile to ensure recursive invocations work (i.e. clean target)

See http://www.gnu.org/software/make/manual/make.html#MAKE-Variable

15 years agoDocument binding on Mode_switch in userguide, be more verbose in config
Michael Stapelberg [Tue, 26 May 2009 15:37:56 +0000 (17:37 +0200)]
Document binding on Mode_switch in userguide, be more verbose in config

15 years agoDocument new files in the hacking-howto
Michael Stapelberg [Tue, 26 May 2009 15:25:45 +0000 (17:25 +0200)]
Document new files in the hacking-howto

15 years agoBugfix: Cleanup the table after putting clients into floating mode
Michael Stapelberg [Tue, 26 May 2009 15:16:51 +0000 (17:16 +0200)]
Bugfix: Cleanup the table after putting clients into floating mode

15 years agoDon’t process autostart when restarting (new parameter -a)
Michael Stapelberg [Tue, 26 May 2009 15:09:34 +0000 (17:09 +0200)]
Don’t process autostart when restarting (new parameter -a)

15 years agoMove toggle_fullscreen to client.c
Michael Stapelberg [Tue, 26 May 2009 14:49:57 +0000 (16:49 +0200)]
Move toggle_fullscreen to client.c

15 years agoBugfix: Fix fullscreen for floating clients, fix window name updates for floating...
Michael Stapelberg [Tue, 26 May 2009 14:46:50 +0000 (16:46 +0200)]
Bugfix: Fix fullscreen for floating clients, fix window name updates for floating clients

15 years agoImplement floating (please test and find bugs)
Michael Stapelberg [Sat, 23 May 2009 14:34:03 +0000 (16:34 +0200)]
Implement floating (please test and find bugs)

Details which are missing: A command to hide/show all floating clients,
moving/resizing clients with your mouse holding Mod1 (click anywhere
in the client, not just on its borders), resize/move by keyboard, select
next/previous client by keyboard

15 years agoUse UTF-8 for all locale types in the manpage.
Michael Stapelberg [Wed, 20 May 2009 19:51:47 +0000 (21:51 +0200)]
Use UTF-8 for all locale types in the manpage.

Though this does not make a difference, it is a cleaner way like this.

15 years agoBugfix: Correctly handle mode_switch state bit, more debugging output for states
Michael Stapelberg [Tue, 19 May 2009 13:22:50 +0000 (15:22 +0200)]
Bugfix: Correctly handle mode_switch state bit, more debugging output for states

We abuse (1 << 8) as mode_switch bit, which is in the range of the
filtered state bits (see previous commit). Therefore, we need to
filter first and then check for mode_switch.

Furthermore, we used 0x2 before, which was just wrong. So, use our
bitmask, not the normal one (0x2).

15 years agoBugfix: keypress: Only use the lower 8 bits of the mask so that mouse buttons are...
Michael Stapelberg [Tue, 19 May 2009 11:51:03 +0000 (13:51 +0200)]
Bugfix: keypress: Only use the lower 8 bits of the mask so that mouse buttons are filtered out (Thanks Mirko)

Sometimes, when the mouse button gets stuck, state contains the bit for
BUTTON_MASK_1 (or other buttons). We filter them out to continue processing
keys correctly.

15 years agoBugfix: Don’t crash when above dock windows (Thanks Mirko)
Michael Stapelberg [Sun, 17 May 2009 08:54:12 +0000 (10:54 +0200)]
Bugfix: Don’t crash when above dock windows (Thanks Mirko)

15 years agoMove the manage_*-functions into their own file as they got quite large
Michael Stapelberg [Sat, 16 May 2009 16:25:04 +0000 (18:25 +0200)]
Move the manage_*-functions into their own file as they got quite large

15 years agoBugfix: Re-assign dock windows to different workspaces when a workspace is deleted
Michael Stapelberg [Sat, 16 May 2009 16:12:35 +0000 (18:12 +0200)]
Bugfix: Re-assign dock windows to different workspaces when a workspace is deleted

Killing a dock client and having destroyed workspace 1 before (or the workspace
on which the dock client was started when it was not auto-started) crashed i3 before
this bugfix.

15 years agoImplement putting clients onto specific workspaces ("assign" in the configfile)
Michael Stapelberg [Sat, 16 May 2009 15:32:36 +0000 (17:32 +0200)]
Implement putting clients onto specific workspaces ("assign" in the configfile)

This closes ticket #39

15 years agodebian: Fix section/priority/dependencies of i3-wm-dbg (Thanks chrish)
Michael Stapelberg [Sat, 9 May 2009 21:16:29 +0000 (23:16 +0200)]
debian: Fix section/priority/dependencies of i3-wm-dbg (Thanks chrish)

15 years agodebian: update changelog
Michael Stapelberg [Sat, 9 May 2009 18:18:41 +0000 (20:18 +0200)]
debian: update changelog

15 years agodebian: As asciidoc arrived in testing, we can require a higher version
Michael Stapelberg [Sat, 9 May 2009 18:14:17 +0000 (20:14 +0200)]
debian: As asciidoc arrived in testing, we can require a higher version

15 years agoBugfix: Correctly handle col-/rowspanned containers when setting focus (Thanks Ned)
Michael Stapelberg [Sat, 9 May 2009 17:59:36 +0000 (19:59 +0200)]
Bugfix: Correctly handle col-/rowspanned containers when setting focus (Thanks Ned)

This fixes ticket #34

15 years agoFix a bug in window placement introduced by the last commit
Michael Stapelberg [Sat, 9 May 2009 17:13:14 +0000 (19:13 +0200)]
Fix a bug in window placement introduced by the last commit

15 years agoBugfix: Fix display/resizing of colspanned containers
Michael Stapelberg [Sat, 9 May 2009 16:43:02 +0000 (18:43 +0200)]
Bugfix: Fix display/resizing of colspanned containers

15 years agoBugfix: Store width_factor/height_factor per workspace, not per container
Michael Stapelberg [Sat, 9 May 2009 15:48:35 +0000 (17:48 +0200)]
Bugfix: Store width_factor/height_factor per workspace, not per container

This is a relatively big change, however all cases should be handled by
now.

Because the function to do graphical resizing got rather large, I’ve created
a new file src/resize.c for it.

This fixes ticket #35.

15 years agoBugfix: Force reconfiguration of all windows on workspaces which needed to be re...
Michael Stapelberg [Sat, 9 May 2009 11:01:23 +0000 (13:01 +0200)]
Bugfix: Force reconfiguration of all windows on workspaces which needed to be re-assigned (Thanks Mirko)

When you disable a Xinerama screen (think of removing a video projector),
the workspaces of that screen need to be re-assigned to another screen.
Previously, the clients affected by this re-assignment did not get re-
configured, which made them appear on the next screen which got configured
at the position of the old one again if you did not switch to the reassigned
workspace before.

So, to reproduce it:
xrandr --output VGA --mode 1280x1024 --right-of LVDS
move windows to the new workspace
xrandr --output VGA --off
xrandr --output VGA --mode 1280x1024 --right-of LVDS

This fixes ticket #36

15 years agoBugfix: Don’t raise clients in fullscreen mode, send correct position to clients...
Michael Stapelberg [Fri, 8 May 2009 21:22:40 +0000 (23:22 +0200)]
Bugfix: Don’t raise clients in fullscreen mode, send correct position to clients in fullscreen mode (Thanks ch3ka, mist)

This fixes #38 which only happened for clients which actively tried
to reconfigure themselves.

15 years agoDebian: Update build-dependencies (Thanks Ned), s/Source-Version/binary:Version for...
Michael Stapelberg [Fri, 8 May 2009 10:09:23 +0000 (12:09 +0200)]
Debian: Update build-dependencies (Thanks Ned), s/Source-Version/binary:Version for debug package

15 years agoBugfix: Resize all containers in the column instead of only the active one (Thanks...
Michael Stapelberg [Thu, 7 May 2009 11:46:34 +0000 (13:46 +0200)]
Bugfix: Resize all containers in the column instead of only the active one (Thanks Ned)

This fixes ticket #33.

15 years agoImplement autostart using "exec" in config
Michael Rudolf [Sun, 29 Mar 2009 12:53:48 +0000 (14:53 +0200)]
Implement autostart using "exec" in config

Syntax is "exec <application>", like when creating a binding.
Multiple entries are possible, applications are started in
the specified order.

15 years agoUpdate debian changelog
Michael Stapelberg [Tue, 5 May 2009 15:29:46 +0000 (17:29 +0200)]
Update debian changelog

15 years agoImplement a command to travel the focusstack. This can be used like a jumpback.
Michael Stapelberg [Tue, 5 May 2009 15:25:56 +0000 (17:25 +0200)]
Implement a command to travel the focusstack. This can be used like a jumpback.

However, it is a bit more flexible obviously. You can specify the
offset of the window you want to go to, to implement workflows like
the following:
 * Jump to mutt
 * Jump to irssi
 * Jump back ("focus 2" would be the command)

15 years agoAdd debug message for jumping
Michael Stapelberg [Tue, 5 May 2009 14:57:21 +0000 (16:57 +0200)]
Add debug message for jumping

15 years agoImplement jumping to windows by matching their class / title
Michael Stapelberg [Tue, 31 Mar 2009 08:46:12 +0000 (10:46 +0200)]
Implement jumping to windows by matching their class / title

15 years agoImplement storing WM_CLASS of each client
Michael Stapelberg [Mon, 30 Mar 2009 07:39:35 +0000 (09:39 +0200)]
Implement storing WM_CLASS of each client

15 years agoChange syntax of jump to col,row instead of row,col to make it consistent with the...
Michael Stapelberg [Mon, 30 Mar 2009 07:27:58 +0000 (09:27 +0200)]
Change syntax of jump to col,row instead of row,col to make it consistent with the internal data structures, document it in commandmode

15 years agoSome small style changes to make urs’ code consistent
Michael Stapelberg [Mon, 30 Mar 2009 07:25:30 +0000 (09:25 +0200)]
Some small style changes to make urs’ code consistent

15 years agoAdded a "jump" command to directly focus a container.
Urs Ganse [Sun, 29 Mar 2009 12:53:48 +0000 (14:53 +0200)]
Added a "jump" command to directly focus a container.

Syntax is "jump <ws> <row> <col>".
This is quite handy for clients that you always keep
in the same spot, and like to jump to quite often. The
irc client would be an example.

15 years agowebsite: add screenshot by Atsutane
Michael Stapelberg [Sun, 3 May 2009 21:09:18 +0000 (23:09 +0200)]
website: add screenshot by Atsutane

15 years agodebian: update changelog
Michael Stapelberg [Sun, 3 May 2009 21:02:39 +0000 (23:02 +0200)]
debian: update changelog

15 years agoBugfix: Reconfigure bar window when changing resolutions (Thanks Mirko) 3.a-bf2
Michael Stapelberg [Sun, 3 May 2009 20:59:50 +0000 (22:59 +0200)]
Bugfix: Reconfigure bar window when changing resolutions (Thanks Mirko)

15 years agoBugfix: Fix crash on new clients (Thanks Mirko)
Michael Stapelberg [Sun, 3 May 2009 20:18:33 +0000 (22:18 +0200)]
Bugfix: Fix crash on new clients (Thanks Mirko)

15 years agowebsite: link screencast
Michael Stapelberg [Sun, 3 May 2009 15:37:20 +0000 (17:37 +0200)]
website: link screencast

15 years agowebsite: add link to the release notes
Michael Stapelberg [Sun, 3 May 2009 15:33:17 +0000 (17:33 +0200)]
website: add link to the release notes

15 years agowebsite: Update download page
Michael Stapelberg [Sun, 3 May 2009 15:29:26 +0000 (17:29 +0200)]
website: Update download page

15 years agoAdd release notes to git, welcome 3.a-bf1 :-) 3.a-bf1
Michael Stapelberg [Sun, 3 May 2009 15:24:07 +0000 (17:24 +0200)]
Add release notes to git, welcome 3.a-bf1 :-)

15 years agoMakefile: Correctly create dist package
Michael Stapelberg [Sun, 3 May 2009 15:16:12 +0000 (17:16 +0200)]
Makefile: Correctly create dist package

15 years agodebian: remove alpha version hint
Michael Stapelberg [Sun, 3 May 2009 15:15:49 +0000 (17:15 +0200)]
debian: remove alpha version hint

15 years agomanpage: Fix wrong keybindings
Michael Stapelberg [Sun, 3 May 2009 14:52:53 +0000 (16:52 +0200)]
manpage: Fix wrong keybindings

15 years agoFix a bug caused by not absolutely raising windows (revision 95f4085bc)
Michael Stapelberg [Sun, 3 May 2009 14:41:53 +0000 (16:41 +0200)]
Fix a bug caused by not absolutely raising windows (revision 95f4085bc)

15 years agoBugfix: Insert windows at correct position/set focus correctly when moving between...
Michael Stapelberg [Sun, 3 May 2009 14:24:12 +0000 (16:24 +0200)]
Bugfix: Insert windows at correct position/set focus correctly when moving between containers

15 years agodebian: update changelog
Michael Stapelberg [Sun, 3 May 2009 12:31:02 +0000 (14:31 +0200)]
debian: update changelog

15 years agoBugfix: Re-distribute free space when closing customly resized containers, re-evaluat...
Michael Stapelberg [Sun, 3 May 2009 12:29:58 +0000 (14:29 +0200)]
Bugfix: Re-distribute free space when closing customly resized containers, re-evaluate for other containers

This fixes ticket #4

15 years agoBugfix: Correctly restore focus when leaving fullscreen mode
Michael Stapelberg [Sun, 3 May 2009 00:13:11 +0000 (02:13 +0200)]
Bugfix: Correctly restore focus when leaving fullscreen mode

15 years agoRaise clients only relatively to the one which was focused before.
Michael Stapelberg [Sat, 2 May 2009 22:23:12 +0000 (00:23 +0200)]
Raise clients only relatively to the one which was focused before.

This should fix ticket #31.

15 years agowebsite: Add new screenshot
Michael Stapelberg [Sat, 2 May 2009 21:53:36 +0000 (23:53 +0200)]
website: Add new screenshot

15 years agoBugfix: Correctly redirect output when checking for pkg-config
Michael Stapelberg [Sat, 2 May 2009 19:03:54 +0000 (21:03 +0200)]
Bugfix: Correctly redirect output when checking for pkg-config

15 years agodebian: update changelog, change maintainer address
Michael Stapelberg [Sat, 2 May 2009 18:56:37 +0000 (20:56 +0200)]
debian: update changelog, change maintainer address

15 years agoBugfix: Fix drag&drop in GTK applications (firefox, thunderbird)
Michael Stapelberg [Sat, 2 May 2009 18:51:55 +0000 (20:51 +0200)]
Bugfix: Fix drag&drop in GTK applications (firefox, thunderbird)

Thanks to Daniel Wäber’s contribution to wmii:
http://code.suckless.org/hg/wmii/rev/f4f25de0de54

15 years agoi3status: fix filename
Michael Stapelberg [Fri, 1 May 2009 17:34:03 +0000 (19:34 +0200)]
i3status: fix filename

15 years agoAdd website for i3status
Michael Stapelberg [Fri, 1 May 2009 17:29:29 +0000 (19:29 +0200)]
Add website for i3status

15 years agoBugfix: Correctly restart i3 when not using its absolute path
Michael Stapelberg [Fri, 1 May 2009 14:10:02 +0000 (16:10 +0200)]
Bugfix: Correctly restart i3 when not using its absolute path

15 years agoMakefile: Add more checks: check if pkg-config and libxcb-keysyms are installed
Michael Stapelberg [Thu, 30 Apr 2009 15:39:01 +0000 (17:39 +0200)]
Makefile: Add more checks: check if pkg-config and libxcb-keysyms are installed

15 years agoManpage: Remove alpha warning, remove TODO list and add a hint to the bugtracker...
Michael Stapelberg [Thu, 30 Apr 2009 15:31:09 +0000 (17:31 +0200)]
Manpage: Remove alpha warning, remove TODO list and add a hint to the bugtracker instead

15 years agoSome more work on the how to hack documentation
Michael Stapelberg [Thu, 30 Apr 2009 15:27:58 +0000 (17:27 +0200)]
Some more work on the how to hack documentation

15 years agoChange maintainer email address and set the DM-Upload-Allowed field
Michael Stapelberg [Thu, 30 Apr 2009 13:16:45 +0000 (15:16 +0200)]
Change maintainer email address and set the DM-Upload-Allowed field

15 years agodebian-package: Add provides: x-window-manager, suggest a terminal emulator
Michael Stapelberg [Thu, 30 Apr 2009 10:45:27 +0000 (12:45 +0200)]
debian-package: Add provides: x-window-manager, suggest a terminal emulator

15 years agoBugfix: Don’t crash when asprintf() can’t print the window name (Thanks ch3ka)
Michael Stapelberg [Tue, 28 Apr 2009 20:41:00 +0000 (22:41 +0200)]
Bugfix: Don’t crash when asprintf() can’t print the window name (Thanks ch3ka)

Apparantly, under some conditions (using LANG=en_US.UTF-8, other locale
variables unset), asprintf() says "Invalid or incomplete multibyte or
wide character" when given a string in COMPOUND_TEXT encoding.

For now, we properly handle asprintf-errors (this should have been
before), but there might be a better solution.

15 years agodocs/debugging: also redirect stderr
Michael Stapelberg [Tue, 28 Apr 2009 20:25:51 +0000 (22:25 +0200)]
docs/debugging: also redirect stderr

15 years agoAdd docs/debugging to website
Michael Stapelberg [Tue, 28 Apr 2009 19:11:27 +0000 (21:11 +0200)]
Add docs/debugging to website

15 years agoAdd docs/debugging
Michael Stapelberg [Tue, 28 Apr 2009 19:10:20 +0000 (21:10 +0200)]
Add docs/debugging

15 years agoAdd pkg-config to build dependencies
Michael Stapelberg [Thu, 23 Apr 2009 20:44:57 +0000 (22:44 +0200)]
Add pkg-config to build dependencies

15 years agoAdd missing files to make dist, delete old RFC file
Michael Stapelberg [Sun, 19 Apr 2009 20:31:49 +0000 (22:31 +0200)]
Add missing files to make dist, delete old RFC file

15 years agoAdd a .desktop-file containing xsession information for freedesktop compliant login...
Michael Stapelberg [Sun, 19 Apr 2009 20:29:04 +0000 (22:29 +0200)]
Add a .desktop-file containing xsession information for freedesktop compliant login managers

15 years agoBugfix: That should be xcb_keycode_t, not xcb_keysym_t
Michael Stapelberg [Sun, 19 Apr 2009 19:40:49 +0000 (21:40 +0200)]
Bugfix: That should be xcb_keycode_t, not xcb_keysym_t

15 years agoAdd conditional for the 0.3.3 → 0.3.4 API fix in libxcb-keysyms
Michael Stapelberg [Sun, 19 Apr 2009 19:37:34 +0000 (21:37 +0200)]
Add conditional for the 0.3.3 → 0.3.4 API fix in libxcb-keysyms

15 years agoUpdate debian changelog / controlfile
Michael Stapelberg [Sun, 19 Apr 2009 18:45:37 +0000 (20:45 +0200)]
Update debian changelog / controlfile

15 years agoUpdate TODO file
Michael Stapelberg [Sun, 19 Apr 2009 18:45:28 +0000 (20:45 +0200)]
Update TODO file

15 years agoDon’t rely on libxcb-wm any longer, as it got removed in libxcb 0.3.4
Michael Stapelberg [Sun, 19 Apr 2009 18:44:34 +0000 (20:44 +0200)]
Don’t rely on libxcb-wm any longer, as it got removed in libxcb 0.3.4

See http://cgit.freedesktop.org/xcb/util/commit/?id=4c9a707f472e49bc3005354db265a0214071d46b

15 years agoFreeBSD requires -liconv to link (Thanks Dennis Herrmann)
Michael Stapelberg [Sun, 19 Apr 2009 12:04:33 +0000 (14:04 +0200)]
FreeBSD requires -liconv to link (Thanks Dennis Herrmann)

15 years agoFix for the fix: Don’t substract height twice
Michael Stapelberg [Fri, 17 Apr 2009 23:13:57 +0000 (01:13 +0200)]
Fix for the fix: Don’t substract height twice

15 years agoBugfix: Correctly adjust state when transferring fullscreen windows to other workspac...
Michael Stapelberg [Fri, 17 Apr 2009 19:01:33 +0000 (21:01 +0200)]
Bugfix: Correctly adjust state when transferring fullscreen windows to other workspaces (Thanks Mirko)

This fixes ticket #27.
Furthermore, it is ensured that only one client at a time is in fullscreen mode.

15 years agoBugfix: Calculation of width in fake_absoute_configure_notify was wrong for windows...
Michael Stapelberg [Fri, 17 Apr 2009 17:08:38 +0000 (19:08 +0200)]
Bugfix: Calculation of width in fake_absoute_configure_notify was wrong for windows with aspect ratio (Thanks Mirko)