Changes between Version 8 and Version 9 of SequoiaProblems


Ignore:
Timestamp:
Sep 25, 2024, 8:57:49 PM (2 days ago)
Author:
ryandesign (Ryan Carsten Schmidt)
Comment:

Revise ScreenCaptureKit workaround to check macosx_deployment_target not the macOS version

Legend:

Unmodified
Added
Removed
Modified
  • SequoiaProblems

    v8 v9  
    4040Needs to set `macosx_deployment_target` to 14 or below.
    4141
    42 Solution for most ports:
     42Workaround for most ports:
    4343{{{
    44 platform darwin 24 {
     44if {${os.platform} eq "darwin" && [vercmp ${macosx_deployment_target} >= 15.0]} {
    4545    macosx_deployment_target 14.0
    4646}