Browse Source

updated CHANGES.md

v3-dev
REJack 7 years ago
parent
commit
db60f63539
  1. 256
      CHANGES.md

256
CHANGES.md

@ -1,125 +1,179 @@
# CHANGES # NAME CHANGES
## LIBRARY ## LIBRARY
### ADDED ### ADDED
- $session - $session
### RENAMED ### RENAMED
- $config_vars => $config - $config_vars => $config
- flash_errors => $flashErrors - $flash_errors => $flashErrors
- flash_infos => $flashInfos - $flash_infos => $flashInfos
- create_user => createUser - $cache_perm_id => $cachePermIds
- update_user => updateUser - $cache_group_id => $cacheGroupIds
- delete_user => deleteUser - create_user => createUser
- list_users => listUsers - update_user => updateUser
- keep_errors => keepErrors - delete_user => deleteUser
- get_errors_array => getErrorsArray - list_users => listUsers
- print_errors => printErrors - get_user => getUser
- clear_errors => clearErrors - send_verification => sendVerification
- keep_infos => keepInfos - login_fast => loginFast
- get_infos_array => getInfosArray - is_loggedin => isLoggedIn
- print_infos => printInfos - keep_errors => keepErrors
- clear_infos => clearInfos - get_errors_array => getErrorsArray
- print_errors => printErrors
- clear_errors => clearErrors
- keep_infos => keepInfos
- get_infos_array => getInfosArray
- print_infos => printInfos
- clear_infos => clearInfos
### REMOVED ### REMOVED
- $CI - $CI
- $aauth_db - $aauth_db
- get_login_attempts (replaced with LoginAttemptModel) - get_login_attempts (replaced with LoginAttemptModel)
- update_login_attempts (replaced with LoginAttemptModel) - update_login_attempts (replaced with LoginAttemptModel)
## CONFIG ## CONFIG
### RENAMED ### RENAMED
- no_permission => linkNoPermission - no_permission => linkNoPermission
- reset_password_link => linkResetPassword - reset_password_link => linkResetPassword
- verification_link => linkVerification - verification_link => linkVerification
- totp_two_step_login_redirect => linkTotp - totp_two_step_login_redirect => linkTotp
- verification => userVerification - verification => userVerification
- additional_valid_chars => userAdditionalChars - additional_valid_chars => userAdditionalChars
- min => passwordMin - min => passwordMin
- max => passwordMax - max => passwordMax
- password_hash_algo => passwordHashAlgo - password_hash_algo => passwordHashAlgo
- password_hash_options => passwordHashOptions - password_hash_options => passwordHashOptions
- login_with_name => loginUseUsername - login_with_name => loginUseUsername
- remember => loginRemember - remember => loginRemember
- ddos_protection => loginProtection - ddos_protection => loginProtection
- max_login_attempt => loginAttemptLimit - max_login_attempt => loginAttemptLimit
- max_login_attempt_time_period => loginAttemptLimitTimePeriod - max_login_attempt_time_period => loginAttemptLimitTimePeriod
- remove_successful_attempts => loginAttemptRemoveSuccessful - remove_successful_attempts => loginAttemptRemoveSuccessful
- totp_active => totpEnabled - totp_active => totpEnabled
- totp_only_on_ip_change => totpOnIpChange - totp_only_on_ip_change => totpOnIpChange
- totp_reset_over_reset_password => totpResetPassword - totp_reset_over_reset_password => totpResetPassword
- totp_two_step_login => totpLoginDisabled - totp_two_step_login => totpLoginDisabled
- recaptcha_active => recaptchaEnabled - recaptcha_active => recaptchaEnabled
- recaptcha_login_attempts => recaptchaLoginAttempts - recaptcha_login_attempts => recaptchaLoginAttempts
- recaptcha_siteKey => recaptchaSiteKey - recaptcha_siteKey => recaptchaSiteKey
- recaptcha_secret => recaptchaSecret - recaptcha_secret => recaptchaSecret
- email => emailFrom - email => emailFrom
- name => emailFromName - name => emailFromName
- email_config => emailConfig - email_config => emailConfig
- admin_group => adminGroup - admin_group => adminGroup
- default_group => defaultGroup - default_group => defaultGroup
- public_group => publicGroup - public_group => publicGroup
- db_profile => dbProfile - db_profile => dbProfile
- users => dbTableUsers - users => dbTableUsers
- user_variables => dbTableUserVariables - user_variables => dbTableUserVariables
- login_attempts => dbTableLoginAttempts - login_attempts => dbTableLoginAttempts
- groups => dbTableGroups - groups => dbTableGroups
- user_to_group => dbTableGroupToUser - user_to_group => dbTableGroupToUser
- group_to_group => dbTableGroupToGroup - group_to_group => dbTableGroupToGroup
- perms => dbTablePerms - perms => dbTablePerms
- perm_to_user => dbTablePermToUser - perm_to_user => dbTablePermToUser
- perm_to_group => dbTablePermToGroup - perm_to_group => dbTablePermToGroup
### REMOVED ### REMOVED
- hash - hash
- use_password_hash - use_password_hash
- pm_encryption - pm_encryption
- pm_cleanup_max_age - pm_cleanup_max_age
## DATABASE
### USERS
- renamed `pass` to `password`
- renamed `ip_address` to `last_ip_address`
- renamed `date_created` to `created_at`
- added `updated_at` 'DATETIME'
- added `deleted` 'TINYINT(1)'
- removed `forgot_exp`
- removed `remember_time`
- removed `remember_exp`
- removed `verification_code`
- removed `totp_secret`
### USER VARIABLES
- renamed `value` to `data_value`
- added `created_at` 'DATETIME'
- added `updated_at` 'DATETIME'
- added `system` 'TINYINT(1)'
### LOGIN ATTEMPTS
- added `id` 'INT(11)' PKey A_I
- added `ip_address` 'VARCHAR(39)'
- added `count` 'TINYINT(2)'
- added `created_at` 'DATETIME'
- added `updated_at` 'DATETIME'
### LOGIN TOKEN
- added `id` 'INT(11)' PKey A_I
- added `user_id` 'INT(11)'
- added `random_hash` 'VARCHAR(255)'
- added `selector_hash` 'VARCHAR(255)'
- added `created_at` 'DATETIME'
- added `updated_at` 'DATETIME'
- added `expires_at` 'DATETIME'
### GROUPS
- added `created_at` 'DATETIME'
- added `updated_at` 'DATETIME'
### PERMS
- added `created_at` 'DATETIME'
- added `updated_at` 'DATETIME'
### PMS
- completly removed
## LANGUAGE ## LANGUAGE
### ADDED ### ADDED
- invalidUserBanned - invalidUserBanned
- requiredGroupName
- requiredPermName
### CHANGED ### CHANGED
- aauth_email_verification_subject => subjectVerification - aauth_email_verification_subject => subjectVerification
- aauth_email_reset_subject => subjectReset - aauth_email_reset_subject => subjectReset
- aauth_email_reset_success_subject => subjectResetSuccess - aauth_email_reset_success_subject => subjectResetSuccess
- aauth_email_verification_text => textVerification - aauth_email_verification_text => textVerification
- aauth_email_reset_text => textReset - aauth_email_reset_text => textReset
- aauth_email_reset_success_new_password => textResetSuccess - aauth_email_reset_success_new_password => textResetSuccess
- aauth_error_no_access => notVerified - aauth_error_no_access => notVerified
- aauth_error_account_not_verified => notVerified - aauth_error_account_not_verified => notVerified
- aauth_error_login_failed_email => loginFailedEmail - aauth_error_login_failed_email => loginFailedEmail
- aauth_error_login_failed_name => loginFailedName - aauth_error_login_failed_name => loginFailedName
- aauth_error_login_failed_all => loginFailedAll - aauth_error_login_failed_all => loginFailedAll
- aauth_error_login_attempts_exceeded => loginAttemptsExceeded - aauth_error_login_attempts_exceeded => loginAttemptsExceeded
- aauth_error_email_invalid => invalidEmail - aauth_error_email_invalid => invalidEmail
- aauth_error_password_invalid => invalidPassword - aauth_error_password_invalid => invalidPassword
- aauth_error_username_invalid => invalidUsername - aauth_error_username_invalid => invalidUsername
- aauth_error_totp_code_invalid => invalidTOTPCode - aauth_error_totp_code_invalid => invalidTOTPCode
- aauth_error_recaptcha_not_correct => invalidRecaptcha - aauth_error_recaptcha_not_correct => invalidRecaptcha
- aauth_error_vercode_invalid => invalidVercode - aauth_error_vercode_invalid => invalidVercode
- aauth_error_update_email_exists => existsAlreadyEmail - aauth_error_update_email_exists => existsAlreadyEmail
- aauth_error_update_username_exists => existsAlreadyUsername - aauth_error_update_username_exists => existsAlreadyUsername
- aauth_info_group_exists => existsAlreadyGroup - aauth_info_group_exists => existsAlreadyGroup
- aauth_info_perm_exists => existsAlreadyPerm - aauth_info_perm_exists => existsAlreadyPerm
- aauth_error_username_required => requiredUsername - aauth_error_username_required => requiredUsername
- aauth_error_totp_code_required => requiredTOTPCode - aauth_error_totp_code_required => requiredTOTPCode
- aauth_error_no_user => notFoundUser - aauth_error_no_user => notFoundUser
- aauth_error_no_group => notFoundGroup - aauth_error_no_group => notFoundGroup
- aauth_error_no_subgroup => notFoundSubgroup - aauth_error_no_subgroup => notFoundSubgroup
- aauth_info_already_member => alreadyMemberGroup - aauth_info_already_member => alreadyMemberGroup
- aauth_info_already_subgroup => alreadyMemberSubgroup - aauth_info_already_subgroup => alreadyMemberSubgroup
### REMOVED ### REMOVED
- aauth_error_self_pm - aauth_error_self_pm
- aauth_error_no_pm - aauth_error_no_pm
- aauth_email_verification_code (merged with textVerification) - aauth_email_verification_code (merged with textVerification)
- aauth_error_email_exists - aauth_error_email_exists
- aauth_error_username_exists - aauth_error_username_exists

Loading…
Cancel
Save