Merge branch 'task/prepare-next' into develop

This commit is contained in:
Jeroen De Meerleer 2019-09-28 00:54:38 +02:00
commit 2a0e93f91f
Signed by: JeroenED
GPG Key ID: 28CCCB8F62BFADD6
2 changed files with 6 additions and 6 deletions

View File

@ -1,5 +1,7 @@
# CHANGELOG # CHANGELOG
## vx.y.z (Release: aa-bbb-cccc)
## v1.2 (Release: 28-sep-2019) ## v1.2 (Release: 28-sep-2019)
* NEW READER: `Reader::swar-4` for reading out files created with Swar version 4. * NEW READER: `Reader::swar-4` for reading out files created with Swar version 4.
* NEW FEATURE: `Tournament::getArbiters()` for multiple arbiters in 1 tournament * NEW FEATURE: `Tournament::getArbiters()` for multiple arbiters in 1 tournament

10
dist/template.php vendored
View File

@ -4,9 +4,9 @@
<head> <head>
<meta charset="utf-8"> <meta charset="utf-8">
<title>The HTML5 Herald</title> <title>My tournament</title>
<meta name="description" content="Libpairtwo"> <meta name="description" content="Libpairtwo">
<meta name="author" content="The clubclub"> <meta name="author" content="The chessclub">
<link rel="stylesheet" href="css/styles.css"> <link rel="stylesheet" href="css/styles.css">
@ -19,11 +19,9 @@ use JeroenED\Libpairtwo\IOFactory;
require_once 'vendor/autoload.php'; require_once 'vendor/autoload.php';
// EDIT ME! // EDIT ME!
$pairingfile = 'your pairing-file.sws'; $pairingfile = 'your pairing-file.swar';
$fileformat = 'Pairtwo-6'; // Possible values: Pairtwo-5, Pairtwo-6, Swar-4 $fileformat = 'Swar-4'; // Possible values: Pairtwo-5, Pairtwo-6, Swar-4
if (!file_exists($pairingfile)) { if (!file_exists($pairingfile)) {
trigger_error('Your file is not set or doesn\'t exist! Edit the file: ' . __FILE__ . ' and try again', E_USER_ERROR); trigger_error('Your file is not set or doesn\'t exist! Edit the file: ' . __FILE__ . ' and try again', E_USER_ERROR);