Index: trunk/extensions/Contest/README |
— | — | @@ -15,6 +15,7 @@ |
16 | 16 | * Summary pages per contest listing contestants, which can be filtered and sorted. |
17 | 17 | * Judging interface that allows for rating and commenting on each participant. |
18 | 18 | * All contests, challenges, contestants, comments and votes can be queried and exported via the API. |
| 19 | +* Signup and reminder emails. |
19 | 20 | |
20 | 21 | == Credits to other projects == |
21 | 22 | |
Index: trunk/extensions/Contest/Contest.php |
— | — | @@ -28,7 +28,7 @@ |
29 | 29 | die( '<b>Error:</b> Contest requires MediaWiki 1.18 or above.' ); |
30 | 30 | } |
31 | 31 | |
32 | | -define( 'CONTEST_VERSION', '0.1alpha' ); |
| 32 | +define( 'CONTEST_VERSION', '0.1' ); |
33 | 33 | |
34 | 34 | $wgExtensionCredits['other'][] = array( |
35 | 35 | 'path' => __FILE__, |
Index: trunk/extensions/Contest/INSTALL |
— | — | @@ -58,7 +58,12 @@ |
59 | 59 | |- |
60 | 60 | | submissionDomains |
61 | 61 | | array of string |
62 | | -| array( 'github.com', 'gitorious.org' ) |
| 62 | +| array( 'mediawiki.org', 'github.com', 'gitorious.org' ) |
63 | 63 | | Domains on which submissions can be placed |
| 64 | +|- |
| 65 | +| reminderJobSize |
| 66 | +| integer |
| 67 | +| 50 |
| 68 | +| Max size of the reminder email jobs (in emails to send) |
64 | 69 | |} |
65 | 70 | |
Index: trunk/extensions/Contest/RELEASE-NOTES |
— | — | @@ -14,4 +14,5 @@ |
15 | 15 | * Personal contest list and submission interface for each user. |
16 | 16 | * Summary pages per contest listing contestants, which can be filtered and sorted. |
17 | 17 | * Judging interface that allows for rating and commenting on each participant. |
18 | | -* All contests, challenges, contestants, comments and votes can be queried and exported via the API. |
\ No newline at end of file |
| 18 | +* All contests, challenges, contestants, comments and votes can be queried and exported via the API. |
| 19 | +* Signup and reminder emails. |
\ No newline at end of file |