summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2008-01-03BUGIFX: output was displayed twiceArun Persaud2-6/+4
the login information was displayed twice, also formatted the output a bit nicer in html
2008-01-03BUGIFX: added Lance to copyright and changed to 2008Arun Persaud1-1/+1
small changes in the footer
2008-01-03BUGFIX: fixed some typosArun Persaud1-16/+16
just typos nothing more...
2007-12-19BUGFIX: fixed some CSS issues for IEArun Persaud1-2/+3
never tried out IE before ;) fixed some small things, so that it looks a bit nicer on IE
2007-12-17BUGFIX: use of local web links now possibleArun Persaud7-45/+51
before I used a lot of http:// requests although the files were in the same domain, now local links with absolute paths are used.
2007-12-17BUGFIX: local time should now work correctlyArun Persaud3-5/+9
had to reset the timezone to the local time. added a config parameter to store the local timezone.
2007-12-16LAYOUT: last login and logout text where displayed incorrectly sometimesArun Persaud4-28/+38
in a previous commit I moved those tings to the output_header function. Turns out you can't do that, so here is the fix.
2007-12-16BUGFIX: added indecis to tables for faster lookupArun Persaud1-11/+17
this should make the database part a bit faster. not quit sure if this is the correct way of doing it though :)
2007-12-16BUGFIX: time display used wrong timezones. also optimized things a bitArun Persaud6-64/+35
Got rid of a few db-queries for getting the right timezone. The timezone was also set after the timefunction was called and therefore the timezone didn't have any effect.
2007-12-14BUGFIX: wrong SQL query for min and max time of gamesArun Persaud1-4/+7
the wrong time was shown for the minimum game
2007-12-14LAYOUT: made login/logout message in stats.php look nicerArun Persaud1-2/+4
title says it all ;)
2007-12-14NEW FEATURE: display longest session, display shortest games in hoursArun Persaud1-4/+15
also name players a bit more often.
2007-12-14BUGIFX: sort game list by session in user menuArun Persaud1-1/+2
if it is your turn those games are shown in the user menu, but where not sorted by sessions. fixed now
2007-12-07NEW FEATURE: list game points in last emailArun Persaud1-0/+24
add a few lines to show the total amount of game points for this game in the email that gets send out
2007-12-07BUGFIX: the number of extra points per Game where not calculated on a per ↵Arun Persaud1-14/+14
Game base, but all Games where added up fixed now
2007-12-07LAYOUT: fixed some typos, changed CSS a bitArun Persaud4-91/+111
the linebreak for displaying the tricks should be gone now. Fixed also quite a few other small things at the same time.
2007-12-02NEW FEATURE: make stastitic page accessableArun Persaud1-0/+1
created a link from the user menu to the stats.php page
2007-12-02NEW FEATURE: detailed few of the score of one gameArun Persaud2-13/+45
display each of the points re and contra made during the game. At the moment only the names from the database are used.
2007-12-02BUGFIX: finished scoring algorithmArun Persaud2-68/+114
now all games are scored. Rules can be looked up in the wiki.
2007-11-27BUGIX: games in a session were not ordered by date, but by idArun Persaud1-1/+2
when a game gets cancled new games use that game_id in the DB which can mess up the ordering of sessions. fixed now.
2007-11-08NEW FEATURE: addicted people can turn of a lot of the email spam and just ↵Arun Persaud3-16/+85
check online all emails saying: it's your turn can be turned off now by a user preference
2007-11-08NEW FEATURE: statistics page, version1Arun Persaud2-4/+243
added a few statistics to an extra page, still not completely done, but already working
2007-11-02BUGFIX: added a config.php template to the repository and updated the ↵Arun Persaud2-10/+47
INSTALL files
2007-11-02NEW FEATURE: count game points, partly done ;)Arun Persaud5-332/+633
a table will be shown now for score keeping. fox, karlchen and dokos are accounted for normal win, calling something and winning should be accounted for still missing: both parties call or one party calls and doesn't acchieve it's goal
2007-10-31CLEANUP: some small code cleanupArun Persaud3-7/+18
moved some css from inline to the style sheet, some linebreaks, etc.
2007-10-31BUGFIX: player could select several vorbehalte at the same timeArun Persaud1-69/+85
no the prog checks and sends the player back to the questionary, before it wasn't clear to the user which vorbehalt would be used (e.g. wedding or poverty)
2007-10-31BUGFIX: no check for a followup game if someone else already started oneArun Persaud2-0/+29
several people could start a followup game (or one person hitting reload) and several games were started. Now the prog checks if there is already an active game.
2007-10-31LAYOUT: moved more text during the setup into the middleArun Persaud2-20/+27
there was still a lot of text that wasn't aligned yet. Still not perfect, but much better than before ;)
2007-10-29BUGFIX: when playing with both schweinchenArun Persaud1-3/+3
they second fox always became the highest trump, even if the two foxes where not on the same hand. Also: every fox led to a comment:"schweinchen". Both fixed now.
2007-10-21LAYOUT: improved the layout of the cards a bitArun Persaud1-89/+71
centered now in x, but not in y, therefore scaling doesn't work nicely yet
2007-10-09CLEANUP: make html output a bit nicerArun3-45/+45
added some newlines and spaces
2007-10-09LAYOUT: 1st round of changes to get rid of overlapping areasArun3-99/+109
centered table, moved menus to correct place (this also fixed a bug that still showed that it was your turn in a game after you moved) and some other small changes.
2007-10-08NEW FEATURE: send out reminder emailArun3-5/+106
if a player hasn't moved for a week a reminder email can be send out. only one per day is possible, tracking in the db
2007-08-05BUGFIX: output call only after game started; move after game comments to ↵Arun Persaud1-15/+9
right menu the re/contra, etc. box showed up after a user finished the setup, changed it so that it now only shows up after the game has started. The input form for comments after a game has finished was still in the card area, moved it to the right game menu.
2007-08-04LAYOUT: new user pageArun Persaud3-62/+59
mixed finished games, started games and games in progress into one table
2007-08-04LAYOUT: fixed some overlaying of boxes (but not all), made userpage a bit nicerArun Persaud4-51/+57
a bit more html on the user page and the session are displayed differently now. Also fixed a few small html errors, moved the link for new games into the menu and probably some small things I don't remember right now ;)
2007-07-29BUGFIX: order games by sessionArun Persaud2-7/+13
games are now ordered by sessions, also fixed a typo
2007-07-29BUGIFX+LAYOUT: gameids where still in the player menu; show table for new ↵Arun Persaud4-6/+22
game setup fixed last commit. for new games, the table is now shown and one can select the place people are sitting better.
2007-07-29LAYOUT: address game by session.gamenrArun Persaud2-24/+40
don't use gameid, but use session.gamenumber instead. needs this for tournaments later. new games will get a session number now by default.
2007-07-29LAYOUT: final score is displayed on the table; played card is displayed in trickArun Persaud3-91/+118
added another trick as trick13 that displays the final score. Also moved the played card to show up as a normal card and not in the middle of the table anymore.
2007-07-28LAYOUT: started work on new layoutArun Persaud4-252/+302
table is also shown during setup of the game user menu on the left, game menu on the right user menu shows games in which you have to move
2007-07-28BUGFIX: use email reply address for sendingArun Persaud1-1/+4
the ini_set method didn't seem to work for some reason. Setting the From in the header does work though
2007-07-28CLEANUP: moved registration to seperate php fileArun Persaud3-70/+99
started cleanup on index.php. trying to move as much out of index.php as possible to make it easier to read.
2007-07-28CLEANUP: working on database now a config.php optionArun Persaud3-54/+77
moved error checking into a function and made working on the database a config.php option
2007-07-28BUGFIX: change link from svn to gitArun Persaud1-2/+2
updated footer to point to the new git repository
2007-07-20BUGFIX: reusing old randomnumbers didn't workArun Persaud1-5/+8
old numbers got reused, but more than once for the same people should be fixed now.
2007-07-18BUGFIX: using the recovery password to change your passwordArun Persaud2-1/+18
to change your password you needed your old password, the recovery password didn't work, which made it hard to change it, in case you forgot your old password... fixed
2007-07-18NEW FEATURE+BUGFIX: changed calling re/contraArun Persaud4-22/+108
you can call re/contra, etc. now even if it is not your turn. Also fixed rule where you can say 90 with 9 cards, etc. so that you need to say 120 to say 90, 90 to say 60, etc.
2007-07-18NEW FEATURE: use php sessionArun Persaud5-41/+75
used php session, so that people can actually log in and out and linking from one page to another can be done easily without using form to send the password as a hidden parameter over the net all the time
2007-07-18NEW FEATURE: use a better random generatorArun Persaud1-1/+8
people complained about too many solos ;) so I changed from the standard php random generator to a better one. Not sure if that solves the problem though ;)