Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
Tarmslitaren committed Aug 28, 2024
1 parent f41d3d2 commit d7b54c8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion frosthaven_assistant/lib/Layout/menus/main_menu.dart
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ Drawer createMainMenu(BuildContext context) {
image: DecorationImage(
fit: BoxFit.fitWidth, image: AssetImage("assets/images/icon.png"))),
child: Stack(
children: [Positioned(right: 6, bottom: 0, child: Text("Version 1.9.1"))],
children: [Positioned(right: 6, bottom: 0, child: Text("Version 1.10.0"))],
),
),
ListTile(
Expand Down
5 changes: 4 additions & 1 deletion frosthaven_assistant_server/lib/game_server.dart
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ class StateUpdateMessage {

abstract class GameServer {

final int serverVersion = 191;
final int serverVersion = 1100;

ServerSocket? _serverSocket;
ServerSocket? get serverSocket {
Expand Down Expand Up @@ -219,13 +219,16 @@ abstract class GameServer {
log('Server Receive undo command');
undoState();
}

void handleRedoMessage(){
log('Server Receive redo command');
redoState();
}

void handlePongMessage(Socket client){
log('pong from ${safeGetClientAddress(client)}');
}

void handlePingMessage(Socket client) {
log('ping from ${safeGetClientAddress(client)}');
sendToOnly("pong", client);
Expand Down

0 comments on commit d7b54c8

Please sign in to comment.