BFH Beamer paperNotes includes overlays instead of no overlays
The command given below includes overlays in the output document. The document is a intended to print out on paper.
latexmk -lualatex -CF -pv -usepretex="\PassOptionsToClass{paperNotes}{bfhbeamer}" bfhlecture.tex
A quick fix for a user. Feed the handout property to underlying class bemaer.
latexmk -lualatex -CF -pv -usepretex="\PassOptionsToClass{paperNotes}{bfhbeamer} \PassOptionsToClass{handout}{beamer}" bfhlecture.tex
A possible fix is in corresponding hotfix branch and adds the property to the key/value pair of paperNote property within bfhbeamer class.
-- paperNotes .code:n = \bool_gset_true:N \g__ptxcd_handoutWithNotes_bool,
++ paperNotes .code:n = \bool_gset_true:N \g__ptxcd_handoutWithNotes_bool \PassOptionsToPackage{handout}{beamer},