-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Submodule updates. Don't merge before [core-libs/#2](acquire-project/acquire-core-libs#2), [driver-common/#4](acquire-project/acquire-driver-common#4), and [video-runtime/#2](acquire-project/acquire-video-runtime#2).
- Loading branch information
Showing
8 changed files
with
63 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# 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.1.3](https://github.com/acquire-project/acquire-driver-hdcam/compare/v0.1.2...v0.1.3) - 2023-06-02 | ||
|
||
### Added | ||
|
||
- Nightly releases. | ||
|
||
### Changes | ||
|
||
- Updates call to `storage_properties_init` for the new function signature. | ||
|
||
## [0.1.2](https://github.com/acquire-project/acquire-driver-hdcam/compare/v0.1.1...v0.1.2) - 2023-05-12 | ||
|
||
### Fixed | ||
|
||
- Fixes a bug where `acquire_abort` hangs for a max_frame_count of anything other than 0. | ||
|
||
## 0.1.1 - 2023-05-11 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
find_program(GIT git) | ||
set(GIT_TAG "v0") | ||
set(GIT_HASH "") | ||
|
||
if(GIT) | ||
execute_process(COMMAND ${GIT} describe --tags --abbrev=0 | ||
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} | ||
OUTPUT_VARIABLE _GIT_TAG | ||
OUTPUT_STRIP_TRAILING_WHITESPACE | ||
ERROR_QUIET | ||
) | ||
execute_process(COMMAND ${GIT} describe --always | ||
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} | ||
OUTPUT_VARIABLE GIT_HASH | ||
OUTPUT_STRIP_TRAILING_WHITESPACE | ||
ERROR_QUIET | ||
) | ||
|
||
string(FIND "${_GIT_TAG}" "fatal" find_result) | ||
|
||
if(${find_result} EQUAL -1) | ||
set(GIT_TAG "${_GIT_TAG}") | ||
endif() | ||
endif() | ||
|
||
# Output | ||
add_definitions(-DGIT_TAG=${GIT_TAG}) | ||
add_definitions(-DGIT_HASH=${GIT_HASH}) | ||
set(CPACK_PACKAGE_VERSION ${GIT_TAG}) | ||
message(STATUS "Version ${GIT_TAG} ${GIT_HASH}") |
Submodule acquire-core-libs
updated
12 files
Submodule acquire-driver-common
updated
13 files
+3 −3 | .github/workflows/nightly-release.yml | |
+62 −0 | .github/workflows/release.yml | |
+73 −47 | .github/workflows/test_pr.yml | |
+17 −0 | CHANGELOG.md | |
+1 −0 | CMakeLists.txt | |
+30 −0 | cmake/git-versioning.cmake | |
+1 −1 | src/acquire-core-libs | |
+35 −17 | src/storage/raw.c | |
+42 −16 | src/storage/side-by-side-tiff.cpp | |
+54 −19 | src/storage/tiff.cpp | |
+33 −13 | src/storage/trash.c | |
+3 −0 | tests/CMakeLists.txt | |
+86 −0 | tests/storage-get-meta.cpp |
Submodule acquire-video-runtime
updated
13 files
+72 −47 | .github/workflows/test_pr.yml | |
+6 −43 | CHANGELOG.md | |
+1 −1 | src/acquire-core-libs | |
+23 −6 | src/acquire.c | |
+1 −1 | src/acquire.h | |
+0 −1 | src/runtime/filter.c | |
+1 −1 | src/runtime/sink.c | |
+0 −1 | src/runtime/source.c | |
+1 −1 | tests/acquire-driver-common | |
+1 −2 | tests/change-external-metadata.cpp | |
+1 −1 | tests/change-file-name.cpp | |
+1 −1 | tests/one-video-stream.cpp | |
+2 −4 | tests/two-video-streams.cpp |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters