All notable changes to this project will be documented in this file.
ATTN: This project uses semantic versioning.
v0.12.0 - 2024-06-03
- Fixed empty objName value in map_alternative log record. When player picked up IsoThumpable, placed and destroyed it LogExtender added line with empty objName value.
- Fixed bug when vehicle detach log contained same vehicle twice.
- Fixed error after destroy IsoRadio and IsoTelevision from Brush Tool with Sledgehammer.
- Added brush tool logs to
brushtool.txt
file. - Added vehicle admin and cheat logs to
admin.txt
file. - Added safehouse admin and cheat logs to
admin.txt
file.
- Marked as deprecated fuctions
writeLog
,getLogLinePrefix
,getLocation
,getPlayerSafehouses
,getPlayerPerks
,getPlayerTraits
,getPlayerStats
,getPlayerHealth
,getVehicleInfo
on LogExtenderClient. This functions copied to logutils and will be REMOVED on next update! Modders, please use this functions from new locationlogutils
. - Changed function
logutils.getPlayerSafehouses
behavior - fieldOwner
now is an array. - Changed behavior of
player.txt
log file writing - fieldOwner
now is an array. - Moved client logs to separated files loggers.
v0.11.1 - 2022-12-22
- Fixed IsoTelevision ISDestroyStuffAction action.
- Added pickup action to map_alternative.txt log file.
v0.11.0 - 2022-12-13
- Fixed PVP hit logs. Sometimes mod writes hit user logs when player is already dead.
- Added traps pick upping logs to map log file.
- Added alternative destroying logs with sledge.
- Added alternative disassemble logs with tools.
- Added crafting logs.
- Added logs for add item action from ISCraftingUI panel in debug mode.
v0.10.0 - 2022-07-08
- Added player hit record to pvp log file.
- Added change safehouse owner action to safehouse log file.
- Added logs for send safehouse invite action.
v0.9.0 - 2022-06-09
- Added logs for admin add item actions from ISItemsListTable panel.
- Added logs for admin remove item and get item actions from ISPlayerStatsManageInvUI panel.
- Added logs for admin teleports.
- Removed v41.65 supporting.
v0.8.0 - 2022-02-26
- Fixed logger for 41.66 build.
v0.7.1 - 2022-02-24
- Fixed safehouse detection on actions
take safehouse
andrelease safehouse
by/releasesafehouse
chat command.
v0.7.0 - 2022-02-23
- Fixed vehicles JSON-format output.
- Added serverside config to Sandbox options.
- Added safehouse events.
- Field
hours
is rounded to two decimal places in stats section of_player.txt
log file. - Field
health
is rounded to the nearest integer in health section of_player.txt
log file.
- Removed fields
level
andskill_points
from_player.txt
log file. Not actual for b41. - Removed deprecated Vehicle enter and exit events in
_cmd.txt
log file.
v0.6.0 - 2022-01-20
- Fixed display of safehouse membership in player log.
- Added vehicle enter and exit events contained vehicle id, type and center coordinate to
_player.txt
log file. - Added vehicle attach and detach events to
_player.txt
log file. - Added ovens and microwaves toggle event to
_cmd.txt
log file. - Added campfire added and taken events to
_map.txt
log file. - Added campfire light and extinguish events to
_cmd.txt
log file.
- Vehicle enter and exit events marked as deprecated in
_cmd.txt
log file. This events will be removed in future releases.
v0.5.0 - 2021-12-14
- Fix for 41 mp build - remove skill points if PZ major version is 41.
v0.4.1 - 2021-09-14
- Profession is no longer written in the localization language. Used profession type instead of name.
v0.4.0 - 2021-08-20
- Fixed "taken IsoGenerator" line in *_map.txt log file.
- Added coordinates to player log.
- Added profession and skill points to player log in stats section.
- Added health level and infected information to player log.
- Added traits to player log.
v0.3.0 - 2019-12-01
- Removed levelup entries from the character's creation window until the server fully connected.
- Added Events.OnEnterVehicle callback. Save coordinates of the player's entry into the vehicle to {{dd-mm-yy_h-i}}_cmd.txt log file.
- Added Events.OnExitVehicle callback. Saves player's exit coordinates from vehicle to {{dd-mm-yy_h-i}}_cmd.txt log file.
- Added Events.EveryHours callback. Makes saving the character to {{dd-mm-yy_h-i}}_player.txt log file every one ingame hour.
- Events can be turned on or off in the configuration of the LogExtender object.
v0.2.0 - 2019-09-24
- Fix inconsistent levelup event from administrator panel #1.
- Added level to dump player stats.
- Start writing changelog.
- Code refactoring. Create a LogExtender object and define its methods.
v0.1.2 - 2019-08-26
- Add readme.
v0.1.1 - 2019-08-25
- Add "taken IsoGenerator" line to *_map.txt log file.
- Add basic implementation.