Releases: project-fika/Fika-Server
Releases · project-fika/Fika-Server
Fika Server 2.3.3
Fika Server 2.3.2
What's Changed
Make sure to properly update if you have installed a previous version of Fika server, your client will be broken on an improper update
Full Changelog: v2.3.1...v2.3.2
Fika Server 2.3.1
What's Changed
- Directly reference equipment ID when viewing another player's profile by @sgtlaggy in #92
- Updated to apply new SPT typing by @ArchangelWTF in #94
New Contributors
Full Changelog: v2.3.0...v2.3.1
Fika Server 2.3.0
Changelog
- Added support for FikaServerTools (NAT punching tools) on Linux
- Insurance will now track properly between the players in a raid, this means players won't get insured items back that other players picked up
- Sent
Items
are now stored for 7 days instead of 2 - Dev profile and Non-standard profiles will now handle having their settings changed back and forth a lot better
- Player friend relations are now automatically removed if a player's profile no longer exists
- Fixed an issue that allowed players to send friend requests to bots
- Major feature: Added our custom notification manager, this will allow for the sending of various notifications including push notifications (The example for that can be found below!)
- Added support for the
Fika Presence
online player list (There's an example below for how to query it's data outside of the game!) - Fixed a bug that stopped custom chat bots from being added
Examples
Sending a push notification:
PowerShell:
Invoke-WebRequest -Headers @{"requestcompressed"="0"} -Method "POST" http://your.server.ip.addr:6969/fika/notification/push -Body '{"notification": "Hello from the Fika notification manager!", "notificationIcon": 0}'
CURL:
curl -X POST -H "requestcompressed: 0" -H "Content-Type: application/json" -d "{\"notification\": \"Hello from the Fika notification manager!\", \"notificationIcon\": 0}" http://your.server.ip.addr:6969/fika/notification/push
Note: The icon can be anything from 0 to 14, the definitions for them can be found here
Querying data from the online player list:
PowerShell:
Invoke-WebRequest -Headers @{"responsecompressed"="0"} -Method "GET" http://your.server.ip.addr:6969/fika/presence/get
CURL:
curl -X GET -H "responsecompressed: 0" http://your.server.ip.addr:6969/fika/presence/get
Note: The JSON data received from the request can be found here
Fika Server 2.2.8
What's Changed
- Use enum instead of a string for dedicated status by @trippyone in #71
- Handle reconnecting on server by @Lacyway in #72
- Bump version by @ArchangelWTF in #73
- Add
allowSpectateFreeCam
config option by @zhliau in #74
New Contributors
Full Changelog: v2.2.7...v2.2.8
Fika Server 2.2.7
- Added support for new loot retrieval
Fika Server 2.2.6
- Added new BG image
- Fixed random
nullref
errors
Fika Server 2.2.5
- Fixed botgen issues with other mods
- Improved the generated launch script for dedicated servers
Fika Server 2.2.4
Fixes and dedicated client support
Fika Server 2.2.3
- Fixed a bug where
SPT
andCommando
commands did not work