You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
docs: restore Recall.ai sponsor banner and update v6 references to v7
The sponsor banner was accidentally dropped in 854d3f1. Restore it and bump
all install/version references from 6 to 7 (Cargo.toml is at 7.0.0), add a
7.0 entry to the README version highlights, and add a 6.0->7.0 section to
docs/MIGRATION.md.
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
> **💼 Looking for a hosted desktop recording API?** Check out [Recall.ai](https://www.recall.ai/product/desktop-recording-sdk?utm_source=github&utm_medium=sponsorship&utm_campaign=screencapturekit-rs) — an API for recording Zoom, Google Meet, Microsoft Teams, in-person meetings, and more.
`macos_*` features are **cumulative** — enabling `macos_15_0` automatically enables every earlier version. Pick the highest version your minimum-supported macOS will satisfy:
61
63
62
64
```toml
63
-
screencapturekit = { version = "6", features = ["async", "macos_15_0"] }
65
+
screencapturekit = { version = "7", features = ["async", "macos_15_0"] }
64
66
```
65
67
66
68
> **Upgrading a major version?** See [`docs/MIGRATION.md`](docs/MIGRATION.md)
67
-
> for a per-version guide. The 3.0–6.0 line consolidated the Core Graphics /
68
-
> Core Media foundation types onto the shared `apple-cf` crate; the most likely
69
-
> source change is 5.0's nested `CGRect` layout (`rect.origin.x` /
69
+
> for a per-version guide. Releases 3.0–6.0 consolidated the Core Graphics /
70
+
> Core Media foundation types onto the shared `apple-cf` crate, and 7.0 hardens
71
+
> the FFI boundary without touching the public types; across the whole line the
72
+
> only likely source change is 5.0's nested `CGRect` layout (`rect.origin.x` /
70
73
> `rect.size.width`).
71
74
72
75
## Quick Start
@@ -468,8 +471,13 @@ Highlights by major version:
468
471
`rect.origin.x` / `rect.size.width` instead of flat `rect.x` / `rect.width`.
469
472
-**6.0** — `CMSampleTimingInfo` and `CMClock` are now re-exported from
470
473
`apple-cf` as well.
474
+
-**7.0** — no source changes for typical users. FFI-hardening release that
0 commit comments