From 7151d619276325067ccf30c1a1801ae885441b0d Mon Sep 17 00:00:00 2001 From: Tienson Qin Date: Fri, 26 Jun 2026 19:13:21 +0800 Subject: [PATCH 1/2] Relax bonsai_apple OCaml constraint --- dune-project | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dune-project b/dune-project index 6999118..6da2287 100644 --- a/dune-project +++ b/dune-project @@ -28,6 +28,6 @@ (description "A SwiftUI-like declarative native Apple UI framework for OCaml.") (depends - (ocaml (and (>= 5.1.0) (< 5.3.0))) + (ocaml (>= 5.1.0)) dune bonsai_native)) From 771d5452dbded1d1157a820071ea41a06eb7c9fb Mon Sep 17 00:00:00 2001 From: Tienson Qin Date: Fri, 26 Jun 2026 19:14:15 +0800 Subject: [PATCH 2/2] Fix Apple example module references --- apple/examples/ios_app.ml | 2 +- apple/examples/mac_app.ml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/apple/examples/ios_app.ml b/apple/examples/ios_app.ml index f94dcac..d582eb9 100644 --- a/apple/examples/ios_app.ml +++ b/apple/examples/ios_app.ml @@ -5,7 +5,7 @@ let mounted_apps = ref [] let window = ref None let install_root_window _app_delegate _application _launch_options = - let app = App.create Xxx.Ios_demo_app.component in + let app = App.create Bonsai_apple_examples.Ios_demo_app.component in App.flush_and_render app; let root = match App.view app with diff --git a/apple/examples/mac_app.ml b/apple/examples/mac_app.ml index d02f894..e25e68a 100644 --- a/apple/examples/mac_app.ml +++ b/apple/examples/mac_app.ml @@ -5,7 +5,7 @@ let mounted_apps = ref [] let window = ref None let install_root_window _app_delegate _application _launch_options = - let app = App.create Xxx.Ios_demo_app.component in + let app = App.create Bonsai_apple_examples.Ios_demo_app.component in App.flush_and_render app; let root = match App.view app with