diff --git a/CompatBot/Utils/ResultFormatters/LogParserResultFormatter.cs b/CompatBot/Utils/ResultFormatters/LogParserResultFormatter.cs index 8487bf52..c2741ec5 100644 --- a/CompatBot/Utils/ResultFormatters/LogParserResultFormatter.cs +++ b/CompatBot/Utils/ResultFormatters/LogParserResultFormatter.cs @@ -29,8 +29,9 @@ namespace CompatBot.Utils.ResultFormatters // RPCS3 v0.0.4-6422-95c6ac699 Alpha | HEAD // RPCS3 v0.0.5-7104-a19113025 Alpha | HEAD // RPCS3 v0.0.5-42b4ce13a Alpha | minor + // RPCS3 v0.0.18-local_build Alpha | local_build private static readonly Regex BuildInfoInLog = new( - @"RPCS3 v(?(?(\d|\.)+)(-(?\d+))?-(?[0-9a-f]+|unknown)) (?\w+)( \| (?[^|]+))?( \| Firmware version: (?[^|\r\n]+))?( \| (?.*))?\r?$", + @"RPCS3 v(?(?(\d|\.)+)(-(?\d+))?-(?[0-9a-z_]+|unknown)) (?\w+)( \| (?[^|]+))?( \| Firmware version: (?[^|\r\n]+))?( \| (?.*))?\r?$", DefaultSingleLine); private static readonly Regex CpuInfoInLog = new( @"(?[^|@]+?)\s*(((CPU\s*)?@\s*(?.+)\s*GHz\s*)|((APU|(with )?Radeon) [^|]+)|((\w+[\- ]Core )?Processor))?\s* \| (?\d+) Threads \| (?[0-9\.\,]+) GiB RAM( \| TSC: (?\S+))?( \| (?.*?))?\r?$",