From e1683057bc1d51c98497208f4ddc58fefac4912d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 18 May 2024 09:29:20 +0000 Subject: [PATCH] chore: release --- Cargo.lock | 2 +- acap/Cargo.toml | 2 +- scap/CHANGELOG.md | 25 +++++++++++++++++++++++++ scap/Cargo.toml | 2 +- 4 files changed, 28 insertions(+), 3 deletions(-) create mode 100644 scap/CHANGELOG.md diff --git a/Cargo.lock b/Cargo.lock index d896a57..c7d5664 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1415,7 +1415,7 @@ dependencies = [ [[package]] name = "scap" -version = "0.0.3" +version = "0.0.4" dependencies = [ "apple-sys", "bytes", diff --git a/acap/Cargo.toml b/acap/Cargo.toml index 36778f3..428d18a 100644 --- a/acap/Cargo.toml +++ b/acap/Cargo.toml @@ -6,4 +6,4 @@ edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -cpal = "0.15.2" \ No newline at end of file +cpal = "0.15.2" diff --git a/scap/CHANGELOG.md b/scap/CHANGELOG.md new file mode 100644 index 0000000..8d739f9 --- /dev/null +++ b/scap/CHANGELOG.md @@ -0,0 +1,25 @@ +# 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.4](https://github.com/helmerapp/scap/compare/scap-v0.0.3...scap-v0.0.4) - 2024-05-18 + +### Added +- allow excluding windows while recording +- add frame type BGRA for fastest mac capture + +### Fixed +- intel machine fix applied to local fork of core-graphics +- use fork of core-graphics +- pass shows cursor option to stream config + +### Other +- format frame funcs +- Merge pull request [#59](https://github.com/helmerapp/scap/pull/59) from helmerapp/fix/allow-building-for-intel-mac +- use forked apple-sys with latest version of bindgen +- bump up screencapture-kit version to 0.2.8 +- Merge pull request [#53](https://github.com/helmerapp/scap/pull/53) from helmerapp/feat/add-support-for-shows-cursor diff --git a/scap/Cargo.toml b/scap/Cargo.toml index a83d01f..a0b829f 100644 --- a/scap/Cargo.toml +++ b/scap/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "scap" description = "Modern, high-performance screen capture library for Rust. Cross-platform." -version = "0.0.3" +version = "0.0.4" edition = "2021" rust-version = "1.71" license = "MIT"