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.

162 lines
6.6 KiB

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