This is a bug fix release targeting issues reported for 11.3.4309.
IFilter::BuildDescription method generates human-readable filter summaries and formatted XML. Ctrl+C in filter UI and advanced search dialog copies readable summary, Ctrl+Shift+C copies full XML.IClass::DescriptionFormat allows setting a LimeFormula expression on a class that overrides Record.Description output. Uses [fieldname] brackets for field references, evaluated as VBScript. Examples:' Simple field
[name]
' Two fields with separator
[firstname] & " " & [lastname]
' Company with city
[name] & " - " & [city]
' Deal with value and stage
[name] & " (" & [dealvalue] & " kr, " & [dealstatus] & ")"
' Relation traversal via dot-path
[firstname] & " " & [lastname] & ", " & [company.name]
' Conditional using IIf
[name] & IIf([status] <> "", " [" & [status] & "]", "")
' Ticket with ID prefix
"#" & [idhelpdeskticket] & " " & [title]
If the expression returns an empty string, the default description (descriptive field) is used as fallback.
Application\Options\HiddenSettings in application settings (ISettings). Each value is a DWORD: 1 = hidden, 0 or absent = visible. Administrators always see all controls regardless of the setting. Available settings:; Misc Options Page MiscOptionsPage.ConfirmQuit MiscOptionsPage.ShowTodo MiscOptionsPage.EnableInspectorFullTextSearch MiscOptionsPage.ShowDocumentOpenOptions MiscOptionsPage.ShowInsight MiscOptionsPage.SearchRecipients MiscOptionsPage.UseChromium MiscOptionsPage.UseTimezoneConversion MiscOptionsPage.DimFieldsIfNULL MiscOptionsPage.PreferWebClient MiscOptionsPage.AllowWebClient ; Explorers Options Page ExplorersOptionsPage.UseTooltipForTruncatedValues ExplorersOptionsPage.KeepTextFilter ExplorersOptionsPage.PreviewInspectorTabContents
Application\IntegrateWebClient setting (DWORD: 0 = disabled, 1 = enabled). When disabled, PreferWebClient and “Open in WebClient” menu items are suppressed. No behavioral change when enabled.InputBox and MsgBox dialogs are now modal to the application's main window, preventing user interaction behind them. This resolves heap corruption crashes caused by reentrancy when the dialog's message pump dispatched timers and other messages.DllPrepareShutdown mechanism allows helper DLLs to clean up gracefully before COM apartments are torn down.Explorer.Class no longer returns E_INVALIDARG when the explorer has no records loaded and no default class is configured.limecrm: protocol URLs. The URL scheme handler (primarily used by call center integrations for incoming-call CRM lookups) now correctly decodes multi-byte UTF-8 percent sequences such as Swedish characters å, ä, ö and other non-ASCII characters. Previously, only single-byte sequences were handled, producing garbled text for %C3%B6 (ö) and similar. Generated URLs are now pure-ASCII UTF-8 percent-encoded per RFC 3986. For rare cases where callers still send locale-encoded URLs, a compatibility setting UrlEncoding\UseLegacyCodePage (DWORD: 1 = enabled) forces decoding via the user's locale code page. Diagnostic OutputDebugString logging was added to the URL processing pipeline to aid troubleshooting of integration issues.