Skip to content
This repository has been archived by the owner on Sep 4, 2024. It is now read-only.

Commit

Permalink
Update changelog.
Browse files Browse the repository at this point in the history
  • Loading branch information
aliddell committed Nov 13, 2023
1 parent ba53bd7 commit 9868a7b
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 2 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Changed

- Users can specify the full chunk size in width, height, and planes.

### Removed

- `max_bytes_per_chunk` from `StorageProperties` chunking properties.

### Fixed

- Removes 30-second timeout from `thread_join` on Windows.
Expand All @@ -17,6 +25,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- `acquire-device-properties`: A corresponding entry in `StoragePropertyMetadata`.
- `acquire-device-properties`: A convenience function for enabling multiscale, similar to the function for
setting chunking properties.
- `acquire-device-properties`: A `struct storage_properties_sharding_s` member `shard_dims_chunks` of
`StorageProperties`. Users can now configure sharding properties where supported.
- `acquire-device-properties`: A convenience function for setting sharding parameters.

## [0.1.3](https://github.com/acquire-project/acquire-core-libs/compare/v0.1.2...v0.1.3) - 2023-06-27

Expand Down
4 changes: 2 additions & 2 deletions src/acquire-device-properties/device/props/storage.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@ extern "C"
struct PixelScale pixel_scale_um;

/// Dimensions of chunks, in pixels.
struct storage_properties_sharding_s
struct storage_properties_chunking_s
{
uint32_t width, height, planes;
} chunk_dims_px;

/// Dimensions of shards, in chunks.
struct storage_properties_chunking_s
struct storage_properties_sharding_s
{
uint32_t width, height, planes;
} shard_dims_chunks;
Expand Down

0 comments on commit 9868a7b

Please sign in to comment.