From f49b720a63f08a6485282d8cb7500f4594b6209b Mon Sep 17 00:00:00 2001 From: Manuel Tinio Date: Tue, 10 Jan 2023 16:49:15 +0800 Subject: [PATCH] add satisfactory --- shard.yml | 2 +- src/fleet_app/game.cr | 2 ++ src/fleet_app_client.cr | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/shard.yml b/shard.yml index fd7c72f..1c762c9 100644 --- a/shard.yml +++ b/shard.yml @@ -1,5 +1,5 @@ name: fleet_app_client -version: 0.2.10 +version: 0.2.11 authors: - Pauline De Polonia diff --git a/src/fleet_app/game.cr b/src/fleet_app/game.cr index e6fe802..ccae642 100644 --- a/src/fleet_app/game.cr +++ b/src/fleet_app/game.cr @@ -10,6 +10,7 @@ module FleetApp UNTURNED = "unturned" ARK_SE = "ark_se" THE_FOREST = "the_forest" + SATISFACTORY = "satisfactory" # ARK_SE stands for Ark Survival Evolved LIST = [ @@ -23,6 +24,7 @@ module FleetApp UNTURNED, ARK_SE, THE_FOREST, + SATISFACTORY, ] end end diff --git a/src/fleet_app_client.cr b/src/fleet_app_client.cr index 9eff054..c3a4b16 100644 --- a/src/fleet_app_client.cr +++ b/src/fleet_app_client.cr @@ -2,7 +2,7 @@ require "json" require "http/client" class FleetAppClient - VERSION = "0.2.10" + VERSION = "0.2.11" HOST = "fleet.hostari.com" SANDBOX_HOST = "sandbox-#{HOST}" DEVELOPMENT_HOST = "localhost:2450"