- Added methods for validating direct connection, Port Number Complete, Host Name not Complete.

- Added No Servers found Message
- Found a potential bug with windows machines not running the correct service to handle Bonjour Service Addresses.

tags: #story[1245]
This commit is contained in:
alistairjmcintyre
2017-09-10 18:24:15 +12:00
parent 717f7558d9
commit f077486e22
3 changed files with 97 additions and 23 deletions
@@ -50,9 +50,8 @@ public class BoatCustomizeController implements Initializable{
@FXML
public void submitCustomization() {
socketThread.sendCustomizationRequest(CustomizeRequestType.NAME, boatName.getText().getBytes());
// TODO: 16/08/17 ajm412: Turn colors into byte array.
Color color = colorPicker.getValue();
Color color = colorPicker.getValue();
short red = (short) (color.getRed() * 255);
short green = (short) (color.getGreen() * 255);
short blue = (short) (color.getBlue() * 255);