summaryrefslogtreecommitdiffstats
path: root/include/preferences.php
AgeCommit message (Collapse)AuthorFilesLines
2016-07-10update copyright yearArun Persaud1-1/+1
2014-01-05updated copyright to 2014Arun Persaud1-1/+1
2013-03-31added a new set of LGPL licensed cardsArun Persaud1-1/+10
2013-02-25mysql optimization: don't quote integers as strings in WHEREArun Persaud1-33/+33
2013-01-16remove Altenburger Spielkarten, their copyright notice, etc. since the ↵Arun Persaud1-10/+1
licence expired They changed their company police and won't give out a free licence agreement anymore, so might as well remove it completely.
2013-01-12TRANSLATION: updated some stringsArun Persaud1-1/+1
2013-01-12updated copyright for 2013Arun Persaud1-1/+1
2012-12-31improved language detection using browser information; set the language ↵Arun Persaud1-0/+1
directly in more places previously one had to reload to get the language correct, now it should be correct right away. We also read out the browser request for a language now.
2012-09-22updated to better password hash: use crypt instead of md5Arun Persaud1-4/+15
the upgrade will be done automatically when a user logs in, password recovery is still based on md5, but that should be OK, since it's a random generated password anyway
2012-06-09LAYOUT: fixed layout bugs due to newer version of jqueryArun Persaud1-8/+1
2012-05-12marked some more messages for translationArun Persaud1-10/+10
2012-05-08BUGFIX: removed side effect from getting the user's preferences: the ↵Arun Persaud1-0/+2
language used could be overwritten by another user's choise the DB_get_Prefs($myid) functions used to set the _SESSION variable for the language, but was also called with ids that belonged to other players overwriting the language settings with that from another user
2012-02-10updated copyright notice for 2012Arun Persaud1-1/+1
2012-01-31fixed link to gravatar home pageArun Persaud1-1/+1
an extra slash made the link relative, which of cource didn't work
2010-11-21added date picker for vacationsArun Persaud1-4/+19
use html5 with jquery as a fallback
2010-09-21TRANSLATION: some more strings and updated po.deArun Persaud1-30/+30
2010-03-14marked more strings for translationArun Persaud1-1/+1
2010-03-14marked more strings for translationArun Persaud1-30/+30
2010-03-14CLEANUP: fixed a typo and added "changed" indicator to language settingsArun Persaud1-1/+2
2010-03-14NEW FEATURE: added localization supportArun Persaud1-1/+23
using gettext to add support for localization
2010-02-06added copyright notice and GPL referenceArun Persaud1-0/+19
2009-10-30NEW FEATURE: use gravatars as icons for playersArun Persaud1-0/+1
use icons at the table and on the user page (for last players logged in).
2009-06-24make a few more check before a password get's changedArun Persaud1-1/+1
don't do anything, if password0 and password1 are the same
2009-06-23added option for email digestArun Persaud1-5/+65
you can now select to get emails only every N hours. They are saved in the database and a cron script will send them out.
2009-04-25NEW FEATURE: added OpenID supportArun Persaud1-0/+48
Users can add and delete OpenIDs on the settings page and then log in user those OpenIds. They can also use their OpenIDs to register.
2009-02-23BUGFIX: vacation was set even when no date was enteredArun Persaud1-1/+3
the vacation is set to the empty string in case nothing is entered, need to check for this.
2009-01-30NEW FEATURE: vacation supportArun Persaud1-2/+95
users can specify a vacation start and end date and a message. Once they are on vacation their name will be shown in a different color at the table and on the user page (in case it is their turn).
2009-01-30CLEANUP: clean up the preferences html output a bitArun Persaud1-82/+95
should be better aligned html now
2009-01-15BUGFIX: forgot to initialize two variables in preferences.phpArun Persaud1-5/+7
2009-01-15NEW FEATURE: new user settings allows people to not be available for new gamesArun Persaud1-0/+34
Players who set their preference on this setting to 'no' are not considered as players in a new game.
2008-12-02NEW FEATURE: new sorting algorithmArun Persaud1-0/+34
you can now sort your hand "low to high" and change your default using the setting dialog
2008-11-01CLEANUP: cleaned up CSS a bitArun Persaud1-1/+1
the bug where you couldn't click on the prev/next button shouldn't show up that often now, since that area is now a bit bigger, but the bug is still there... Signed-off-by: Arun Persaud <arun@nubati.net>
2008-10-20BUGFIX: make user menu and personal notes appear againArun Persaud1-1/+1
had them only shown when player was logged in, but there is really no reason to not show them to players who are not logged in in an ongoing game (only the correct player should get to a page with an ongoing game) Signed-off-by: Arun Persaud <arun@nubati.net>
2008-09-11BUGFIX: new password needs to be at least 4 characters longArun Persaud1-1/+8
added a check for the length of the new password, so that empty passwords are not allowed. Signed-off-by: Arun Persaud <arun@nubati.net>
2008-06-16NEW FEATURE: login buttonArun Persaud1-5/+1
added a login button to the top right, in case you were not logged in. output_status can now be called in only one place, ie index.php and all pages will get the menu... Signed-off-by: Arun Persaud <arun@nubati.net>
2008-05-24NEW FEATURE: automatically accept new gamesArun Persaud1-9/+45
user can set this in the preferences now and won't be asked during a game setup Signed-off-by: Arun Persaud <arun@nubati.net>
2008-05-15BUGFIX: wrong messages for email notification in preferencesArun Persaud1-4/+4
emailaddict said "lots of emails" but should say "less emails" Signed-off-by: Arun Persaud <arun@nubati.net>
2008-05-10NEW FEATURE: new settings page, user can now change timezoneArun Persaud1-0/+177
rewrote the settings page, timezone can now be changed, the user menu shows up on the left on the pref page. Added a link to the pref-page in the left menu. Signed-off-by: Arun Persaud <arun@nubati.net>