You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

152 lines
6.1 KiB

10 years ago
  1. 2017-06-21 i3lock 2.9.1
  2. • Fix version number mechanism (for --version)
  3. • Revert the fix for composited notifications, as it causes more issues than
  4. it solves:
  5. https://github.com/i3/i3lock/issues/130
  6. https://github.com/i3/i3lock/issues/128
  7. 2017-05-26 i3lock 2.9
  8. • i3lock.1: use signal names without SIG prefix
  9. • Removed obsolete inactivity timeout
  10. • Added version files for release tarball.
  11. • Set font face
  12. • Automatically unlock (without having to press <Enter>) one attempt which was
  13. entered while authenticating
  14. • Stop leaking the image_path dup
  15. • Displaying locking message when grabbing the pointer/keyboard
  16. • Display error message when locking failed
  17. • Add Enter on C-m
  18. • Change input slices to be exactly pi/3 in size instead of slightly more
  19. • Fix covering of composited notifications using the XComposite extension
  20. • Remove last traces of DPMS
  21. • Use bsd_auth(3) instead of PAM on OpenBSD
  22. • Restore intended behaviour and don't use mlock(2) on OpenBSD.
  23. 2016-06-04 i3lock 2.8
  24. • Remove DPMS support in favor of a wrapper script and xset(1).
  25. • Indicate that the --inactivity-timeout option takes an argument. (Thanks
  26. Kenneth Lyons)
  27. • fix pam_securetty: set PAM_TTY to getenv("DISPLAY")
  28. • Eat XKB_KEY_Delete and XKB_KEY_KP_Delete (Thanks bebehei)
  29. • Show unlock indicator if password was entered during PAM verification
  30. • Allow CTRL+J as enter and CTRL+H as backspace (Thanks Karl Tarbe)
  31. • Flush xcb connection after opening fullscreen window (Thanks martin)
  32. • Add support for `xss-lock --transfer-sleep-lock'
  33. 2015-05-20 i3lock 2.7
  34. • Die when the X11 connection breaks during runtime (Thanks Eduan)
  35. • Implement logging the number of failed attempts (Thanks koebi)
  36. • Ignore password validation is pam is in wrong state (Thanks Neodyblue)
  37. • Get current user with getpwuid() instead of using $ENV{USER} (Thanks Martin)
  38. • Add support for Compose and dead-keys with libxkbcommon.
  39. Requires libxkbcommon ≥ 0.5.0 (Thanks Daniel)
  40. • Format the source using clang-format.
  41. • Refresh pam credentials on successful authentication (for Kerberos and the
  42. like) (Thanks James)
  43. • List pressed modifiers on failed authentication (Thanks Deiz, Alexandre)
  44. • Only redraw the screen if the unlock indicator is actually used
  45. (Thanks Ingo)
  46. • Make pkg-config configurable for cross-compilation (Thanks Nikolay)
  47. 2014-07-18 i3lock 2.6
  48. • NEW DEPENDENCY: use libxkbcommon-x11 instead of libX11
  49. This helps us get rid of all code that directly uses libX11
  50. • Use cairo_status_to_string for descriptive errors.
  51. • Add `-e` option to not validate empty password.
  52. • Bugfix: update the initial keyboard modifier state (Thanks lee, Ran)
  53. • Re-raise i3lock when obscured in a separate process
  54. • Turn on the screen on successful authentication
  55. • Delay to turn off the screen after wrong passwd
  56. • Discard half-entered passwd after some inactivity
  57. • Ignore empty passwd after repeated Enter keypress
  58. • Scale the unlock indicator (for retina displays)
  59. 2013-06-09 i3lock 2.5
  60. • NEW DEPENDENCY: Use libxkbcommon for input handling
  61. This makes input handling much better for many edge cases.
  62. • Bugfix: fix argument parsing on ARM (s/char/int/)
  63. • Bugfix: free(reply) to avoid memory leak
  64. • Bugfix: Use ev_loop_fork after fork, fixes forking on kqueue based OSes
  65. • Bugfix: Fix centering the indicator in the no-xinerama case
  66. • Only use mlock() on Linux, FreeBSD (for example) requires root
  67. • promote the "could not load image" message from debug to normal
  68. • s/pam_message/pam_response/ (Thanks Tucos)
  69. • remove support for NOLIBCAIRO, cairo-xcb is widespread by now
  70. • Allow XKB_KEY_XF86ScreenSaver as synonym for enter
  71. This keysym is generated on convertible tablets by pressing a hardware
  72. lock/unlock button.
  73. • Allow passwordless PAM conversations (e.g. fingerprint)
  74. • Add ctrl+u password reset
  75. • Set window name to i3lock
  76. 2012-06-02 i3lock 2.4.1
  77. • Bugfix: Correctly center unlock indicator after reconfiguring screens
  78. (Thanks xeen)
  79. • Bugfix: Revert shift lock handling (broke uppercase letters)
  80. • Bugfix: Skip shift when getting the modifier mask (Thanks SardemFF7)
  81. 2012-04-01 i3lock 2.4
  82. • Bugfix: Fix background color when using cairo (Thanks Pascal)
  83. • Only output text when in debug mode (fixes problems with xautolock)
  84. • fallback when the image cannot be loaded
  85. • Use (void) instead of () for functions without args (Thanks fernandotcl)
  86. 2012-03-15 i3lock 2.3.1
  87. • Fix compilation on some systems
  88. 2012-03-15 i3lock 2.3
  89. • Implement a visual unlock indicator
  90. • Support ISO_Level5_Shift and Caps Lock
  91. • Lock the password buffer in memory, clear it in RAM after verifying
  92. • Fork after the window is visible, not before
  93. • Bugfix: Copy the color depth from parent (root) window instead of
  94. hardcoding a depth of 24
  95. 2011-11-06 i3lock 2.2
  96. • Don’t re-grab pointer/keyboard on MappingNotify. In some rare situations,
  97. this lead to some keypresses "slipping through" to the last focused window.
  98. • Correctly handle Mode_switch/ISO_Level3_Shift
  99. • Render to a pixmap which is used as background for the window instead of
  100. copying contents on every expose event
  101. • Handle screen resolution changes while screen is locked
  102. • Manpage: document arguments for every option
  103. 2011-05-13 i3lock 2.1
  104. • Accept return/backspace when the buffer of 512 bytes is full
  105. • Handle numpad keys correctly
  106. • Handle MappingNotify events
  107. • Correctly check for errors when connecting to X11
  108. • Add i3lock.pam to not rely on debian’s /etc/pam.d/other anymore
  109. • don’t display debug output
  110. • add NOLIBCAIRO flag to permit compilation without cairo
  111. 2010-09-05 i3lock 2.0
  112. • Complete rewrite of i3lock. Now using xcb instead of Xlib.
  113. • When a window obscures i3lock, it pushes itself back to the top again.
  114. • Display version when starting with -v
  115. 2009-08-02 i3lock 1.1
  116. • Implement background pictures (-i) and colors (-c)
  117. 2009-05-10 i3lock 1.0
  118. • Implement PAM support
  119. • Implement options for forking, beeping, DPMS
  120. 2009-05-01 i3lock 0.9
  121. • First release, forked from slock 0.9