summaryrefslogtreecommitdiffstats
path: root/include
AgeCommit message (Collapse)AuthorFilesLines
2010-04-26added an About pageArun Persaud2-3/+70
2010-04-26Added about pageArun Persaud1-1/+1
2010-04-26marked more strings for translationArun Persaud1-15/+16
2010-04-23 new user home page with a bit of jquery thrown inArun Persaud2-57/+156
by default only show the active games/sessions and hide all the other games
2010-04-22updated jquery to latest releaseArun Persaud1-15/+150
2010-04-19moved gameinfo box (calls, comment-input, submit, games player by otheres) ↵Arun Persaud2-34/+44
to the bottom of the page this should make it easier for people with a mobile phone.
2010-04-19updated link to wiki and bugzillaArun Persaud1-3/+2
links were hardcoded, changed to link from config file
2010-04-18fix bug introduces by marking strings for translationsArun Persaud1-8/+8
using these strings directly to set database entries... need to change this before they can be marked for translation.
2010-04-17marked more strings for translationArun Persaud1-8/+8
2010-04-17marked more strings for translationArun Persaud2-30/+30
2010-03-18marked more strings for translationArun Persaud2-113/+107
2010-03-17BUGFIX: fix "keep playing" button. forgot to add include new rule, so games ↵Arun Persaud1-3/+4
didn't get restarted
2010-03-14marked more strings for translationArun Persaud4-21/+21
2010-03-14added link to bug-tracker (that is renamed wiki -> wiki/bugs)Arun 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 Persaud3-2/+53
using gettext to add support for localization
2010-03-14CLEANUP: cleaned up code for KarlchenArun Persaud1-19/+22
2010-03-13BUGFIX: missing ul-tag in poverty check messed up layoutArun Persaud1-5/+5
also removed some div-tags that were not needed
2010-03-13NEW FEATURE: having only low trump (fox and below) can now be a VorbehaltArun Persaud5-52/+158
The low trump can either be treated as poverty or similar to 5 nines, that is the game is canceled unless someone plays a solo. Also minor code cleanup.
2010-03-13added check in DB_open for correct DB-versionArun Persaud1-2/+9
2010-03-04CLEANUP: moved more statistics into the sortable tableArun Persaud2-45/+56
2010-03-04BUGFIX: show "It's your turn in these games" menu also when you played the ↵Arun Persaud1-3/+13
last card in a game When showing the menu we test for the status the user had before he played the card. This fixes Issue #35.
2010-03-04changed message for new dealer into message for new startplayerArun Persaud1-1/+1
since there really is no dealer, this was more confusing than helpful.
2010-02-07updated copyright notice in footerArun Persaud1-1/+1
2010-02-07CLEANUP: removed ereg-functions (deprecated in newer php versions)Arun Persaud1-10/+10
used strpos and preg_replace instead
2010-02-06added copyright notice and GPL referenceArun Persaud15-0/+267
2010-02-04NEW FEATURE: provide an RSS feed for each user showing in which games it's ↵Arun Persaud3-33/+72
his turn the feed shows the same as the "It's your turn in these games" box.
2010-02-04BUGFIX: show correct name of all players, when looking at games of other playersArun Persaud1-1/+9
the name of the player who had the same cards wasn't displayed, instead "your cards where" was shown.
2010-02-04BUGFIX: timestamp was not always updated when user made a moveArun Persaud1-4/+10
this happend when the user wasn't logged in, but made a move by using an email link for example. Should be fixed now.
2010-02-02highlight the call if this is the last round where you can make this callArun Persaud3-39/+142
also added some more comments
2009-10-30NEW FEATURE: use gravatars as icons for playersArun Persaud5-6/+27
use icons at the table and on the user page (for last players logged in).
2009-09-28BUGFIX: double greeting line for reminder emailArun Persaud1-3/+2
forgot the remove the greeting from the message text.
2009-08-06BUGFIX: counted cancled games as active games in the statisticsArun Persaud1-1/+1
instead of testing if the game was in 'pre' or 'play' modus I just tested for <> 'gameover' which also included games which where canceled because of e.g. five nines.
2009-07-24CLEANUP: rewrote html output for the rules section for new gamesArun Persaud1-35/+36
made it a bit more compact and ready for more rules
2009-07-24BUGFIX: html output was messed up by some return statementsArun Persaud1-5/+6
instead of using return, we now use a break, this has the advantage that extra output (such as menus) will still be present and the html should be ok.
2009-07-21BUFIX: fixed a typoArun Persaud1-2/+2
2009-06-24display both foxes as playable, if the game doesn't allow schweinche, but ↵Arun Persaud1-6/+12
the rules do in case you play with a single schweinchen (only the second one becomes highest trump), but the game doesn't allow schweinchen (e.g. queen solo), both foxes should be selectable, but only one was. Fixes issue #53
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-24added more timezonesSean Brennan1-4/+29
fixes issue #23
2009-06-23added option for email digestArun Persaud3-46/+157
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-06-21some more commentsArun Persaud1-3/+9
looked into issue#51 (everything was correct) and added some comments.
2009-05-29BUGFIX: extra "the" in messageArun Persaud1-1/+1
2009-05-29BUGFIX: two greetings messages in cancelation email for five nines.Arun Persaud1-5/+4
removed the hard-coded one.
2009-05-11BUGFIX: one email message still had a hard-coded headerArun Persaud1-2/+1
this resulted in two "hello" lines being sent out. fixed
2009-05-11NEW FEATURE: show number of tricks a person madeArun Persaud3-0/+24
only shows 0,1,few or many tricks, so that we don't give too much information away. Might adjust or change this in the future. This addresses issues #11.
2009-05-11BUGFIX: wrongly displayed "trump back" in pre-trick during povertyArun Persaud1-9/+32
displayed it when the person with not enough trump gave trump to his partner, which is almost always the case.
2009-05-11BUGFIX: some email messages had newlines missing before the footerArun Persaud3-10/+10
all emails now have a "\n\n" at the end of the message.
2009-04-29CLEANUP: all email now uses the standard header and footerArun Persaud4-22/+30
some email functions didn't use myemail, but used sendmail directly. This is now fixed and all emails should have the same header and footer.
2009-04-25LAYOUT: pumped css version to include openid supportArun Persaud1-1/+1