Skip to content

Enable password remembering in user login

Administrator requested to merge keep_password into master

There is a "Remember username and password" option in the code, which can be enabled by defining SAVE_PASSWORD, but it can not co-exist with "Remember username" together.

This MR does followings:

  1. A new remember_password option is implemented to only save the password remembering status (just as the remember option which save the status of username remembering).
  2. Password is recorded in the 'password' option in config.xml
  3. Remove SAVE_PASSWORD condition (which is unused) in original code
  4. Re-design the checkbox for username and password remembering in the login window.

(Since the checkbox texts are changed, the .po files will be updated in separate merge request in future.)

This modification has been tested on a master build.

Merge request reports