Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-04-29 | sway/config.c: Leading on from cdf017c, we need to free path | Daniel Lockyer | |
2016-04-29 | sway/config.c: res->input is a malloc'ed section which wasn't freed | Daniel Lockyer | |
2016-04-29 | sway/config.c: wordexp has a corresponding wordfree which was never used | Daniel Lockyer | |
I had to change the assignment to path to be wrapped by strdup as we pass the data out of the method. | |||
2016-04-29 | sway/config.c: config_home is the result of a malloc but was never freed | Daniel Lockyer | |
2016-04-29 | common/stringop.c: a premature decrement meant an element of argv was never ↵ | Daniel Lockyer | |
released | |||
2016-04-29 | Merge pull request #614 from neosilky/memleak | Drew DeVault | |
sway/commands.c: add some free calls to release allocated memory | |||
2016-04-29 | sway/commands.c: add some free calls to release allocated memory | Daniel Lockyer | |
2016-04-29 | Fix another -Wunused-result | Drew DeVault | |
2016-04-29 | Fix oversight in ebdce71 | Drew DeVault | |
2016-04-29 | Fix -Wunused-result problems | Drew DeVault | |
2016-04-29 | Add -Werror to C flags | Drew DeVault | |
2016-04-29 | Merge pull request #613 from mikkeloscar/init-y | Drew DeVault | |
Fix uninitialized variable | |||
2016-04-29 | Fix uninitialized variable | Mikkel Oscar Lyderik | |
2016-04-29 | Merge pull request #612 from nrechn/master | Mikkel Oscar Lyderik | |
Update config | |||
2016-04-29 | Update config | nrechn | |
update command "swaymsg" instead of "sway-msg" | |||
2016-04-28 | Merge pull request #611 from mikkeloscar/bindcode-fix | Drew DeVault | |
Fix bindcode by offsetting xkb keycode by 8 | |||
2016-04-28 | Fix bindcode by offsetting xkb keycode by 8 | Mikkel Oscar Lyderik | |
The bindcode has to be offset by 8 to match the keycode we get from wlc. https://github.com/xkbcommon/libxkbcommon/blob/master/xkbcommon/xkbcommon.h#L160 | |||
2016-04-28 | Merge pull request #610 from sleep-walker/master | Drew DeVault | |
CMake related improvements | |||
2016-04-28 | Respect supplied CMAKE_C_FLAGS | Tomáš Čech | |
2016-04-28 | Explicitly mark static linking in CMake | Tomáš Čech | |
When no type is given, it depends on BUILD_SHARED_LIBS value which is not desired in this case. | |||
2016-04-28 | Fix missing include paths | Tomáš Čech | |
When headers were installed in more sofisticated places (but package config knows it right), it revealed missing paths in CMake configuration. Lets fix it. | |||
2016-04-27 | Merge pull request #606 from mikkeloscar/tabbed-stacking-layout | Drew DeVault | |
border: clear buffer on fullscreen views | |||
2016-04-27 | border: clear buffer on fullscreen views | Mikkel Oscar Lyderik | |
This patch makes sure to clear the border buffer of fullscreen view so the border doesn't get drawn behind a fullscreen view, which would be visible if the view was transparent. | |||
2016-04-27 | Only check tabbed_stacked_parent for focused windows | Mikkel Oscar Lyderik | |
2016-04-25 | Merge pull request #603 from fluxchief/master | Mikkel Oscar Lyderik | |
swaylock: fix double free | |||
2016-04-25 | swaylock: fix double free | Kevin Hamacher | |
2016-04-25 | Merge pull request #566 from mikkeloscar/tabbed-stacking-layout | Drew DeVault | |
Tabbed and stacked layout | |||
2016-04-25 | Remove commented code | Mikkel Oscar Lyderik | |
2016-04-25 | Remove unused function | Mikkel Oscar Lyderik | |
2016-04-25 | Don't send invisble view to back | Mikkel Oscar Lyderik | |
2016-04-25 | Use correct geometry for nested containers | Mikkel Oscar Lyderik | |
2016-04-25 | Add title to nested tabbed/stacked containers | Mikkel Oscar Lyderik | |
2016-04-25 | Disable inner gaps when in tabbed/stacked mode | Mikkel Oscar Lyderik | |
2016-04-25 | Add support for nested tabbed/stacked containers | Mikkel Oscar Lyderik | |
2016-04-25 | Use tabs for indentation | Mikkel Oscar Lyderik | |
2016-04-25 | Make floating border fixes work with tabbed/stacked code | Mikkel Oscar Lyderik | |
2016-04-25 | Reapply prev layout when exiting tabbed/stacked | Mikkel Oscar Lyderik | |
2016-04-25 | Improve move command with tabbed/stacked layout | Mikkel Oscar Lyderik | |
2016-04-25 | Correctly determine default layout | Mikkel Oscar Lyderik | |
2016-04-25 | Fix problems with floating windows | Mikkel Oscar Lyderik | |
Makes any tabbed/stacked layout a container to separate from floating windows which may be attached to a workspace. | |||
2016-04-25 | Tabbed and stacked layout | Mikkel Oscar Lyderik | |
2016-04-24 | Merge pull request #601 from Hummer12007/pango_markup_config | Drew DeVault | |
Pango markup config | |||
2016-04-24 | Renamed pango_markup config options | Mykyta Holubakha | |
2016-04-24 | Renamed to pango_markup | Mykyta Holubakha | |
2016-04-24 | Fix line length calculation | Mykyta Holubakha | |
2016-04-24 | Added plaintext_markup to swaybar IPC | Mykyta Holubakha | |
2016-04-24 | Added plaintext markup configuration | Mykyta Holubakha | |
2016-04-24 | Merge pull request #598 from Hummer12007/pango_fix | Drew DeVault | |
Passing missing argument to get_text_size | |||
2016-04-24 | Merge pull request #599 from mikkeloscar/bar-markup-pango | Drew DeVault | |
Use i3bar format for markup field. | |||
2016-04-24 | Use i3bar format for markup field. | Mikkel Oscar Lyderik | |
In the i3bar protocol the value of the markup field is a string: "pango" or "none" rather than a bool. This patch makes swaybar compatible with that. http://i3wm.org/docs/i3bar-protocol.html |