Skip to content

Commit cd47c6f

Browse files
committed
README: Add disclaimer on not being active track
1 parent 27ae882 commit cd47c6f

File tree

2 files changed

+14
-1
lines changed

2 files changed

+14
-1
lines changed

.github/workflows/linter-documentation-links.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,9 @@ jobs:
5757
for doc_url in $search_urls
5858
do
5959
found_doc_url=$(grep -nir "$doc_url" --exclude $workflowfile | grep -v $acap3_base_url)
60-
[ -z "$found_doc_url" ] || {
60+
# Whitelist link in disclaimer notice
61+
found_doc_url_stripped=$(echo $found_doc_url |sed '/README.md:10/d')
62+
[ -z "$found_doc_url_stripped" ] || {
6163
printf "\nERROR: $doc_url is an ACAP $incorrect_sdk_version documentation URL found in:\n$found_doc_url\n"
6264
found_error=y
6365
}

README.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
> [!IMPORTANT]
2+
>
3+
> This repository has examples for ACAP version 3 SDK, which is not the latest
4+
> version and might therefore not get updates, bug fixes or answers on tickets
5+
> as frequently.
6+
>
7+
> It's recommended to move to ACAP version 4 SDK which is the active track:
8+
>
9+
> - [ACAP Native SDK example](https://github.com/AxisCommunications/acap-native-sdk-examples)
10+
> - [ACAP Documentation](https://axiscommunications.github.io/acap-documentation)
11+
112
# What is AXIS Camera Application Platform?
213

314
[AXIS Camera Application Platform (ACAP)](https://www.axis.com/support/developer-support/axis-camera-application-platform) is an open application platform that enables members of [Axis Application Development Partner](https://www.axis.com/partners/adp-partner-program) (ADP) Program to develop applications that can be downloaded and installed on Axis network cameras and video encoders. ACAP makes it possible to develop applications for a wide range of use cases:

0 commit comments

Comments
 (0)