diff --git a/api-webapp/src/test/resources/weights.txt b/api-webapp/src/test/resources/weights.txt index 6898e52..e51822a 100644 --- a/api-webapp/src/test/resources/weights.txt +++ b/api-webapp/src/test/resources/weights.txt @@ -1,4 +1,4 @@ -Round 2 +Round 1 Costs Player1Name=Baratou Paul Player2Name=Batailler Philippe diff --git a/server.sh b/server.sh index 6b763ce..c80e88b 100755 --- a/server.sh +++ b/server.sh @@ -1,4 +1,4 @@ #!/bin/bash export MAVEN_OPTS="-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=*:5005" -mvn --projects api-webapp package jetty:run +mvn -DskipTests --projects api-webapp package jetty:run diff --git a/standalone.sh b/standalone.sh index bd21b39..0fd09f5 100755 --- a/standalone.sh +++ b/standalone.sh @@ -3,4 +3,4 @@ # debug version # mvn package && java -agentlib:jdwp=transport=dt_socket,server=y,suspend=y,address=*:5006 -jar application/target/pairgoth-engine.jar -mvn package && java -jar application/target/pairgoth-engine.jar +mvn -DskipTests package && java -jar application/target/pairgoth-engine.jar diff --git a/view-webapp/src/main/sass/main.scss b/view-webapp/src/main/sass/main.scss index abb1eef..e291058 100644 --- a/view-webapp/src/main/sass/main.scss +++ b/view-webapp/src/main/sass/main.scss @@ -1,7 +1,8 @@ +@import "/fonts/hornbill.css"; @import "/lib/fomantic-ui-2.9.2/semantic.min.css" layer(semantic); @layer pairgoth { - + /* general styles */ body { font-size: clamp(14px, 1rem + 1vw, 24px); @@ -24,6 +25,20 @@ } } + .logo { + font-family: Hornbill, serif; + font-weight: bolder; + font-style: normal; + } + + .centered { + text-align: center; + } + + .nobreak { + white-space: nowrap; + } + /* header, center, footer */ #header { diff --git a/view-webapp/src/main/webapp/WEB-INF/layouts/standard.html b/view-webapp/src/main/webapp/WEB-INF/layouts/standard.html index f099390..b3a3f23 100644 --- a/view-webapp/src/main/webapp/WEB-INF/layouts/standard.html +++ b/view-webapp/src/main/webapp/WEB-INF/layouts/standard.html @@ -13,7 +13,7 @@
At its core, pairgoth is a versatile Go tournament pairing engine designed to make your tournament experience effortless. pairgoth is the successor of opengotha, the well known pairing system software developed by Luc Vannier and uses the same algorithm internally, as well as import and export features towards its format.
+pairgoth version 1.0-BETA supports the Swiss pairing system, ideal for championships with no handicap games, as well as the MacMahon pairing system, more suited for classical tournaments and cups.
+Future versions will support more pairing systems and more features. Your feedback is welcome!
+We offer you the flexibility to use pairgoth in a way that best suits your needs. Here are your options:
+Stay in the browser: If you prefer convenience, you can simply use the pairgoth instance graciously hosted by the French Go Federation.
++ Launch pairgoth ++
Launch a standalone instance: This mode allows you to run pairgoth on your local computer.
+That's the best option if you feel more comfortable when running locally or whenever you want to be able to do the pairing without internet. You can choose to use either the standard interface (which is meant to look a lot like opengotha) and the web interface (by launching the engine and connecting to it using a browser).
++ Download pairgoth standalone ++
Launch a pairing server: This mode is the best suited for big Go events like congresses, it allows to register players, enter results and manage pairing from several workstations at once.
++ Download pairgoth client/server ++
Compile from the sources: the pairgoth project is fully open source, and under the very permissive apache licence, allowing you to tweak it in any possible way. Be sure to contribute back your enhancements!
++ Browse pairgoth sources ++