aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorLines
2017-08-12Prevent crash if DBus connection is NULLCalvin Lee-1/+1
Fixes #1307
2017-08-09Re-enable implicit fallthrough warningsDrew DeVault-5/+0
2017-08-09One moreDrew DeVault-2/+2
2017-08-09Clean up fallthrough issuesDrew DeVault-65/+60
2017-08-08Merge pull request #1313 from ilyaluk/nonblock-ipc-serverDrew DeVault-5/+96
Implement nonblocking IO in IPC server
2017-08-08Implement nonblocking IO in IPC serverIlya Lukyanov-5/+96
Added client write buffer and handler for writable status on client socket.
2017-08-06Merge pull request #1309 from 4e554c4c/racey_killsDrew DeVault-1/+1
Prevent race condition in the kill command
2017-08-06Prevent race condition in the kill commandCalvin Lee-1/+1
When killing views with `close_views` a use-after-free can sometimes occur because parent views are killed before their children. This commit makes `container_map` run functions on child containers before their parent, fixing the race. Fixes #1302
2017-08-03Merge pull request #1300 from emersion/patch-1Drew DeVault-1/+1
Fix typo in debug log
2017-08-03Fix typo in debug logemersion-1/+1
2017-07-31Merge pull request #1294 from 4e554c4c/swaylock_sizeDrew DeVault-10/+28
Allow swaylock indicator size to be configurable
2017-07-31Allow swaylock indicator size to be configurableCalvin Lee-10/+28
2017-07-26Remove test clipboard codeDrew DeVault-8/+0
2017-07-24Merge pull request #1288 from johalun/master-securityconf-freebsdDrew DeVault-0/+7
security: enabled ipc on freebsd
2017-07-24security: enabled ipc on freebsdJohannes Lundberg-0/+7
2017-07-20Merge pull request #1285 from tobiasblass/fix_non_dbus_buildDrew DeVault-2/+2
[swaybar] fix non-dbus build
2017-07-20[swaybar] fix non-dbus buildTobias Blass-2/+2
Swaybar's CMakeLists.txt uses the enable-tray option directly to decide whether to build the tray. This leads to a compilation error if dbus is not installed. This patch uses the ENABLE_TRAY variable instead, which is only true if the user enabled the tray *and* dbus is available.
2017-07-16Merge pull request #1283 from 4e554c4c/memory_leakDrew DeVault-1/+9
Fix memory leaks in swaybar tray
2017-07-16Fix memory leaks in swaybar trayCalvin Lee-1/+9
2017-07-14Merge pull request #1279 from 4e554c4c/bad_itemsDrew DeVault-2/+12
Fix name validation in sni_watcher.c
2017-07-13Fix name validation in sni_watcher.cCalvin Lee-2/+12
This commit also fixes a memory leak that occurs on failure.
2017-07-13Merge pull request #1276 from 4e554c4c/bad_itemsDrew DeVault-5/+16
Don't trust SNI names, fixes #1274
2017-07-13Don't trust SNI names, fixes #1274Calvin Lee-5/+16
If an item doesn't have a well-formed name, it will not be added to the tray.
2017-07-12Merge pull request #1272 from ascent12/pointer-fixDrew DeVault-44/+42
Use WLC v2 pointer interface
2017-07-12Use WLC v2 pointer interfaceScott Anderson-44/+42
2017-07-11Add get_clipbard ipc errors; Adapt swaymsgnyorain-18/+47
Also increase the get_clipboard timeout to 30 secs
2017-07-11Close fd in clipboard requestnyorain-0/+3
2017-07-11Add timeout; Fix receive loop & style issuesnyorain-82/+114
2017-07-11Merge pull request #1271 from johalun/master-securityconf-freebsdDrew DeVault-0/+16
Add secucity config for FreeBSD.
2017-07-11Add secucity config for FreeBSD.Johannes Lundberg-0/+16
2017-07-10Merge pull request #1270 from tobiasblass/bindsym_use_after_freeDrew DeVault-2/+3
fix use-after-free bug
2017-07-10fix use-after-free bugTobias Blass-2/+3
2017-07-08Merge pull request #1265 from johalun/master-freebsdDrew DeVault-5/+5
Adjust _XOPEN_SOURCE value for build on FreeBSD and fix pointer compa…
2017-07-08Adjust _XOPEN_SOURCE value for build on FreeBSD and fix pointer comparison ↵Johannes Lundberg-5/+5
error.
2017-07-07Signal base64 in clipboard type; Reimplement loopnyorain-22/+32
2017-07-07Handle x11 text atoms in get_clipboard ipcnyorain-4/+10
2017-07-07Rework get_clipboard implementationnyorain-101/+453
2017-07-07Fix/Simplify get_clipboard ipc-server implnyorain-16/+18
2017-07-07Implement ipc get_clipboardnyorain-2/+134
2017-07-04Make asciidoc (and man pages) optionalDrew DeVault-37/+53
And remove it from the build
2017-07-03Merge pull request #1256 from lheckemann/doc-pngDrew DeVault-0/+8
Do not fail silently when background is not PNG
2017-07-03swaybg: check that background can be loadedLinus Heckemann-0/+8
2017-07-03Merge pull request #1259 from Hummer12007/patch-4Drew DeVault-0/+1
Disable -Wunused-result diagnostic
2017-07-03Disable -Wunused-result diagnosticHummer12007-0/+1
It caused unpredictable build failures with different build environments
2017-07-03Merge pull request #1258 from refacto/fix_zsh_completionDrew DeVault-1/+1
Fix zsh completion for _swaylock
2017-07-03Fix zsh completion for _swaylockazarus-1/+1
2017-07-01Merge pull request #1255 from Hummer12007/policyDrew DeVault-9/+9
Prevent null pointer dereferences with policy allocation failure
2017-07-01Do not add empty policiesMykyta Holubakha-6/+6
Policy allocation failure is non-fatal
2017-07-01permit.c: check for NULL pointer dereferenceMykyta Holubakha-3/+3
2017-07-01Merge pull request #1254 from nyorain/masterDrew DeVault-0/+40
Fix #926