From 2a97233a1cb0a84110b3bc32b784a30a262d0d04 Mon Sep 17 00:00:00 2001 From: Jim Cheng <33436619+jimcheng256@users.noreply.github.com> Date: Fri, 29 Aug 2025 22:10:58 -0600 Subject: [PATCH 1/2] chore(build): Updated function signature to build happily for Sequoia. --- Event System/Actions/Action-OpenLog.m | 2 +- Log System/RDLogOpener.m | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Event System/Actions/Action-OpenLog.m b/Event System/Actions/Action-OpenLog.m index dd921ca..3d5d332 100755 --- a/Event System/Actions/Action-OpenLog.m +++ b/Event System/Actions/Action-OpenLog.m @@ -110,7 +110,7 @@ - (RDLogType *) allocNamedType:(NSString *) logType } -extern int scrollbackSort(id obj1, id obj2, void *context); +extern NSInteger scrollbackSort(id obj1, id obj2, void *context); - (BOOL) executeForState:(AtlantisState *) state { diff --git a/Log System/RDLogOpener.m b/Log System/RDLogOpener.m index ac35c0f..17ed586 100755 --- a/Log System/RDLogOpener.m +++ b/Log System/RDLogOpener.m @@ -39,7 +39,7 @@ - (void) dealloc [super dealloc]; } -NSInteger scrollbackSort(id obj1, id obj2, void *context) +NSInteger scrollbackSort(id obj1, id obj2, void * __nullable context) { NSAttributedString *st1 = (NSAttributedString *)obj1; NSAttributedString *st2 = (NSAttributedString *)obj2; From 66bdbf8d9d9216d270863231b9f3f7bf2ed6ebbc Mon Sep 17 00:00:00 2001 From: Jim Cheng <33436619+jimcheng256@users.noreply.github.com> Date: Mon, 1 Sep 2025 20:43:16 -0600 Subject: [PATCH 2/2] chore(build): Fix new crash from uninit'd version string in obsolete Perl scripting engine. --- Scripting/PerlScriptingEngine.m | 1 + 1 file changed, 1 insertion(+) diff --git a/Scripting/PerlScriptingEngine.m b/Scripting/PerlScriptingEngine.m index 5c9a8ac..fa1aef5 100755 --- a/Scripting/PerlScriptingEngine.m +++ b/Scripting/PerlScriptingEngine.m @@ -195,6 +195,7 @@ - (NSString *) scriptEngineVersion // id perlVersion = [_rdPerlInterpreter valueForKey:@"perlVersion"]; // // return (NSString *)perlVersion; + return @""; } - (NSString *) scriptEngineCopyright