aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorLines
2017-12-29Allow paths to icons in iconName propertygnidorah-1/+35
2017-12-29Allow registering StatusNotifierItems by obj pathCalvin Lee-31/+316
This commit impliments a KDE hidden feature where a SNI could be registered by object path instead of well-known name. This should allow libappindicator programs to work correctly under sway. See #1372
2017-12-29Merge pull request #1544 from ↵Drew DeVault-2/+4
CedricCabessa/fix1056-swaylock-allow-popup-to-come-through partial fix #1056
2017-12-29partial fix #1056Cédric Cabessa-2/+4
this patch allow the user to type its password when a modal window is shown while the desktop is locked by swaylock. It is a partial fix of the bug since the window should be visible (see bug https://github.com/swaywm/sway/issues/1056 for details).
2017-12-17Adaptions for API change in json-c v0.130.15.1Björn Esser-26/+41
Lift restriction on json-c <= 0.12.1 ipc-server: Acquire ownership of referenced json_object properly When adding a referenced json_object with an unknown lifetime to another json_object, it must be done with a wrapped call to json_object_get() to acquire the ownership of that json_object.
2017-12-17Revert "Merge remote-tracking branch 'besser82/bugfix/json-c' into 0.15"Drew DeVault-48/+17
This reverts commit 1c4a086e7556475139960a25cb642f115d057c23, reversing changes made to 1263ea6497c732bfa1835eea4a8ffe2e6ea6e377.
2017-12-17Merge remote-tracking branch 'besser82/bugfix/json-c' into 0.15Drew DeVault-17/+48
2017-12-16Merge pull request #1519 from ggreer/clear-password-buffer-0.15Drew DeVault-30/+25
Swaylock: Clear password buffer after use.
2017-12-14Swaylock: Clear password buffer after use.Geoff Greer-30/+25
After a user enters or clears a password, try to overwrite the buffer containing it. That way it's not sitting around in RAM for something else to read later. Also, mlock() the password buffer so that it is never swapped out. This also replaces the dynamically allocated buffer with a static char[1024]. Any characters past that are discarded until the user hits enter or escape.
2017-12-14Merge pull request #1515 from 4e554c4c/holds_up_forkDrew DeVault-25/+29
Fix `swaylock -f`
2017-12-14Adaptions for API change in json-c v0.13Björn Esser-15/+29
2017-12-14ipc-server: Acquire ownership of referenced json_object properlyBjörn Esser-1/+2
When adding a referenced json_object with an unknown lifetime to another json_object, it must be done with a wrapped call to json_object_get() to acquire the ownership of that json_object.
2017-12-14Lift restriction on json-c <= 0.12.1Björn Esser-10/+10
2017-12-13Fix `swaylock -f`Calvin Lee-25/+29
This commit makes swaylock poll the registry the first time in its fork in order for sway to recognize it and grant it lock privileges
2017-11-06Merge pull request #1446 from kon14/patch-10.15.0Drew DeVault-1/+1
Update README.el.md
2017-11-06Merge pull request #1445 from yuilib/update-readme-jaDrew DeVault-30/+24
Update README.ja.md
2017-11-06Merge pull request #1455 from etam/dbus_dependencyDrew DeVault-1/+4
Update dbus dependency
2017-11-06Merge pull request #1443 from gferon/gferon-readme-editDrew DeVault-8/+8
Update README.md
2017-11-06Merge pull request #1454 from etam/fix_init_trayDrew DeVault-1/+1
Fix init_tray function declaration
2017-11-05Merge pull request #1455 from etam/dbus_dependencyDrew DeVault-1/+4
Update dbus dependency
2017-11-05Add dbus info to readmeAdam Mizerski-0/+3
2017-11-05Merge pull request #1454 from etam/fix_init_trayDrew DeVault-1/+1
Fix init_tray function declaration
2017-11-05Dbus must be at least version 1.10Adam Mizerski-1/+1
Function dbus_message_iter_get_element_count is available since 1.10.
2017-11-05Fix init_tray function declarationAdam Mizerski-1/+1
This fixes compilation failure: error: call to function 'init_tray' without a real prototype
2017-11-02Merge pull request #1443 from gferon/gferon-readme-editDrew DeVault-8/+8
Update README.md
2017-11-02Update README.mdGabriel Féron-8/+8
2017-11-01Merge pull request #1446 from kon14/patch-1Drew DeVault-1/+1
Update README.el.md
2017-11-01Merge pull request #1445 from yuilib/update-readme-jaDrew DeVault-30/+24
Update README.ja.md
2017-11-01Update README.el.mdKonstantinos Feretos-1/+1
2017-11-01Update README.ja.mdyuilib-30/+24
2017-10-30Merge pull request #1441 from ptMuta/master0.15-rc4Drew DeVault-1/+1
Removed trailing comma from swaybar click event json
2017-10-30Merge pull request #1438 from mariusor/explicit_json-c_versionDrew DeVault-12/+24
Explicitly setting the version of json-c required
2017-10-30Merge pull request #1430 from dlrobertson/nvidia_drmDrew DeVault-0/+24
nvidia: Validate the nvidia_drm module options
2017-10-30Merge pull request #1427 from ranisalt/patch-1Drew DeVault-6/+2
Use add_compile_options instead of interpolation
2017-10-28Merge pull request #1441 from ptMuta/masterDrew DeVault-1/+1
Removed trailing comma from swaybar click event json
2017-10-28Removed trailing comma from swaybar click event jsonJoona Romppanen-1/+1
2017-10-27Merge pull request #1436 from dlrobertson/add_asan_buildDrew DeVault-1/+17
Add Address Sanitized build type
2017-10-27Merge pull request #1438 from mariusor/explicit_json-c_versionDrew DeVault-12/+24
Explicitly setting the version of json-c required
2017-10-27Explicitly setting the version of json-c requiredMarius Orcsik-12/+24
to 0.12.1. This is needed because the development version breaks the existing API of json_object_array_length() by moving the return from int to size_t. This would fix #1355
2017-10-27Add Address Sanitized build typeDan Robertson-1/+17
- Add -DCMAKE_BUILD_TYPE=ASAN to possible builds
2017-10-24Merge pull request #1430 from dlrobertson/nvidia_drmDrew DeVault-0/+24
nvidia: Validate the nvidia_drm module options
2017-10-24nvidia: Validate the nvidia_drm module optionsDan Robertson-0/+24
When the proprietary nvidia driver is used, ensure the modeset option is set instead of checking /proc/cmdline for nvidia-drm.modeset=1.
2017-10-23Merge pull request #1427 from ranisalt/patch-1Drew DeVault-6/+2
Use add_compile_options instead of interpolation
2017-10-24Use add_compile_options instead of interpolationRanieri Althoff-6/+2
Uses CMake's `add_compile_options` directive instead of interpolating `CMAKE_C_FLAGS` for adding compilation flags.
2017-10-23Merge pull request #1425 from ggreer/grab-error0.15-rc3Drew DeVault-1/+11
swaygrab: Add some error handling.
2017-10-23Merge pull request #1424 from ggreer/swaygrab-jsonDrew DeVault-1/+10
swaygrab: Prevent segfault if IPC response can't be parsed.
2017-10-23Merge pull request #1419 from 4e554c4c/better_logsDrew DeVault-5/+18
Print log level even if STDERR is not a tty
2017-10-23Merge pull request #1412 from Hummer12007/rcfixDrew DeVault-6/+7
handlers: preserve parent pointer value
2017-10-23Remove broken link to Spanish translationDrew DeVault-1/+1
Fixes #1417
2017-10-23Add feature freeze notice to readmeDrew DeVault-0/+7