Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

New password hash #1

Merged
merged 16 commits into from
Nov 11, 2017
Merged

New password hash #1

merged 16 commits into from
Nov 11, 2017

Commits on May 20, 2017

  1. Configuration menu
    Copy the full SHA
    8b60914 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    0fcab15 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    c6be9da View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    813a710 View commit details
    Browse the repository at this point in the history

Commits on May 21, 2017

  1. Merge branch 'master' into composer

    * master:
      Remove hardcoded set date_default_timezone_set to Europe/Berlin
    andygrunwald committed May 21, 2017
    Configuration menu
    Copy the full SHA
    3461f92 View commit details
    Browse the repository at this point in the history

Commits on Jun 9, 2017

  1. Merge branch 'master' into composer

    * master:
      Raised docker-compose version to 3
      Set error_reporting to E_ALL ^ E_NOTICE ^ E_DEPRECATED ^ E_STRICT
      Readme: Set correct links to it
      Nginx: Deny all hidden files that starts with a '.'
      First docker environment is ready and runnable
      Remove the set of "error_reporting"
      Removed mysql_ functionality in favor of mysqli
      Fixed constructor names for PHP7 while calling installation
    andygrunwald committed Jun 9, 2017
    Configuration menu
    Copy the full SHA
    6792ecf View commit details
    Browse the repository at this point in the history

Commits on Jul 14, 2017

  1. Add initial Travis CI configuration

    Run PHP syntax and code style checks on Travis CI for PHP versions 5.6, 7.0, 7.1 and nightly.
    All checks are currently non-fatal and don't fail on errors.
    This should be changed when the codebase improves.
    lxp committed Jul 14, 2017
    Configuration menu
    Copy the full SHA
    2b9e74c View commit details
    Browse the repository at this point in the history
  2. Fix syntax error in modules/tournament2/team_details.php

    PHP Parse error:  syntax error, unexpected '?' in ./modules/tournament2/team_details.php on line 56
    lxp committed Jul 14, 2017
    Configuration menu
    Copy the full SHA
    dae62be View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    e59e42d View commit details
    Browse the repository at this point in the history
  4. Merge pull request lansuite#86 from lxp/add-travis-ci

    Add initial Travis CI configuration
    andygrunwald authored Jul 14, 2017
    Configuration menu
    Copy the full SHA
    b75594f View commit details
    Browse the repository at this point in the history
  5. Merge pull request lansuite#87 from lxp/fix-syntax-error

    Fix syntax error in modules/tournament2/team_details.php
    andygrunwald authored Jul 14, 2017
    Configuration menu
    Copy the full SHA
    207f642 View commit details
    Browse the repository at this point in the history
  6. Make PHP syntax check fatal

    lxp committed Jul 14, 2017
    Configuration menu
    Copy the full SHA
    683fabb View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    c0675cd View commit details
    Browse the repository at this point in the history
  8. Merge pull request lansuite#88 from lxp/make-syntax-check-fatal

    Make PHP syntax check fatal
    andygrunwald authored Jul 14, 2017
    Configuration menu
    Copy the full SHA
    499658f View commit details
    Browse the repository at this point in the history

Commits on Jul 16, 2017

  1. Merge pull request lansuite#81 from lansuite/composer

    Introduced composer and load Smarty from it
    M4LuZ authored Jul 16, 2017
    Configuration menu
    Copy the full SHA
    d1955a8 View commit details
    Browse the repository at this point in the history

Commits on Jul 17, 2017

  1. Implement new password hashing (PBKDF2-SHA1)

    This change modifies the database and requires a database upgrade
    from within the lansuite admin area.
    
    After the database upgrade, the old MD5 user passwords will be
    automatically converted to PBKDF2-SHA1 on the next user login.
    Clan and team passwords will only be upgraded, when new passwords
    are set.
    
    PBKDF2-SHA1 was choosen for compatibility with the ejabberd XMPP
    server password storage.
    lxp committed Jul 17, 2017
    Configuration menu
    Copy the full SHA
    05cdfc5 View commit details
    Browse the repository at this point in the history