summaryrefslogtreecommitdiff
path: root/backend/src
Commit message (Collapse)AuthorAge
* Kotlin mig: game definitionsJoffrey Bion2018-07-06
|
* Kotlin mig: api packageJoffrey BION2018-07-06
|
* Fix test ApiLobbyJoffrey Bion2018-06-11
|
* Improve lobby's styleJoffrey BION2018-06-10
|
* Migrate to Spring Boot Starter SecurityJoffrey BION2018-04-28
| | | | So far, we had a direct dependency on Spring Security Core, but it is cleaner to import it "à la" Spring Boot, so that we benefit from autoconfiguration, and the version is handled by Spring Boot.
* Migrate to Spring Boot 2.0.1 (using Spring 5)Joffrey BION2018-04-28
|
* Use independent WS clients for each test to prevent race conditions on CIJoffrey Bion2018-04-26
|
* Extract game engine as separate artifactJoffrey BION2018-04-23
|
* Upgrade to Livedoc 4.3.2 and gradle 4.6Joffrey Bion2018-04-18
|
* Move to shared checkstyle config 2.1.0Joffrey BION2017-09-29
|
* Upgrade to Livedoc 2.0.0Joffrey Bion2017-09-25
|
* Upgrade to Livedoc 1.0.2Joffrey Bion2017-09-24
|
* Upgrade to Livedoc 0.4.0 and fix propertiesJoffrey BION2017-09-24
|
* Move from JsonDoc to LivedocJoffrey BION2017-08-15
| | | | | The Livedoc project, based on JsonDoc, implements the overrides that we used to make in this project for websocket compatibility.
* Improve error messagesJoffrey BION2017-07-10
|
* Finish removing unnecessary Principal commentsJoffrey BION2017-07-09
|
* Remove comments that are now unnecessaryJoffrey BION2017-07-08
| | | | | We now use a TestPrincipal class instead of a lambda in order to be clear enough to be self-explanatory.
* Extract Jackstomp as dependencyJoffrey BION2017-05-28
|
* Remove ForbiddenSubscriptionExceptionjbion2017-05-27
| | | | | | The exception was not processed by the ExceptionHandler anyway, so nothing was sent to the user. We need to find a way to send an error to the user. In the meantime, an error log will suffice.
* Improve forbidden subscription exception messagejbion2017-05-27
|
* Backport javadocjbion2017-05-27
|
* Improve integration testsjbion2017-05-25
|
* Add deserializable API objects for Java SevenWonders clientjbion2017-05-25
|
* Add missing serialized fieldsjbion2017-05-25
|
* Improve log messagesjbion2017-05-25
|
* Add SevenWondersClient for ease of use in testsjbion2017-05-25
|
* Re-order params and rename to Jackstompjbion2017-05-25
|
* Rework integration tests with new client and APIjbion2017-05-25
|
* Create TestPrincipal for Controller unit testsjbion2017-05-25
|
* Add a java API for SevenWonders using the simple JSON/STOMP clientjbion2017-05-25
| | | | This API is intended to be used for integration tests, but could later be extracted and used for AI actions or machine learning.
* Add a simple JSON+STOMP client (to be extracted as lib)jbion2017-05-25
|
* Remove old experimental pageJoffrey BION2017-05-22
|
* Fix code styleJoffrey BION2017-05-21
|
* Add first integration testJoffrey BION2017-05-21
|
* Add LobbyController testsJoffrey BION2017-05-20
|
* Add checks on last played moves in GameTestJoffrey BION2017-05-20
|
* Add "sayReady" for players to call to receive their handJoffrey BION2017-05-20
|
* Add tests for board score computationJoffrey BION2017-05-17
|
* Add test for Requirements coverageJoffrey BION2017-05-16
|
* Improve assertions in HomeControllerTestJoffrey BION2017-05-16
|
* Add GameBrowserController testJoffrey BION2017-05-16
|
* Add HomeController testJoffrey BION2017-05-16
|
* Add tests for special abilities in BoardJoffrey BION2017-05-15
|
* Remove useless 'throws Exception' declarations in testsJoffrey BION2017-05-15
|
* Add tests for requirement and payment of bought resourcesJoffrey BION2017-05-15
|
* Add tests for lobby and game fields in PlayerJoffrey BION2017-05-15
|
* Add test for Lobby owner indexJoffrey BION2017-05-15
|
* Add test for Lobby.removePlayer()Joffrey BION2017-05-15
|
* Add 'leave lobby' action (backend only)Joffrey BION2017-05-15
|
* Add lobby sagaJoffrey BION2017-05-14
| | | | | | | | | - Fix lobby's player list updates - Fix lobby's player list order - Add 'start game' button (not restricted to owner yet) Resolves: https://github.com/luxons/seven-wonders/issues/7
bgstack15