From 6dfbc81d7f5af38fb3fc81a12b9bdf6605ede11e Mon Sep 17 00:00:00 2001 From: Brendan Allan Date: Mon, 4 Aug 2025 14:27:17 +0800 Subject: [PATCH 1/3] chore: release v0.0.9 --- CHANGELOG.md | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 52 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4b15b61..ec109b0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,54 @@ # Changelog + +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [Unreleased] + +## [0.0.9](https://github.com/CapSoftware/scap/compare/v0.0.8...v0.0.9) - 2025-08-04 + +### Fixed + +- fix macos +- fix windows builds + +### Other + +- beta.0 +- silent fail when sending frames on windows +- beta 1 +- 0.1.0 beta +- Merge pull request #157 from rubenskj/fix/fixing-readme-typo +- windows-capture 1.5.0 +- Merge pull request #149 from MyrikLD/main +- Merge branch 'audio-capture' +- ensure window title string isn't null for macos intel +- disable all default features +- upgrade Cidre +- Squash merge cidre-ify into audio-capture +- expose get_main_display +- is_border_settings_supported can fail +- only specify border config if available +- no more windows scale factor +- windows +- macos audio system time +- account for incorrect core_media impl +- core_media +- cleanup +- capture audio timestamp on windows +- packed audio on windows +- properly receive audio data +- only cpal on windows +- improve windows a bit +- expose channels +- expose format +- Merge branch 'main' into audio-capture +- windows and mac +- some more stuff +- start of audio capture +# Changelog All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), diff --git a/Cargo.lock b/Cargo.lock index c5c2a8d..af75aec 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1077,7 +1077,7 @@ dependencies = [ [[package]] name = "scap" -version = "0.0.8" +version = "0.0.9" dependencies = [ "cidre", "cocoa", diff --git a/Cargo.toml b/Cargo.toml index 5e9d34a..5f22b35 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "scap" description = "Modern, high-performance screen capture library for Rust. Cross-platform." -version = "0.0.8" +version = "0.0.9" edition = "2021" rust-version = "1.85" license = "MIT" From 01b98d648845954f8a0ab71502d5bf824a1507be Mon Sep 17 00:00:00 2001 From: Brendan Allan Date: Mon, 4 Aug 2025 14:36:59 +0800 Subject: [PATCH 2/3] beta.1 --- Cargo.lock | 2 +- Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index af75aec..605e74f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1077,7 +1077,7 @@ dependencies = [ [[package]] name = "scap" -version = "0.0.9" +version = "0.1.0-beta.1" dependencies = [ "cidre", "cocoa", diff --git a/Cargo.toml b/Cargo.toml index 5f22b35..8c84b68 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "scap" description = "Modern, high-performance screen capture library for Rust. Cross-platform." -version = "0.0.9" +version = "0.1.0-beta.1" edition = "2021" rust-version = "1.85" license = "MIT" From 07556a0845f39e4188a99b60b4dec752c481dd9b Mon Sep 17 00:00:00 2001 From: Brendan Allan Date: Mon, 4 Aug 2025 14:37:40 +0800 Subject: [PATCH 3/3] remove changelog --- CHANGELOG.md | 49 ------------------------------------------------- 1 file changed, 49 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ec109b0..94bd66f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,55 +7,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] -## [0.0.9](https://github.com/CapSoftware/scap/compare/v0.0.8...v0.0.9) - 2025-08-04 - -### Fixed - -- fix macos -- fix windows builds - -### Other - -- beta.0 -- silent fail when sending frames on windows -- beta 1 -- 0.1.0 beta -- Merge pull request #157 from rubenskj/fix/fixing-readme-typo -- windows-capture 1.5.0 -- Merge pull request #149 from MyrikLD/main -- Merge branch 'audio-capture' -- ensure window title string isn't null for macos intel -- disable all default features -- upgrade Cidre -- Squash merge cidre-ify into audio-capture -- expose get_main_display -- is_border_settings_supported can fail -- only specify border config if available -- no more windows scale factor -- windows -- macos audio system time -- account for incorrect core_media impl -- core_media -- cleanup -- capture audio timestamp on windows -- packed audio on windows -- properly receive audio data -- only cpal on windows -- improve windows a bit -- expose channels -- expose format -- Merge branch 'main' into audio-capture -- windows and mac -- some more stuff -- start of audio capture -# Changelog -All notable changes to this project will be documented in this file. - -The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), -and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). - -## [Unreleased] - ## [0.0.8](https://github.com/CapSoftware/scap/compare/v0.0.7...v0.0.8) - 2024-12-10 ### Other