summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2016-06-04update CHANGELOGMichael Stapelberg
2016-06-03clang-format-3.5Michael Stapelberg
Not sure why travis didn’t warn about this on the PR. The only reference to the PR I can find is https://travis-ci.org/i3/i3lock/builds/130470377
2016-06-03add CONTRIBUTING.mdMichael Stapelberg
…so that people know we don’t want to extend i3lock’s image handling. related to #81, #68, #31
2016-05-25Add support for `xss-lock --transfer-sleep-lock' (#75)Christoph Ruegge
Add support for `xss-lock --transfer-sleep-lock'
2016-05-25Flush xcb connection after opening fullscreen window (#74)martin
We need to ensure that the window handle is valid, i. e. the window is actually created and accessible, before returning. This is necessary because we immediately fork after returning, and the child process opens its own X11 connection and expects the window handle to be valid. Fixes #46
2016-04-30Allow CTRL+J as enter and CTRL+H as backspace (#72)Karl Tarbe
fixes #71
2015-12-25Show unlock indicator if password was entered during PAM verificationMichael Stapelberg
fixes #51
2015-12-25Eat XKB_KEY_Delete and XKB_KEY_KP_Delete (Thanks bebehei)Michael Stapelberg
fixes #50
2015-11-07Remove libxkbfile dependency from README.md/commentsMichael Stapelberg
It has not been in use since commit 7eb43aeabd7a5eb71927520c427debb45eab05f2
2015-11-07use trusty, install libxkbcommon-dev from wilyMichael Stapelberg
2015-11-06travis: install clang-format-3.5 from llvm repositoryMichael Stapelberg
Ubuntu utopic disappeared from archive.ubuntu.com, it’s EOL.
2015-11-05fix pam_securetty: set PAM_TTY to getenv("DISPLAY")Michael Stapelberg
fixes #43
2015-08-11Remove DPMS support in favor of a wrapper script and xset(1).Michael Stapelberg
fixes #32
2015-07-02Merge pull request #24 from ixjlyons/timeout-docMichael Stapelberg
Indicate that the --inactivity-timeout option takes an argument.
2015-07-02Indicate that the --inactivity-timeout option takes an argument.Kenneth Lyons
2015-05-20update CHANGELOGMichael Stapelberg
2015-05-20makefile: s/README/README.md/Michael Stapelberg
2015-04-27Merge pull request #14 from ony/masterMichael Stapelberg
Make pkg-config configurable
2015-04-27Make pkg-config configurableNikolay Orlyuk
2015-04-25Merge pull request #13 from Airblader/feature-12Michael Stapelberg
Only redraw the screen if the unlock indicator is actually used.
2015-04-24Only redraw the screen if the unlock indicator is actually used.Ingo Bürk
fixes #12
2015-04-21Merge pull request #11 from Deiz/update-noticesMichael Stapelberg
Update copyright notices and get rid of ranges
2015-04-21Update copyright notices and get rid of rangesDeiz
The script used to make these changes can be found at: https://gist.github.com/Deiz/32322020f76d23e2bf8f
2015-03-29Merge pull request #10 from Deiz/modifiersMichael Stapelberg
List generic pressed modifiers on failure
2015-03-29List generic pressed modifiers on failureDeiz
2015-03-28Add capslock and numlock indicatorsAlexandre Boeglin
When the unlock indicator warns the user that a password was typed wrong, it now also reports the state of the capslock and numlock modifiers. Signed-off-by: Alexandre Boeglin <alex@boeglin.org>
2015-03-27Merge pull request #9 from qfire/masterMichael Stapelberg
refresh pam credentials on successful authentication
2015-03-26refresh pam credentials on successful authenticationJames Cassidy
2015-03-17disable clang temporarilyMichael Stapelberg
2015-03-17commit missing .clang-formatMichael Stapelberg
2015-03-17add travis configMichael Stapelberg
2015-03-16clang-format -i **/*.[ch]Michael Stapelberg
From here on, we’ll use clang-format to automatically format the source. This has worked well in i3, so we are introducing it for i3lock.
2015-02-12Merge pull request #6 from danielotero/masterMichael Stapelberg
Add support for Compose and dead-keys with libxkbcommon
2015-02-12Update the key symbol if the composing ends.Daniel Otero
2015-02-12Avoid handle a keysym if the compose state gets cancelledDaniel Otero
This is the approach taken by libX11, and feels more consistent.
2015-02-12Remove xkb_context initialization code from load_compose_tableDaniel Otero
xkb_context is guaranteed to be initializated from load_keymap.
2015-02-12Add support for Compose and dead-keys with libxkbcommonDaniel Otero
2015-01-06Merge pull request #3 from stibi/whoamiMichael Stapelberg
getting current user with whoami like function rather than from env variable
2015-01-06getpwuid call movedMartin Stiborsky
2015-01-05null check for getpwuid and pw_nameMartin Stiborsky
2015-01-05removed the whoami function, replaced with an inline getpwuid callMartin Stiborsky
2015-01-05getting current user with whoami like function rather than from env variableMartin Stiborsky
2014-12-27Merge pull request #1 from koebi/masterMichael Stapelberg
added debug-flag to manpage
2014-12-27debugging outputs the password, so the manpage should mention thatkoebi
2014-12-27added debug-flag to manpagekoebi
2014-12-26README is actually in markdown, so tell github thatMichael Stapelberg
2014-12-26make github the canonical i3lock repositoryMichael Stapelberg
2014-10-13Ignore password validation is pam is in wrong stateNeodyblue
This add a protection against wrong password spamming
2014-08-24implemented logging the number of failed attemptskoebi
This closes #1243
2014-08-21Die when the X11 connection breaks during runtime (Thanks Eduan)Michael Stapelberg