userJake_Richcancel

4,032 Commits over 1,127 Days - 0.15cph!

10 Months Ago
▅▅▄▊▇ ▇█▌▄ ▉▋▊▋ -> ▅▅▋█▉▌▍▍▇_▄▄▄▉█▍▍▉▅▌▉█▄
10 Months Ago
Merge from fix_zstring_analytics_clear -> main
10 Months Ago
Fix analytics bulk uploader not clearing string buffer between each line serialized
10 Months Ago
merge from main -> full_server_demo_client_reader
10 Months Ago
Merge from optimize_f1_console_autocomplete -> main
10 Months Ago
Fix f1 console lag spiking for 1s+ when pasting a large string by setting a flag and only running autocomplete once - was firing inputfield callback for every single character and running autocomplete 600+ times
10 Months Ago
Fix packets not having correct prefixes and postfixes when extracting player demos Parse time from entity position packets to add server time to each demo packet Test that the demo can be read after extraction
10 Months Ago
Merge from main -> full_server_demo_client_reader
10 Months Ago
merge from fix_analytics_dipose_streams -> main
10 Months Ago
Fix analytics upload stream not being disposed if an exception is thrown from the upload thread
10 Months Ago
merge from fix_service_point_throttling
10 Months Ago
Add `http_connection_limit` to configure max concurrent http requests per domain - increase default from 2 -> 32
10 Months Ago
merge from analytics_disable_performance_server -> main
10 Months Ago
Missing #endif
10 Months 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
10 Months Ago
merge from main -> full_server_demo_client_reader
10 Months Ago
merge from fix_analytics_uploader_nre
10 Months Ago
Fix bulk uploader NRE when no events are submitted
10 Months Ago
Write length of each packet in output demo data
10 Months Ago
Fix `ProtocolParser.staticBuffer` being uninitialzied on other threads when not writing network data - surprised this didn't throw errors before
10 Months Ago
Implement writing Protobuf header of demos for the final merged player demo
10 Months Ago
Merge from main -> full_server_demo_client_reader
10 Months Ago
Merge from monument_scenes -> main - enable with `monument_scenes` convar (default: false)
10 Months 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
10 Months Ago
merge from main -> monument_scenes
10 Months Ago
merge from fix_cached_browser_query_parallel -> main
10 Months 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
10 Months Ago
merge from fix_steamworks_gcs -> main
10 Months Ago
Update Facepunch.Streamworks with fixes that reduce allocations when querying large amount of servers from steam
10 Months Ago
Merge from analytics_event_record_overloads -> main
10 Months Ago
Tests showed missing ushort overload
10 Months Ago
Expand tests to cover all overloads of EventRecord.AddField()
10 Months Ago
Add overloads without any key for CSV
10 Months Ago
Change existing overloads for BasePlayer, BaseEntity, etc to use the new 2 string key overloads instead of new EventRecordField(key1,key2)
10 Months 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 )
10 Months Ago
Merge from gizmo_light_occludee_nre
10 Months Ago
Fix NRE when gizmos are enabled from LightOccludee.cs
10 Months Ago
Merge from analytics_zstring -> main
10 Months Ago
Fix compile error from merge
10 Months Ago
Merge from main -> analytics_zstring
10 Months Ago
merge from runtime_profiling_disable_pooling -> main
10 Months Ago
Merge from main -> runtime_profiling_disable_pooling
10 Months Ago
Comments
10 Months 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
10 Months Ago
Ensure escaping handles both JSON and CSV rules differently (assuming the CSV is always comma seperated)
10 Months 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
10 Months Ago
Added simple CSV parser
10 Months 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
10 Months Ago
Switch from StreamWriter to Utf8ValueStringBuilder - ensure the struct is passed by ref - Clear() instead of creating a new one for each upload
10 Months Ago
Remove TMP extension overwrites because our TMP is outdated and it won't compile