diff options
| author | jacqueline <me@jacqueline.id.au> | 2023-05-24 07:20:16 +1000 |
|---|---|---|
| committer | jacqueline <me@jacqueline.id.au> | 2023-05-24 07:20:16 +1000 |
| commit | 3041e48ca6ebcbe107927e4b7c212ef1a829fab0 (patch) | |
| tree | 4d5b6382fed84ef475fb10b509aa8dd47d1ac17f /src/database | |
| parent | 876e5e70e93e3031e2acb32ddedc3b262d737ded (diff) | |
| parent | a4f94c812a4da7254d31af4061a8f234a1e0e23d (diff) | |
| download | tangara-fw-3041e48ca6ebcbe107927e4b7c212ef1a829fab0.tar.gz | |
Merge branch 'main' of git.sr.ht:~jacqueline/tangara-fw
Diffstat (limited to 'src/database')
| -rw-r--r-- | src/database/CMakeLists.txt | 4 | ||||
| -rw-r--r-- | src/database/database.cpp | 6 | ||||
| -rw-r--r-- | src/database/env_esp.cpp | 6 | ||||
| -rw-r--r-- | src/database/file_gatherer.cpp | 6 | ||||
| -rw-r--r-- | src/database/include/database.hpp | 6 | ||||
| -rw-r--r-- | src/database/include/env_esp.hpp | 6 | ||||
| -rw-r--r-- | src/database/include/file_gatherer.hpp | 6 | ||||
| -rw-r--r-- | src/database/include/records.hpp | 6 | ||||
| -rw-r--r-- | src/database/include/song.hpp | 6 | ||||
| -rw-r--r-- | src/database/include/tag_parser.hpp | 6 | ||||
| -rw-r--r-- | src/database/records.cpp | 6 | ||||
| -rw-r--r-- | src/database/song.cpp | 6 | ||||
| -rw-r--r-- | src/database/tag_parser.cpp | 6 | ||||
| -rw-r--r-- | src/database/test/CMakeLists.txt | 4 | ||||
| -rw-r--r-- | src/database/test/test_database.cpp | 6 | ||||
| -rw-r--r-- | src/database/test/test_records.cpp | 6 |
16 files changed, 92 insertions, 0 deletions
diff --git a/src/database/CMakeLists.txt b/src/database/CMakeLists.txt index c769fa33..211a63cd 100644 --- a/src/database/CMakeLists.txt +++ b/src/database/CMakeLists.txt @@ -1,3 +1,7 @@ +# Copyright 2023 jacqueline <me@jacqueline.id.au> +# +# SPDX-License-Identifier: GPL-3.0-only + idf_component_register( SRCS "env_esp.cpp" "database.cpp" "song.cpp" "records.cpp" "file_gatherer.cpp" "tag_parser.cpp" INCLUDE_DIRS "include" diff --git a/src/database/database.cpp b/src/database/database.cpp index 65a500d9..71954bbb 100644 --- a/src/database/database.cpp +++ b/src/database/database.cpp @@ -1,3 +1,9 @@ +/* + * Copyright 2023 jacqueline <me@jacqueline.id.au> + * + * SPDX-License-Identifier: GPL-3.0-only + */ + #include "database.hpp" #include <stdint.h> diff --git a/src/database/env_esp.cpp b/src/database/env_esp.cpp index 3bc68984..704e0a54 100644 --- a/src/database/env_esp.cpp +++ b/src/database/env_esp.cpp @@ -1,3 +1,9 @@ +/* + * Copyright 2023 jacqueline <me@jacqueline.id.au> + * + * SPDX-License-Identifier: GPL-3.0-only + */ + #include "env_esp.hpp" #include <atomic> diff --git a/src/database/file_gatherer.cpp b/src/database/file_gatherer.cpp index e3b89285..2d17a925 100644 --- a/src/database/file_gatherer.cpp +++ b/src/database/file_gatherer.cpp @@ -1,3 +1,9 @@ +/* + * Copyright 2023 jacqueline <me@jacqueline.id.au> + * + * SPDX-License-Identifier: GPL-3.0-only + */ + #include "file_gatherer.hpp" #include <deque> diff --git a/src/database/include/database.hpp b/src/database/include/database.hpp index ce2ca9fe..5214b8df 100644 --- a/src/database/include/database.hpp +++ b/src/database/include/database.hpp @@ -1,3 +1,9 @@ +/* + * Copyright 2023 jacqueline <me@jacqueline.id.au> + * + * SPDX-License-Identifier: GPL-3.0-only + */ + #pragma once #include <stdint.h> diff --git a/src/database/include/env_esp.hpp b/src/database/include/env_esp.hpp index 6a415ce6..c7da6d91 100644 --- a/src/database/include/env_esp.hpp +++ b/src/database/include/env_esp.hpp @@ -1,3 +1,9 @@ +/* + * Copyright 2023 jacqueline <me@jacqueline.id.au> + * + * SPDX-License-Identifier: GPL-3.0-only + */ + #pragma once #include <memory> diff --git a/src/database/include/file_gatherer.hpp b/src/database/include/file_gatherer.hpp index bba4d0df..ff0a6ac2 100644 --- a/src/database/include/file_gatherer.hpp +++ b/src/database/include/file_gatherer.hpp @@ -1,3 +1,9 @@ +/* + * Copyright 2023 jacqueline <me@jacqueline.id.au> + * + * SPDX-License-Identifier: GPL-3.0-only + */ + #pragma once #include <deque> diff --git a/src/database/include/records.hpp b/src/database/include/records.hpp index 371d8d58..1b66ad42 100644 --- a/src/database/include/records.hpp +++ b/src/database/include/records.hpp @@ -1,3 +1,9 @@ +/* + * Copyright 2023 jacqueline <me@jacqueline.id.au> + * + * SPDX-License-Identifier: GPL-3.0-only + */ + #pragma once #include <stdint.h> diff --git a/src/database/include/song.hpp b/src/database/include/song.hpp index 9a84e124..2791c0ca 100644 --- a/src/database/include/song.hpp +++ b/src/database/include/song.hpp @@ -1,3 +1,9 @@ +/* + * Copyright 2023 jacqueline <me@jacqueline.id.au> + * + * SPDX-License-Identifier: GPL-3.0-only + */ + #pragma once #include <stdint.h> diff --git a/src/database/include/tag_parser.hpp b/src/database/include/tag_parser.hpp index 1aee94c7..7dab93a1 100644 --- a/src/database/include/tag_parser.hpp +++ b/src/database/include/tag_parser.hpp @@ -1,3 +1,9 @@ +/* + * Copyright 2023 jacqueline <me@jacqueline.id.au> + * + * SPDX-License-Identifier: GPL-3.0-only + */ + #pragma once #include <string> diff --git a/src/database/records.cpp b/src/database/records.cpp index 572850d2..f04e5da7 100644 --- a/src/database/records.cpp +++ b/src/database/records.cpp @@ -1,3 +1,9 @@ +/* + * Copyright 2023 jacqueline <me@jacqueline.id.au> + * + * SPDX-License-Identifier: GPL-3.0-only + */ + #include "records.hpp" #include <stdint.h> diff --git a/src/database/song.cpp b/src/database/song.cpp index b6a1baac..c717e55e 100644 --- a/src/database/song.cpp +++ b/src/database/song.cpp @@ -1,3 +1,9 @@ +/* + * Copyright 2023 jacqueline <me@jacqueline.id.au> + * + * SPDX-License-Identifier: GPL-3.0-only + */ + #include "song.hpp" #include <komihash.h> diff --git a/src/database/tag_parser.cpp b/src/database/tag_parser.cpp index 90866ff3..d6109671 100644 --- a/src/database/tag_parser.cpp +++ b/src/database/tag_parser.cpp @@ -1,3 +1,9 @@ +/* + * Copyright 2023 jacqueline <me@jacqueline.id.au> + * + * SPDX-License-Identifier: GPL-3.0-only + */ + #include "tag_parser.hpp" #include <esp_log.h> diff --git a/src/database/test/CMakeLists.txt b/src/database/test/CMakeLists.txt index b5532da1..a9f2cedb 100644 --- a/src/database/test/CMakeLists.txt +++ b/src/database/test/CMakeLists.txt @@ -1,3 +1,7 @@ +# Copyright 2023 jacqueline <me@jacqueline.id.au> +# +# SPDX-License-Identifier: GPL-3.0-only + idf_component_register( SRCS "test_records.cpp" "test_database.cpp" INCLUDE_DIRS "." diff --git a/src/database/test/test_database.cpp b/src/database/test/test_database.cpp index a88c4bb3..ebaa6307 100644 --- a/src/database/test/test_database.cpp +++ b/src/database/test/test_database.cpp @@ -1,3 +1,9 @@ +/* + * Copyright 2023 jacqueline <me@jacqueline.id.au> + * + * SPDX-License-Identifier: GPL-3.0-only + */ + #include "database.hpp" #include <stdint.h> diff --git a/src/database/test/test_records.cpp b/src/database/test/test_records.cpp index d84d2b6a..ca518458 100644 --- a/src/database/test/test_records.cpp +++ b/src/database/test/test_records.cpp @@ -1,3 +1,9 @@ +/* + * Copyright 2023 jacqueline <me@jacqueline.id.au> + * + * SPDX-License-Identifier: GPL-3.0-only + */ + #include "records.hpp" #include <stdint.h> |
