userJake_Richcancel

4,123 Commits over 1,219 Days - 0.14cph!

1 Year Ago
Missing #endif
1 Year Ago
Stop performance data from being collected on the server when `performance_analytics` is disabled on the server - it was disabling flushing, fix it not disabling collection too
1 Year Ago
merge from main -> full_server_demo_client_reader
1 Year Ago
Fix bulk uploader NRE when no events are submitted
1 Year Ago
merge from fix_analytics_uploader_nre
1 Year Ago
Write length of each packet in output demo data
1 Year Ago
Fix `ProtocolParser.staticBuffer` being uninitialzied on other threads when not writing network data - surprised this didn't throw errors before
1 Year Ago
Implement writing Protobuf header of demos for the final merged player demo
1 Year Ago
Merge from main -> full_server_demo_client_reader
1 Year Ago
Merge from monument_scenes -> main - enable with `monument_scenes` convar (default: false)
1 Year Ago
Remove all [MapGeneration] component since it's unused - in future we are going to remove components from map gen scene in a different way
1 Year Ago
merge from main -> monument_scenes
1 Year Ago
merge from fix_cached_browser_query_parallel -> main
1 Year Ago
Switch cached browser queries to run in sequence instead of by parallel - add `cached_browser_parallel` convar (default: false) to modify this behavior - randomly scramble the order of the queries
1 Year Ago
merge from fix_steamworks_gcs -> main
1 Year Ago
Update Facepunch.Streamworks with fixes that reduce allocations when querying large amount of servers from steam
1 Year Ago
Merge from analytics_event_record_overloads -> main
1 Year Ago
Tests showed missing ushort overload
1 Year Ago
Expand tests to cover all overloads of EventRecord.AddField()
1 Year Ago
Add overloads without any key for CSV
1 Year Ago
Change existing overloads for BasePlayer, BaseEntity, etc to use the new 2 string key overloads instead of new EventRecordField(key1,key2)
1 Year Ago
Add a bunch of overloads that take two keys and concat them later with zstring instead of having to manually add new EventRecordField( key1, key2 )
1 Year Ago
Merge from gizmo_light_occludee_nre
1 Year Ago
Fix NRE when gizmos are enabled from LightOccludee.cs
1 Year Ago
Merge from analytics_zstring -> main
1 Year Ago
Fix compile error from merge
1 Year Ago
Merge from main -> analytics_zstring
1 Year Ago
merge from runtime_profiling_disable_pooling -> main
1 Year Ago
Merge from main -> runtime_profiling_disable_pooling
1 Year Ago
Comments
1 Year Ago
Actually test that the values of each field of the JSON or CSV value match to confirm all the serialization and escaping is correct
1 Year Ago
Ensure escaping handles both JSON and CSV rules differently (assuming the CSV is always comma seperated)
1 Year Ago
Simplify overloads for byte,short,etc -> long Mark AddField(string,char) as unsupported instead of silently casting to int Escape all CSV columns with double quotes
1 Year Ago
Added simple CSV parser
1 Year Ago
Added tests to confirm serialization works Fix DateTime formatting having to use 'O' instead of 'o' Switch WebAPI serialization using ZStringWriter instead of Utf8ValueStringBuilder
1 Year Ago
Switch from StreamWriter to Utf8ValueStringBuilder - ensure the struct is passed by ref - Clear() instead of creating a new one for each upload
1 Year Ago
Remove TMP extension overwrites because our TMP is outdated and it won't compile
1 Year Ago
Add zString to repo
1 Year Ago
merge from main -> monument_scenes
1 Year Ago
Merge from main -> monument_scenes
1 Year Ago
Merge from hot_reload_unity -> main
1 Year Ago
Commit package-lock
1 Year Ago
Merge from hot_reload_unity -> main
1 Year Ago
Add hotreload package manually since specifying the package link requires a git client on PC
1 Year Ago
Merge from main -> monument_scenes
1 Year Ago
Merge from hot_reload_unity -> main
1 Year Ago
Merge from main -> hot_reload_unity
1 Year Ago
Merge from main -> hot_reload_unity
1 Year Ago
Combine `isFlushing` and `invalid` bools into single `disposed` bool Add `UsePooling` convar that allows you to turn pooling on and off for bulk uploaders - default to false to help debug why multiple types of events are uploaded to the same file Include serverid in uploaded path so we can see which server is sending errors inside ingest failures