CHANGELOG.txt 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. 7.x-1.5, 2015-05-01
  2. -------------------
  3. - Added CHANGELOG.txt.
  4. - Various one-time-login and validation links don't work with Drupal 6.35 and Drupal 7.35.
  5. - Trimming email input of any stray space characters.
  6. - Merge branch '7.x-1.x' of git.drupal.org:project/logintoboggan into 7.x-1.x.
  7. - Issue #1257572 by md2: reinstates page title on unified login page.
  8. - Improve message consistency.
  9. - Prevent an existing user's email address being used as name by another user.
  10. - Apply patch 1363244-1 to install file.
  11. - Reapply patch after creating new 7.x-1.x dev version.
  12. - Missing parameter in moved_deltas.
  13. 7.x-1.4, 2014-07-04
  14. -------------------
  15. - Unified login form not santitizing url.
  16. - Change hook that removes authorized role from users with temporary role so that it happens in all page loads.
  17. 7.x-1.3, 2011-11-09
  18. -------------------
  19. - Add logintoboggan_variable module to contrib.
  20. - Update custom js for permissions to keep up with core.
  21. - Setting for optional unsetting of sidebars on access denied pages.
  22. - Removing incorrectly committed file.
  23. - Merge branch 'master' of git.drupal.org:project/logintoboggan.
  24. - Content Access compatibility contrib module README file, bump core version in .info file.
  25. - Deleting the accidently added patch file.
  26. - The LoginToboggan rule module now lists its event in User eventgroup. patch provided by mikewink.
  27. - Document non-authenticated role disables auto-permission from authenticated user.
  28. - Fix errors in t() implementation.
  29. - Content Access compatibility contrib module. implements a hook which specifies to Content Access that the Non-authenticated role, if defined, requires special treatment. i did not test the module at all, the contrib folder is the wild west, so hopefully it works. ;).
  30. - Show unified login on Access Denied. this also abstracts the creation of the unified login form into its own function, and adds a helper function to determine which login form to build based on the LT settings.
  31. - Use format_username() in theme_lt_login_link() function.
  32. - Typo in administration page. Mimimum should be minimum.
  33. - Use single spacing between sentences.
  34. 7.x-1.2, 2011-03-04
  35. -------------------
  36. - For #753224 by scor: LoginToboggan Rules now compatible with Drupal7/Rules-7.x.
  37. - Other modules cannot react upon email validation.
  38. - Allow One Time Login To Be Used Only Once.
  39. - Removing translation directories.
  40. - Stripping CVS keywords.
  41. - Disable core 'Require e-mail verification when a visitor creates an account' setting.
  42. 7.x-1.1, 2011-01-20
  43. -------------------
  44. - Hook_init too late to remove auth user role.
  45. 7.x-1.0, 2011-01-06
  46. -------------------
  47. - Update logintoboggan_rules to 7.x.
  48. - Option for unified login/register page.
  49. - Use user_save instead of update hook in _logintoboggan_process_validation.
  50. - Update registration function with new workflow from core. clean up password description, max length no longer supported. update module help for 7.x.
  51. - Get rid of unnecessary batching function in cron.
  52. - Clean up upgrade file for 7.x.
  53. - Move admin and validation functions to .inc files. various fixes in preparation for 7.x release.
  54. - Move protocol function back to main module file.
  55. - Break out admin pages and validation functions into .inc file.
  56. - Update the permissions js file in line with core updates.
  57. - Update install and readme for 7.x.
  58. - Update .info file for 7.x.
  59. - Add ID tags to css files.
  60. - Bad array syntax in logintoboggan_form_user_admin_permissions_alter.
  61. - Updating js/css handling for 7.x.
  62. - Remove unnecessary check for 'account' form element.
  63. - Ereg deprecated in PHP 5.3, remove from password checking function.
  64. - Enabling of Module Generates Warning from Token Module. move token hooks into separate .inc file.
  65. - Remove 30 char limit for password.
  66. - Email validation sent out even if new account was created by administrator.
  67. 7.x-1.0-alpha3, 2010-07-25
  68. --------------------------
  69. - User_register value default has changed, contants for its values. thanks to rfay for the tipoff.
  70. - Remove dead code for predicting if account form was wrapped in a fieldset or not.
  71. - Logintoboggan_main_settings has extraneous form_state arg.
  72. - Remove dead menu caching code.
  73. - Minor update to README.txt of logintoboggan_rules module.
  74. - Fix strict warning.
  75. - Disabling Display of Login Block creates PHP Notices, block settings missing.
  76. - Hide the auth user checkbox on the user edit screen if the user is in the pre-auth role -- reduces UI confusion.
  77. - Non-authenticated role is hidden in user profile form even when 'Set password' is unchecked.
  78. - Redirect on invalid email validation.
  79. - Adding LoginToboggan/Rules integration module.
  80. - Update link to admin'ing roles.
  81. - Use 'Sentence case' for settings page.
  82. - Leverage newly added user_delete_multiple function to purge unvalidated users.
  83. - Remove hard-coded numeric deltas from blocks, per core change.
  84. - Switch to using user_pass_rehash\(\) for validation hashs.
  85. - User interface changes per #546356.
  86. - Cleanup menu paths and arguments.
  87. - Rollback of #48438 due to core's change in #437930.
  88. - Better check for no password.
  89. - Use $_GLOBALS['user'] where appropriate.
  90. - Use #theme element for logged in block.
  91. - Remove unnecessary code causing fatal error.
  92. 7.x-1.0-alpha2, 2009-10-25
  93. --------------------------
  94. - Arguments -> variables per change to hook_theme.
  95. 7.x-1.0-alpha1, 2009-10-21
  96. --------------------------
  97. - Doxygen cleanups. user_delete -> user_cancel. use batchAPI for deleting unvalidated users.
  98. - Value -> markup. refactor check for a manual removal of the pre-auth role by the admin -- use a hidden form field instead. fix logic for password description. add a missing user message for registration when the pre-auth role is the auth user. fix broken query placeholders. remove unnecessary query that erroneously updated a user's login time when an admin validated their account. fix broken call to drupal_goto. fix up redirect array. use core's user mail functionality for resending validation emails. fix broken mail_alter implementation for admin validation emails.
  99. - Refactor mailing code to use user module's functions, tokens, and hook_mail_alter. make sure anonymous user can't access revalidation link menu callback. remove unneeded security check from registration function.
  100. - Use REQUEST_TIME, as per 7.x upgrade conventions.
  101. - Login successful message now contains username. logged in block now uses theme_username on username. update theme functions to work for 7.x. clean up and refactor the access denied/login form functionality. use a custom user admin permission js file when the pre-auth role is not the auth user -- allows pre-auth role to have lower permissions than auth role.
  102. - Much cleaner implementation of the site 403 variable reset logic.
  103. - Fix login link and collapsible login block for 7.x.
  104. - Update admin paths and help for 7.x.
  105. - More general main settings submit function. refactor site 403 handling to work.
  106. - New admin path for module settings. fix 'Set password' option to work with system_settings_form.
  107. - Ensure arrays before array operations.