Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2012-06-09 | LAYOUT: fixed layout bugs due to newer version of jquery | Arun Persaud | 2 | -8/+2 | |
2012-06-09 | updated jquery libraries to current version | Arun Persaud | 3 | -197/+19 | |
2012-06-09 | updated normalize.css to current version | Arun Persaud | 1 | -44/+117 | |
2012-05-12 | updated translation | Arun Persaud | 3 | -429/+499 | |
2012-05-12 | marked some more messages for translation | Arun Persaud | 1 | -10/+10 | |
2012-05-09 | BUGFIX: gametype was displayed in pre-phase of the game | Arun Persaud | 1 | -1/+1 | |
This could give away the type of sickness a player has | |||||
2012-05-08 | BUGFIX: move some text into the message box | Arun Persaud | 1 | -1/+1 | |
2012-05-08 | BUGFIX: removed side effect from getting the user's preferences: the ↵ | Arun Persaud | 7 | -9/+35 | |
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-05-08 | BUGFIX: a typo in the variable name card_status triggered some error messages. | Arun Persaud | 1 | -21/+8 | |
fixed the typo and cleaned up the code a bit with a better default for the variable | |||||
2012-05-08 | fixed typo in comment | Arun Persaud | 1 | -1/+1 | |
2012-05-08 | moved js files into their own directory | Arun Persaud | 5 | -4/+4 | |
2012-05-08 | auto-versioning for js and css files. Needs .htaccess to be installed | Arun Persaud | 4 | -8/+38 | |
The md5 of the file will be added to the filename of the .js or .css file. .htaccess will remove these again, but the browser will be able to cache correctly now. | |||||
2012-02-19 | BUGFIX: if you win a trick, you don't have to reload the page from now on. | Arun Persaud | 1 | -1/+3 | |
added a check if the player won the trick, if so, show radiobuttons next to cards to select new one. Also needed to unset firstcard when winning the trick, since without it follow suite was still working with regards to the first card in the last trick. | |||||
2012-02-18 | speed up get score table | Arun Persaud | 2 | -51/+44 | |
instead of looping over all games and have 3 database querries for each gameid, we now only do 5 querries: one for the gameids, scores and gametype and then one for each player to get his party | |||||
2012-02-10 | updated copyright notice for 2012 | Arun Persaud | 21 | -22/+22 | |
2012-02-10 | fixed margin collapse in .main (gray bar below header) | Arun Persaud | 2 | -2/+2 | |
the h4 element has a default top margin, but the .user and .main diff didn't have any. Because of collapsing margins they were also assigned the same margin which then created the gray bar. This doesn't happen if the parent element has non-zero padding, so I added a 1px top and bottom padding to .main, which fixed the problem | |||||
2012-02-04 | BUGFIX: fixed missing include in update_db.php | Arun Persaud | 1 | -0/+1 | |
2012-02-04 | fixed showing re/contra call at beginning of game; allowed pre-game ↵ | Arun Persaud | 5 | -67/+160 | |
comments; DB upgrade the problem with re/contra at the beginning of a game was that no playid was set yet, so we couldn't record when the call was made. Added two special playid (-1 and -2), for pre-game comments and re/contra calls before the first card is played. For this we need to record the gameid in the comment table => DB update | |||||
2012-01-31 | fixed link to gravatar home page | Arun Persaud | 1 | -1/+1 | |
an extra slash made the link relative, which of cource didn't work | |||||
2011-11-22 | LAYOUT: fixed position of .joingame (had left:0;) | Arun Persaud | 2 | -1/+2 | |
2011-11-19 | BUGFIX: typo in javascript | Arun Persaud | 1 | -2/+2 | |
2011-11-19 | LAYOUT: fixed user home page a bit | Arun Persaud | 1 | -5/+5 | |
2011-11-19 | LAYOUT: remove text "game" from "it's your turn" list | Arun Persaud | 1 | -1/+1 | |
2011-11-19 | BUGFIX: added special section for vorbehalte (needs to be in div ↵ | Arun Persaud | 1 | -24/+65 | |
class=middle in the new layout) | |||||
2011-11-19 | LAYOUT: fixed layout for new game page | Arun Persaud | 1 | -32/+64 | |
2011-11-19 | LAYOUT, BUGFIX: don't show current game in "it's your turn" list, also fix ↵ | Arun Persaud | 3 | -10/+19 | |
layout for this on newgame.php | |||||
2011-11-19 | LAYOUT: fixed some css issues in the new layout | Arun Persaud | 2 | -10/+10 | |
* totals were displayed too low * personal notes were too low * text for points for person on the bottom was on top of the div for the card instead of at the bottom | |||||
2011-11-16 | BUGFIX: make "It's your turn in ..." a comma separated list | Arun Persaud | 1 | -1/+5 | |
2011-11-16 | BUGFIX: fixed undefined variable when displaying tricks menu | Arun Persaud | 1 | -0/+1 | |
2011-11-15 | LAYOUT: use html5 buttons for prev/next for the tricks | Arun Persaud | 3 | -5/+5 | |
2011-11-15 | added viewport definition for mobile devices | Arun Persaud | 1 | -0/+1 | |
2011-11-15 | LAYOUT: redone layout of table and cards | Arun Persaud | 4 | -215/+280 | |
scales a lot better now and should be better for mobile devices | |||||
2011-11-14 | LAYOUT: moved game status to top; cleaned up some css | Arun Persaud | 4 | -67/+48 | |
2011-11-14 | CLEANUP: merged normal css file and the one for mobile phones into one file | Arun Persaud | 3 | -75/+79 | |
2011-11-13 | CLEANUP: moves javascript from header into game.js | Arun Persaud | 2 | -44/+41 | |
should make html output smaller, since game.js can be cached | |||||
2011-11-13 | CLEANUP: fixed html output a bit | Arun Persaud | 3 | -14/+12 | |
added whitespaces and line breaks | |||||
2011-11-13 | LAYOUT: moved output of all game message after the tricks and table | Arun Persaud | 4 | -45/+96 | |
this should make the html layout more consistent and easier to manage for different screen sizes, e.g. for mobile phones | |||||
2011-11-13 | LAYOUT: move display of cards below switch for mystatus | Arun Persaud | 2 | -152/+169 | |
This should make for a more consistent html layout and fix some issues that show up on different browsers and display sizes. | |||||
2011-11-13 | CLEANUP: added some comments, renamed some variables, moved a tiny bit of code | Arun Persaud | 1 | -96/+97 | |
2011-10-07 | fixed some html source code alignement and moved the games table, so it's ↵ | Arun Persaud | 3 | -19/+23 | |
flush left with the rest of the test | |||||
2011-10-07 | moved players positinon around the table a bit to center them better | Arun Persaud | 2 | -7/+7 | |
2011-10-07 | move #tricks to new line and center it | Arun Persaud | 2 | -6/+14 | |
2011-10-07 | updated copyright to 2011 | Arun Persaud | 1 | -1/+1 | |
2011-10-07 | moved last login status to bottome for narrow display | Arun Persaud | 2 | -3/+7 | |
2011-10-07 | fixed some css issues after changing to normalize.css | Arun Persaud | 2 | -5/+4 | |
2011-10-07 | update notes about emails | Arun Persaud | 1 | -2/+1 | |
2011-10-07 | replaced css reset with normalize.css | Arun Persaud | 3 | -22/+432 | |
2011-10-07 | fixed html and some alignement in login/register screen | Arun Persaud | 3 | -55/+38 | |
2011-10-06 | fix html and css for buttons | Arun Persaud | 2 | -46/+50 | |
2011-10-06 | make cards clickable as radiobuttons | Arun Persaud | 1 | -2/+2 | |