Patch Zoom for non-metal iMac13,2 (OCLP)

I want to run Zoom on my iMac 27" late 2012, running Sonoma 14.3.1 using the OpenCore Legacy Patcher. For versions older than 5.9 there is a patch script to circumvent the absence of ‘metal’ on this mac. However, google requires at least version 5.14.5 at sign in. For newer versions my patch script does not work because ZCommonUI.framework has been removed.

My request is: can the pre 5.9 patch can be adapted to the newest or at least to 5.14.5+ versions? If so, how?

Here is the old patch script:
#!/bin/sh
zoomapp=“/Applications/zoom.us.app”
if [ -d $zoomapp ]; then
sudo mount -uw /
sudo perl -pi -e “s|\xB3\x01\x85\xC0|\xB3\x00\x85\xC0|g” “$zoomapp/Contents/Frameworks/ZCommonUI.framework/Versions/A/ZCommonUI”
if [ “$?” -eq 0 ]; then
sudo codesign -f -s - “$zoomapp/Contents/Frameworks/ZCommonUI.framework/Versions/A/ZCommonUI”
echo “Patched "$zoomapp".”
else
echo “Couldn’t patch Zoom, or Zoom is already patched.”
fi
else
echo “Couldn’t patch Zoom. Please make sure Zoom is installed at "$zoomapp".”
fi

After an OCLP update (1.4.2) and reinstall of the patches Zoom works fine.
Problem solved.