diff --git a/cmake/libraries/boost.cmake b/cmake/libraries/boost.cmake index e0e3f64d..a83a3a5b 100644 --- a/cmake/libraries/boost.cmake +++ b/cmake/libraries/boost.cmake @@ -1,3 +1,4 @@ +# /usr/sbin/softwareupdate --install-rosetta --agree-to-license if(PROJECT_ENABLE_BOOST) if(PROJECT_ENABLE_LIBBITCOIN_SYSTEM) set(BOOST_MAJOR_VERSION ${BOOST2_MAJOR_VERSION}) @@ -95,19 +96,36 @@ if(PROJECT_ENABLE_BOOST) endif() if(PROJECT_ENABLE_LIBBITCOIN_SYSTEM) - set(BOOST_CXX_STANDARD 14) - set(BOOST_OPTIONS cxxflags=-Wno-enum-constexpr-conversion) + set(BOOST_CXX_STANDARD 17) + if (PROJECT_IS_DARWIN) + if(PROJECT_IS_ARM64) + set(BOOST_CXX_FLAGS "-arch arm64 -Wno-enum-constexpr-conversion") + set(BOOST_C_FLAGS "-arch arm64") + set(BOOST_LINK_FLAGS "-arch arm64") + else() + set(BOOST_CXX_FLAGS "-arch x86_64 -Wno-enum-constexpr-conversion") + set(BOOST_C_FLAGS "-arch x86_64") + set(BOOST_LINK_FLAGS "-arch x86_64") + endif() + set(BOOST_OPTIONS ${BOOST_OPTIONS} toolset=clang define=BOOST_NO_CXX98_FUNCTION_BASE) + endif() else() set(BOOST_CXX_STANDARD ${CMAKE_CXX_STANDARD}) set(BOOST_OPTIONS define=BOOST_ASIO_HAS_STD_STRING_VIEW) endif() + if (PROJECT_IS_DARWIN) + set(BOOST_CXX_STD_DIALECT iso) + set(BOOST_OPTIONS ${BOOST_OPTIONS} -sICU_PATH=${PROJECT_EXTERNAL_BUILD_ROOT}) + else() + set(BOOST_CXX_STD_DIALECT gnu) + endif() + set(BOOST_BUILD_ARGS --openssldir=$ENV{OPENSSL_ROOT_DIR} --prefix=${PROJECT_EXTERNAL_BUILD_ROOT} address-model=64 architecture=${BOOST_ARCH} - cxxstd-dialect=gnu cxxstd=${BOOST_CXX_STANDARD} define=BOOST_SYSTEM_NO_DEPRECATED link=${BOOST_LINK} @@ -116,6 +134,15 @@ if(PROJECT_ENABLE_BOOST) ${BOOST_OPTIONS} ) + if (BOOST_CXX_FLAGS) + set(BOOST_BUILD_ARGS + ${BOOST_BUILD_ARGS} + cflags=${BOOST_C_FLAGS} + cxxflags=${BOOST_CXX_FLAGS} + linkflags=${BOOST_LINK_FLAGS} + ) + endif() + ExternalProject_Add(boost_project PREFIX external URL ${PROJECT_3RD_PARTY_DIR}/boost_${BOOST_MAJOR_VERSION}_${BOOST_MINOR_VERSION}_${BOOST_PATCH_VERSION}.tar.gz diff --git a/cmake/versions.cmake b/cmake/versions.cmake index 0b3de7e4..b0d40446 100644 --- a/cmake/versions.cmake +++ b/cmake/versions.cmake @@ -1,15 +1,15 @@ set(BINUTILS_VERSION 2.44) -set(BOOST2_MAJOR_VERSION 1) -set(BOOST2_MINOR_VERSION 76) -set(BOOST2_PATCH_VERSION 0) set(BOOST_MAJOR_VERSION 1) set(BOOST_MINOR_VERSION 89) set(BOOST_PATCH_VERSION 0) +set(BOOST2_MAJOR_VERSION 1) +set(BOOST2_MINOR_VERSION 76) +set(BOOST2_PATCH_VERSION 0) set(CPP_HTTPLIB_VERSION 0.26.0) -set(CURL2_VERSION 8_16_0) set(CURL_VERSION 8.16.0) -set(EXPAT2_VERSION 2_7_1) +set(CURL2_VERSION 8_16_0) set(EXPAT_VERSION 2.7.1) +set(EXPAT2_VERSION 2_7_1) set(GCC_VERSION 15.2.0) set(GTEST_VERSION 1.17.0) set(ICU_VERSION 76-1) @@ -22,9 +22,9 @@ set(PKG_CONFIG_VERSION 0.29.2) set(PUGIXML_VERSION 1.15) set(ROCKSDB_VERSION 10.5.1) set(SPDLOG_VERSION 1.15.3) -set(SQLITE2_VERSION 3.50.4) set(SQLITE_VERSION 3500400) +set(SQLITE2_VERSION 3.50.4) set(STDUUID_VERSION 1.2.3) -set(WINFSP2_VERSION 2.1) set(WINFSP_VERSION 2.1.25156) +set(WINFSP2_VERSION 2.1) set(ZLIB_VERSION 1.3.1) diff --git a/repertory/librepertory/include/app_config.hpp b/repertory/librepertory/include/app_config.hpp index d320109d..2049a24e 100644 --- a/repertory/librepertory/include/app_config.hpp +++ b/repertory/librepertory/include/app_config.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/include/comm/curl/curl_comm.hpp b/repertory/librepertory/include/comm/curl/curl_comm.hpp index d809b1e3..8cfd7f15 100644 --- a/repertory/librepertory/include/comm/curl/curl_comm.hpp +++ b/repertory/librepertory/include/comm/curl/curl_comm.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/include/comm/curl/curl_shared.hpp b/repertory/librepertory/include/comm/curl/curl_shared.hpp index d214d63c..6fae9146 100644 --- a/repertory/librepertory/include/comm/curl/curl_shared.hpp +++ b/repertory/librepertory/include/comm/curl/curl_shared.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/include/comm/curl/multi_request.hpp b/repertory/librepertory/include/comm/curl/multi_request.hpp index a294ce8b..188f9aec 100644 --- a/repertory/librepertory/include/comm/curl/multi_request.hpp +++ b/repertory/librepertory/include/comm/curl/multi_request.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/include/comm/curl/requests/http_delete.hpp b/repertory/librepertory/include/comm/curl/requests/http_delete.hpp index e8be7ce3..9d1ab0d0 100644 --- a/repertory/librepertory/include/comm/curl/requests/http_delete.hpp +++ b/repertory/librepertory/include/comm/curl/requests/http_delete.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/include/comm/curl/requests/http_get.hpp b/repertory/librepertory/include/comm/curl/requests/http_get.hpp index 92c3b55b..2db1d94b 100644 --- a/repertory/librepertory/include/comm/curl/requests/http_get.hpp +++ b/repertory/librepertory/include/comm/curl/requests/http_get.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/include/comm/curl/requests/http_head.hpp b/repertory/librepertory/include/comm/curl/requests/http_head.hpp index 26b37347..ccb63ef7 100644 --- a/repertory/librepertory/include/comm/curl/requests/http_head.hpp +++ b/repertory/librepertory/include/comm/curl/requests/http_head.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/include/comm/curl/requests/http_post.hpp b/repertory/librepertory/include/comm/curl/requests/http_post.hpp index d465d0ef..e1bf8406 100644 --- a/repertory/librepertory/include/comm/curl/requests/http_post.hpp +++ b/repertory/librepertory/include/comm/curl/requests/http_post.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/include/comm/curl/requests/http_put_file.hpp b/repertory/librepertory/include/comm/curl/requests/http_put_file.hpp index 3310210b..cd0c207b 100644 --- a/repertory/librepertory/include/comm/curl/requests/http_put_file.hpp +++ b/repertory/librepertory/include/comm/curl/requests/http_put_file.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/include/comm/curl/requests/http_request_base.hpp b/repertory/librepertory/include/comm/curl/requests/http_request_base.hpp index 0246dbc4..b775c680 100644 --- a/repertory/librepertory/include/comm/curl/requests/http_request_base.hpp +++ b/repertory/librepertory/include/comm/curl/requests/http_request_base.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/include/comm/i_http_comm.hpp b/repertory/librepertory/include/comm/i_http_comm.hpp index 79e774c0..0237c874 100644 --- a/repertory/librepertory/include/comm/i_http_comm.hpp +++ b/repertory/librepertory/include/comm/i_http_comm.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/include/comm/packet/client_pool.hpp b/repertory/librepertory/include/comm/packet/client_pool.hpp index 5a5a6837..b7d29a1e 100644 --- a/repertory/librepertory/include/comm/packet/client_pool.hpp +++ b/repertory/librepertory/include/comm/packet/client_pool.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/include/comm/packet/common.hpp b/repertory/librepertory/include/comm/packet/common.hpp index 1ebc6336..c6e116ef 100644 --- a/repertory/librepertory/include/comm/packet/common.hpp +++ b/repertory/librepertory/include/comm/packet/common.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/include/comm/packet/packet.hpp b/repertory/librepertory/include/comm/packet/packet.hpp index 32e0ac50..935ccda2 100644 --- a/repertory/librepertory/include/comm/packet/packet.hpp +++ b/repertory/librepertory/include/comm/packet/packet.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/include/comm/packet/packet_client.hpp b/repertory/librepertory/include/comm/packet/packet_client.hpp index f8569476..0ca6cb30 100644 --- a/repertory/librepertory/include/comm/packet/packet_client.hpp +++ b/repertory/librepertory/include/comm/packet/packet_client.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights diff --git a/repertory/librepertory/include/comm/packet/packet_server.hpp b/repertory/librepertory/include/comm/packet/packet_server.hpp index 0dc1b38a..e761e139 100644 --- a/repertory/librepertory/include/comm/packet/packet_server.hpp +++ b/repertory/librepertory/include/comm/packet/packet_server.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/include/common.hpp b/repertory/librepertory/include/common.hpp index 2ba70703..ea25e9f6 100644 --- a/repertory/librepertory/include/common.hpp +++ b/repertory/librepertory/include/common.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/include/db/file_db.hpp b/repertory/librepertory/include/db/file_db.hpp index 0ae82bd9..9f34a3d3 100644 --- a/repertory/librepertory/include/db/file_db.hpp +++ b/repertory/librepertory/include/db/file_db.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/include/db/file_mgr_db.hpp b/repertory/librepertory/include/db/file_mgr_db.hpp index d1cd95cb..95f2d7f4 100644 --- a/repertory/librepertory/include/db/file_mgr_db.hpp +++ b/repertory/librepertory/include/db/file_mgr_db.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/include/db/i_file_db.hpp b/repertory/librepertory/include/db/i_file_db.hpp index ac31e731..ef82710a 100644 --- a/repertory/librepertory/include/db/i_file_db.hpp +++ b/repertory/librepertory/include/db/i_file_db.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/include/db/i_file_mgr_db.hpp b/repertory/librepertory/include/db/i_file_mgr_db.hpp index e39bc8bc..817d15f7 100644 --- a/repertory/librepertory/include/db/i_file_mgr_db.hpp +++ b/repertory/librepertory/include/db/i_file_mgr_db.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/include/db/i_meta_db.hpp b/repertory/librepertory/include/db/i_meta_db.hpp index 1344f7b1..54564521 100644 --- a/repertory/librepertory/include/db/i_meta_db.hpp +++ b/repertory/librepertory/include/db/i_meta_db.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/include/db/impl/rdb_file_db.hpp b/repertory/librepertory/include/db/impl/rdb_file_db.hpp index c033c6b2..00379166 100644 --- a/repertory/librepertory/include/db/impl/rdb_file_db.hpp +++ b/repertory/librepertory/include/db/impl/rdb_file_db.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/include/db/impl/rdb_file_mgr_db.hpp b/repertory/librepertory/include/db/impl/rdb_file_mgr_db.hpp index e57a6e0a..0124815d 100644 --- a/repertory/librepertory/include/db/impl/rdb_file_mgr_db.hpp +++ b/repertory/librepertory/include/db/impl/rdb_file_mgr_db.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/include/db/impl/rdb_meta_db.hpp b/repertory/librepertory/include/db/impl/rdb_meta_db.hpp index bf78b282..fdc868d3 100644 --- a/repertory/librepertory/include/db/impl/rdb_meta_db.hpp +++ b/repertory/librepertory/include/db/impl/rdb_meta_db.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/include/db/impl/sqlite_file_db.hpp b/repertory/librepertory/include/db/impl/sqlite_file_db.hpp index 6c1266ff..09689937 100644 --- a/repertory/librepertory/include/db/impl/sqlite_file_db.hpp +++ b/repertory/librepertory/include/db/impl/sqlite_file_db.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/include/db/impl/sqlite_file_mgr_db.hpp b/repertory/librepertory/include/db/impl/sqlite_file_mgr_db.hpp index b5081491..a2dd1cb1 100644 --- a/repertory/librepertory/include/db/impl/sqlite_file_mgr_db.hpp +++ b/repertory/librepertory/include/db/impl/sqlite_file_mgr_db.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/include/db/impl/sqlite_meta_db.hpp b/repertory/librepertory/include/db/impl/sqlite_meta_db.hpp index f192e3b5..52278d12 100644 --- a/repertory/librepertory/include/db/impl/sqlite_meta_db.hpp +++ b/repertory/librepertory/include/db/impl/sqlite_meta_db.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/include/db/meta_db.hpp b/repertory/librepertory/include/db/meta_db.hpp index d2aa68d5..6ad828b2 100644 --- a/repertory/librepertory/include/db/meta_db.hpp +++ b/repertory/librepertory/include/db/meta_db.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/include/drives/directory_cache.hpp b/repertory/librepertory/include/drives/directory_cache.hpp index b8abcf42..cfa21c71 100644 --- a/repertory/librepertory/include/drives/directory_cache.hpp +++ b/repertory/librepertory/include/drives/directory_cache.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/include/drives/directory_iterator.hpp b/repertory/librepertory/include/drives/directory_iterator.hpp index 00aafedd..146270ce 100644 --- a/repertory/librepertory/include/drives/directory_iterator.hpp +++ b/repertory/librepertory/include/drives/directory_iterator.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/include/drives/eviction.hpp b/repertory/librepertory/include/drives/eviction.hpp index cb8250e7..a416d4db 100644 --- a/repertory/librepertory/include/drives/eviction.hpp +++ b/repertory/librepertory/include/drives/eviction.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/include/drives/fuse/fuse_base.hpp b/repertory/librepertory/include/drives/fuse/fuse_base.hpp index ca6e1a60..dac48423 100644 --- a/repertory/librepertory/include/drives/fuse/fuse_base.hpp +++ b/repertory/librepertory/include/drives/fuse/fuse_base.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/include/drives/fuse/fuse_drive.hpp b/repertory/librepertory/include/drives/fuse/fuse_drive.hpp index a2a83922..d839e9c8 100644 --- a/repertory/librepertory/include/drives/fuse/fuse_drive.hpp +++ b/repertory/librepertory/include/drives/fuse/fuse_drive.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/include/drives/fuse/fuse_drive_base.hpp b/repertory/librepertory/include/drives/fuse/fuse_drive_base.hpp index 01bbe4ee..cec9021b 100644 --- a/repertory/librepertory/include/drives/fuse/fuse_drive_base.hpp +++ b/repertory/librepertory/include/drives/fuse/fuse_drive_base.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/include/drives/fuse/i_fuse_drive.hpp b/repertory/librepertory/include/drives/fuse/i_fuse_drive.hpp index 106f29e0..c8fecdf6 100644 --- a/repertory/librepertory/include/drives/fuse/i_fuse_drive.hpp +++ b/repertory/librepertory/include/drives/fuse/i_fuse_drive.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/include/drives/fuse/remotefuse/i_remote_instance.hpp b/repertory/librepertory/include/drives/fuse/remotefuse/i_remote_instance.hpp index 68bbcd1d..7b282cd3 100644 --- a/repertory/librepertory/include/drives/fuse/remotefuse/i_remote_instance.hpp +++ b/repertory/librepertory/include/drives/fuse/remotefuse/i_remote_instance.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/include/drives/fuse/remotefuse/remote_client.hpp b/repertory/librepertory/include/drives/fuse/remotefuse/remote_client.hpp index 6f040940..98be5245 100644 --- a/repertory/librepertory/include/drives/fuse/remotefuse/remote_client.hpp +++ b/repertory/librepertory/include/drives/fuse/remotefuse/remote_client.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/include/drives/fuse/remotefuse/remote_fuse_drive.hpp b/repertory/librepertory/include/drives/fuse/remotefuse/remote_fuse_drive.hpp index d91c25ec..6538ceb0 100644 --- a/repertory/librepertory/include/drives/fuse/remotefuse/remote_fuse_drive.hpp +++ b/repertory/librepertory/include/drives/fuse/remotefuse/remote_fuse_drive.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/include/drives/fuse/remotefuse/remote_server.hpp b/repertory/librepertory/include/drives/fuse/remotefuse/remote_server.hpp index 5ccb1c63..a6eaac64 100644 --- a/repertory/librepertory/include/drives/fuse/remotefuse/remote_server.hpp +++ b/repertory/librepertory/include/drives/fuse/remotefuse/remote_server.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/include/drives/remote/i_remote_json.hpp b/repertory/librepertory/include/drives/remote/i_remote_json.hpp index 571e1b46..4102a657 100644 --- a/repertory/librepertory/include/drives/remote/i_remote_json.hpp +++ b/repertory/librepertory/include/drives/remote/i_remote_json.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/include/drives/remote/remote_open_file_table.hpp b/repertory/librepertory/include/drives/remote/remote_open_file_table.hpp index 0c37b17e..42242883 100644 --- a/repertory/librepertory/include/drives/remote/remote_open_file_table.hpp +++ b/repertory/librepertory/include/drives/remote/remote_open_file_table.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/include/drives/remote/remote_server_base.hpp b/repertory/librepertory/include/drives/remote/remote_server_base.hpp index 804b3ec5..1e77c4f1 100644 --- a/repertory/librepertory/include/drives/remote/remote_server_base.hpp +++ b/repertory/librepertory/include/drives/remote/remote_server_base.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/include/drives/winfsp/i_winfsp_drive.hpp b/repertory/librepertory/include/drives/winfsp/i_winfsp_drive.hpp index 54e81a39..fdf4e9df 100644 --- a/repertory/librepertory/include/drives/winfsp/i_winfsp_drive.hpp +++ b/repertory/librepertory/include/drives/winfsp/i_winfsp_drive.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/include/drives/winfsp/remotewinfsp/i_remote_instance.hpp b/repertory/librepertory/include/drives/winfsp/remotewinfsp/i_remote_instance.hpp index 05c90d98..53b4d60d 100644 --- a/repertory/librepertory/include/drives/winfsp/remotewinfsp/i_remote_instance.hpp +++ b/repertory/librepertory/include/drives/winfsp/remotewinfsp/i_remote_instance.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/include/drives/winfsp/remotewinfsp/remote_client.hpp b/repertory/librepertory/include/drives/winfsp/remotewinfsp/remote_client.hpp index 3087a9a0..e4458acf 100644 --- a/repertory/librepertory/include/drives/winfsp/remotewinfsp/remote_client.hpp +++ b/repertory/librepertory/include/drives/winfsp/remotewinfsp/remote_client.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/include/drives/winfsp/remotewinfsp/remote_server.hpp b/repertory/librepertory/include/drives/winfsp/remotewinfsp/remote_server.hpp index 7a4b4193..74f21934 100644 --- a/repertory/librepertory/include/drives/winfsp/remotewinfsp/remote_server.hpp +++ b/repertory/librepertory/include/drives/winfsp/remotewinfsp/remote_server.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/include/drives/winfsp/remotewinfsp/remote_winfsp_drive.hpp b/repertory/librepertory/include/drives/winfsp/remotewinfsp/remote_winfsp_drive.hpp index eb465f2b..a5c38d04 100644 --- a/repertory/librepertory/include/drives/winfsp/remotewinfsp/remote_winfsp_drive.hpp +++ b/repertory/librepertory/include/drives/winfsp/remotewinfsp/remote_winfsp_drive.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/include/drives/winfsp/winfsp_drive.hpp b/repertory/librepertory/include/drives/winfsp/winfsp_drive.hpp index 0b88a29f..1b0665a6 100644 --- a/repertory/librepertory/include/drives/winfsp/winfsp_drive.hpp +++ b/repertory/librepertory/include/drives/winfsp/winfsp_drive.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/include/events/consumers/console_consumer.hpp b/repertory/librepertory/include/events/consumers/console_consumer.hpp index 4b677be8..fb7ad625 100644 --- a/repertory/librepertory/include/events/consumers/console_consumer.hpp +++ b/repertory/librepertory/include/events/consumers/console_consumer.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/include/events/consumers/logging_consumer.hpp b/repertory/librepertory/include/events/consumers/logging_consumer.hpp index d5750fd2..60a1ca38 100644 --- a/repertory/librepertory/include/events/consumers/logging_consumer.hpp +++ b/repertory/librepertory/include/events/consumers/logging_consumer.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/include/events/event_system.hpp b/repertory/librepertory/include/events/event_system.hpp index 53686257..63eb810d 100644 --- a/repertory/librepertory/include/events/event_system.hpp +++ b/repertory/librepertory/include/events/event_system.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/include/events/i_event.hpp b/repertory/librepertory/include/events/i_event.hpp index ae70fe5e..651c6a30 100644 --- a/repertory/librepertory/include/events/i_event.hpp +++ b/repertory/librepertory/include/events/i_event.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/include/events/types/curl_error.hpp b/repertory/librepertory/include/events/types/curl_error.hpp index b2f0d3ea..81e5eda1 100644 --- a/repertory/librepertory/include/events/types/curl_error.hpp +++ b/repertory/librepertory/include/events/types/curl_error.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/include/events/types/debug_log.hpp b/repertory/librepertory/include/events/types/debug_log.hpp index acf08c3c..97cf4396 100644 --- a/repertory/librepertory/include/events/types/debug_log.hpp +++ b/repertory/librepertory/include/events/types/debug_log.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/include/events/types/directory_remove_failed.hpp b/repertory/librepertory/include/events/types/directory_remove_failed.hpp index cd42a290..08ff210f 100644 --- a/repertory/librepertory/include/events/types/directory_remove_failed.hpp +++ b/repertory/librepertory/include/events/types/directory_remove_failed.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/include/events/types/directory_removed.hpp b/repertory/librepertory/include/events/types/directory_removed.hpp index 9e065342..b8660226 100644 --- a/repertory/librepertory/include/events/types/directory_removed.hpp +++ b/repertory/librepertory/include/events/types/directory_removed.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/include/events/types/directory_removed_externally.hpp b/repertory/librepertory/include/events/types/directory_removed_externally.hpp index eac0dc5f..074109ea 100644 --- a/repertory/librepertory/include/events/types/directory_removed_externally.hpp +++ b/repertory/librepertory/include/events/types/directory_removed_externally.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/include/events/types/download_begin.hpp b/repertory/librepertory/include/events/types/download_begin.hpp index b8c5c8d6..d0b5c7ad 100644 --- a/repertory/librepertory/include/events/types/download_begin.hpp +++ b/repertory/librepertory/include/events/types/download_begin.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/include/events/types/download_end.hpp b/repertory/librepertory/include/events/types/download_end.hpp index abb4ffad..9677b0dd 100644 --- a/repertory/librepertory/include/events/types/download_end.hpp +++ b/repertory/librepertory/include/events/types/download_end.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/include/events/types/download_progress.hpp b/repertory/librepertory/include/events/types/download_progress.hpp index 2cc82384..3c5d03b2 100644 --- a/repertory/librepertory/include/events/types/download_progress.hpp +++ b/repertory/librepertory/include/events/types/download_progress.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/include/events/types/download_restore_failed.hpp b/repertory/librepertory/include/events/types/download_restore_failed.hpp index 739bf1ac..465f7a26 100644 --- a/repertory/librepertory/include/events/types/download_restore_failed.hpp +++ b/repertory/librepertory/include/events/types/download_restore_failed.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/include/events/types/download_restored.hpp b/repertory/librepertory/include/events/types/download_restored.hpp index 22214744..a00bc482 100644 --- a/repertory/librepertory/include/events/types/download_restored.hpp +++ b/repertory/librepertory/include/events/types/download_restored.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/include/events/types/download_resume_add_failed.hpp b/repertory/librepertory/include/events/types/download_resume_add_failed.hpp index 96e090ad..e8ef3394 100644 --- a/repertory/librepertory/include/events/types/download_resume_add_failed.hpp +++ b/repertory/librepertory/include/events/types/download_resume_add_failed.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/include/events/types/download_resume_added.hpp b/repertory/librepertory/include/events/types/download_resume_added.hpp index c49af159..01dec32b 100644 --- a/repertory/librepertory/include/events/types/download_resume_added.hpp +++ b/repertory/librepertory/include/events/types/download_resume_added.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/include/events/types/download_resume_removed.hpp b/repertory/librepertory/include/events/types/download_resume_removed.hpp index aabd62d4..4596261b 100644 --- a/repertory/librepertory/include/events/types/download_resume_removed.hpp +++ b/repertory/librepertory/include/events/types/download_resume_removed.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/include/events/types/download_type_selected.hpp b/repertory/librepertory/include/events/types/download_type_selected.hpp index 15a3595d..4c7e26aa 100644 --- a/repertory/librepertory/include/events/types/download_type_selected.hpp +++ b/repertory/librepertory/include/events/types/download_type_selected.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/include/events/types/drive_mount_failed.hpp b/repertory/librepertory/include/events/types/drive_mount_failed.hpp index e28dbdb3..ad43e4cd 100644 --- a/repertory/librepertory/include/events/types/drive_mount_failed.hpp +++ b/repertory/librepertory/include/events/types/drive_mount_failed.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/include/events/types/drive_mount_result.hpp b/repertory/librepertory/include/events/types/drive_mount_result.hpp index 4d4d49bf..cccca057 100644 --- a/repertory/librepertory/include/events/types/drive_mount_result.hpp +++ b/repertory/librepertory/include/events/types/drive_mount_result.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/include/events/types/drive_mounted.hpp b/repertory/librepertory/include/events/types/drive_mounted.hpp index 92b115cb..cc142e40 100644 --- a/repertory/librepertory/include/events/types/drive_mounted.hpp +++ b/repertory/librepertory/include/events/types/drive_mounted.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/include/events/types/drive_stop_timed_out.hpp b/repertory/librepertory/include/events/types/drive_stop_timed_out.hpp index 03061bc7..3c623ded 100644 --- a/repertory/librepertory/include/events/types/drive_stop_timed_out.hpp +++ b/repertory/librepertory/include/events/types/drive_stop_timed_out.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/include/events/types/drive_unmount_pending.hpp b/repertory/librepertory/include/events/types/drive_unmount_pending.hpp index fba886cd..737ec9ee 100644 --- a/repertory/librepertory/include/events/types/drive_unmount_pending.hpp +++ b/repertory/librepertory/include/events/types/drive_unmount_pending.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/include/events/types/drive_unmounted.hpp b/repertory/librepertory/include/events/types/drive_unmounted.hpp index e14e20df..f73efe24 100644 --- a/repertory/librepertory/include/events/types/drive_unmounted.hpp +++ b/repertory/librepertory/include/events/types/drive_unmounted.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/include/events/types/event_level_changed.hpp b/repertory/librepertory/include/events/types/event_level_changed.hpp index 5d77bc1c..250786c8 100644 --- a/repertory/librepertory/include/events/types/event_level_changed.hpp +++ b/repertory/librepertory/include/events/types/event_level_changed.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/include/events/types/file_pinned.hpp b/repertory/librepertory/include/events/types/file_pinned.hpp index 879e4ab1..70bd8fd1 100644 --- a/repertory/librepertory/include/events/types/file_pinned.hpp +++ b/repertory/librepertory/include/events/types/file_pinned.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/include/events/types/file_remove_failed.hpp b/repertory/librepertory/include/events/types/file_remove_failed.hpp index ae216b25..c07b4543 100644 --- a/repertory/librepertory/include/events/types/file_remove_failed.hpp +++ b/repertory/librepertory/include/events/types/file_remove_failed.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/include/events/types/file_removed.hpp b/repertory/librepertory/include/events/types/file_removed.hpp index 5acb4765..bb890321 100644 --- a/repertory/librepertory/include/events/types/file_removed.hpp +++ b/repertory/librepertory/include/events/types/file_removed.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/include/events/types/file_removed_externally.hpp b/repertory/librepertory/include/events/types/file_removed_externally.hpp index 1d277410..e144d1ec 100644 --- a/repertory/librepertory/include/events/types/file_removed_externally.hpp +++ b/repertory/librepertory/include/events/types/file_removed_externally.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/include/events/types/file_unpinned.hpp b/repertory/librepertory/include/events/types/file_unpinned.hpp index 3f53eefb..04cb1586 100644 --- a/repertory/librepertory/include/events/types/file_unpinned.hpp +++ b/repertory/librepertory/include/events/types/file_unpinned.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/include/events/types/file_upload_completed.hpp b/repertory/librepertory/include/events/types/file_upload_completed.hpp index ad22ef4b..ef744f49 100644 --- a/repertory/librepertory/include/events/types/file_upload_completed.hpp +++ b/repertory/librepertory/include/events/types/file_upload_completed.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/include/events/types/file_upload_failed.hpp b/repertory/librepertory/include/events/types/file_upload_failed.hpp index 66eeca76..8e1d2f11 100644 --- a/repertory/librepertory/include/events/types/file_upload_failed.hpp +++ b/repertory/librepertory/include/events/types/file_upload_failed.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/include/events/types/file_upload_not_found.hpp b/repertory/librepertory/include/events/types/file_upload_not_found.hpp index 5e076727..50b21abb 100644 --- a/repertory/librepertory/include/events/types/file_upload_not_found.hpp +++ b/repertory/librepertory/include/events/types/file_upload_not_found.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/include/events/types/file_upload_queued.hpp b/repertory/librepertory/include/events/types/file_upload_queued.hpp index cd4af05c..7ca585b2 100644 --- a/repertory/librepertory/include/events/types/file_upload_queued.hpp +++ b/repertory/librepertory/include/events/types/file_upload_queued.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/include/events/types/file_upload_removed.hpp b/repertory/librepertory/include/events/types/file_upload_removed.hpp index c7406a7a..bdf50c7b 100644 --- a/repertory/librepertory/include/events/types/file_upload_removed.hpp +++ b/repertory/librepertory/include/events/types/file_upload_removed.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/include/events/types/file_upload_retry.hpp b/repertory/librepertory/include/events/types/file_upload_retry.hpp index 44a4e09a..e921002f 100644 --- a/repertory/librepertory/include/events/types/file_upload_retry.hpp +++ b/repertory/librepertory/include/events/types/file_upload_retry.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/include/events/types/filesystem_item_added.hpp b/repertory/librepertory/include/events/types/filesystem_item_added.hpp index eb30e23f..f8253ed4 100644 --- a/repertory/librepertory/include/events/types/filesystem_item_added.hpp +++ b/repertory/librepertory/include/events/types/filesystem_item_added.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/include/events/types/filesystem_item_closed.hpp b/repertory/librepertory/include/events/types/filesystem_item_closed.hpp index 4946bfe2..bdb2d295 100644 --- a/repertory/librepertory/include/events/types/filesystem_item_closed.hpp +++ b/repertory/librepertory/include/events/types/filesystem_item_closed.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/include/events/types/filesystem_item_evicted.hpp b/repertory/librepertory/include/events/types/filesystem_item_evicted.hpp index d08f226f..6d235255 100644 --- a/repertory/librepertory/include/events/types/filesystem_item_evicted.hpp +++ b/repertory/librepertory/include/events/types/filesystem_item_evicted.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/include/events/types/filesystem_item_handle_closed.hpp b/repertory/librepertory/include/events/types/filesystem_item_handle_closed.hpp index b07f3c6f..9102ec9b 100644 --- a/repertory/librepertory/include/events/types/filesystem_item_handle_closed.hpp +++ b/repertory/librepertory/include/events/types/filesystem_item_handle_closed.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/include/events/types/filesystem_item_handle_opened.hpp b/repertory/librepertory/include/events/types/filesystem_item_handle_opened.hpp index d24a565b..79730730 100644 --- a/repertory/librepertory/include/events/types/filesystem_item_handle_opened.hpp +++ b/repertory/librepertory/include/events/types/filesystem_item_handle_opened.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/include/events/types/filesystem_item_opened.hpp b/repertory/librepertory/include/events/types/filesystem_item_opened.hpp index d9d44e93..a6188ef9 100644 --- a/repertory/librepertory/include/events/types/filesystem_item_opened.hpp +++ b/repertory/librepertory/include/events/types/filesystem_item_opened.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/include/events/types/fuse_args_parsed.hpp b/repertory/librepertory/include/events/types/fuse_args_parsed.hpp index e03c387c..d8efc92c 100644 --- a/repertory/librepertory/include/events/types/fuse_args_parsed.hpp +++ b/repertory/librepertory/include/events/types/fuse_args_parsed.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/include/events/types/fuse_event.hpp b/repertory/librepertory/include/events/types/fuse_event.hpp index 68679022..f30cf72b 100644 --- a/repertory/librepertory/include/events/types/fuse_event.hpp +++ b/repertory/librepertory/include/events/types/fuse_event.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/include/events/types/info_log.hpp b/repertory/librepertory/include/events/types/info_log.hpp index 60653451..bf597c5a 100644 --- a/repertory/librepertory/include/events/types/info_log.hpp +++ b/repertory/librepertory/include/events/types/info_log.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/include/events/types/invalid_cache_size.hpp b/repertory/librepertory/include/events/types/invalid_cache_size.hpp index f059c33d..857456d3 100644 --- a/repertory/librepertory/include/events/types/invalid_cache_size.hpp +++ b/repertory/librepertory/include/events/types/invalid_cache_size.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/include/events/types/item_timeout.hpp b/repertory/librepertory/include/events/types/item_timeout.hpp index 3da5898a..0f832c08 100644 --- a/repertory/librepertory/include/events/types/item_timeout.hpp +++ b/repertory/librepertory/include/events/types/item_timeout.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/include/events/types/max_cache_size_reached.hpp b/repertory/librepertory/include/events/types/max_cache_size_reached.hpp index d8e26972..8a702989 100644 --- a/repertory/librepertory/include/events/types/max_cache_size_reached.hpp +++ b/repertory/librepertory/include/events/types/max_cache_size_reached.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/include/events/types/orphaned_file_detected.hpp b/repertory/librepertory/include/events/types/orphaned_file_detected.hpp index 644363fc..46a1ea60 100644 --- a/repertory/librepertory/include/events/types/orphaned_file_detected.hpp +++ b/repertory/librepertory/include/events/types/orphaned_file_detected.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/include/events/types/orphaned_file_processing_failed.hpp b/repertory/librepertory/include/events/types/orphaned_file_processing_failed.hpp index 3be9d9c7..ff4510ca 100644 --- a/repertory/librepertory/include/events/types/orphaned_file_processing_failed.hpp +++ b/repertory/librepertory/include/events/types/orphaned_file_processing_failed.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/include/events/types/orphaned_source_file_detected.hpp b/repertory/librepertory/include/events/types/orphaned_source_file_detected.hpp index bcee6f6a..e4b4f09c 100644 --- a/repertory/librepertory/include/events/types/orphaned_source_file_detected.hpp +++ b/repertory/librepertory/include/events/types/orphaned_source_file_detected.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/include/events/types/orphaned_source_file_removed.hpp b/repertory/librepertory/include/events/types/orphaned_source_file_removed.hpp index dfcf3fb3..021a15e4 100644 --- a/repertory/librepertory/include/events/types/orphaned_source_file_removed.hpp +++ b/repertory/librepertory/include/events/types/orphaned_source_file_removed.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/include/events/types/packet_client_timeout.hpp b/repertory/librepertory/include/events/types/packet_client_timeout.hpp index f87fddad..cada30b9 100644 --- a/repertory/librepertory/include/events/types/packet_client_timeout.hpp +++ b/repertory/librepertory/include/events/types/packet_client_timeout.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/include/events/types/polling_item_begin.hpp b/repertory/librepertory/include/events/types/polling_item_begin.hpp index 7e496f3d..6e73ec0e 100644 --- a/repertory/librepertory/include/events/types/polling_item_begin.hpp +++ b/repertory/librepertory/include/events/types/polling_item_begin.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/include/events/types/polling_item_end.hpp b/repertory/librepertory/include/events/types/polling_item_end.hpp index 8446e31c..d6ea5511 100644 --- a/repertory/librepertory/include/events/types/polling_item_end.hpp +++ b/repertory/librepertory/include/events/types/polling_item_end.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/include/events/types/provider_invalid_version.hpp b/repertory/librepertory/include/events/types/provider_invalid_version.hpp index df26c3f9..324afcd5 100644 --- a/repertory/librepertory/include/events/types/provider_invalid_version.hpp +++ b/repertory/librepertory/include/events/types/provider_invalid_version.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/include/events/types/provider_offline.hpp b/repertory/librepertory/include/events/types/provider_offline.hpp index 72512da3..ef18b1ad 100644 --- a/repertory/librepertory/include/events/types/provider_offline.hpp +++ b/repertory/librepertory/include/events/types/provider_offline.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/include/events/types/provider_upload_begin.hpp b/repertory/librepertory/include/events/types/provider_upload_begin.hpp index 6872c868..a1da7412 100644 --- a/repertory/librepertory/include/events/types/provider_upload_begin.hpp +++ b/repertory/librepertory/include/events/types/provider_upload_begin.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/include/events/types/provider_upload_end.hpp b/repertory/librepertory/include/events/types/provider_upload_end.hpp index 4cfd62d4..0cb38b5a 100644 --- a/repertory/librepertory/include/events/types/provider_upload_end.hpp +++ b/repertory/librepertory/include/events/types/provider_upload_end.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/include/events/types/remote_server_event.hpp b/repertory/librepertory/include/events/types/remote_server_event.hpp index 45547772..fbeb4574 100644 --- a/repertory/librepertory/include/events/types/remote_server_event.hpp +++ b/repertory/librepertory/include/events/types/remote_server_event.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/include/events/types/repertory_exception.hpp b/repertory/librepertory/include/events/types/repertory_exception.hpp index 39847b53..777044ac 100644 --- a/repertory/librepertory/include/events/types/repertory_exception.hpp +++ b/repertory/librepertory/include/events/types/repertory_exception.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/include/events/types/service_start_begin.hpp b/repertory/librepertory/include/events/types/service_start_begin.hpp index 303acc3f..56e7ba30 100644 --- a/repertory/librepertory/include/events/types/service_start_begin.hpp +++ b/repertory/librepertory/include/events/types/service_start_begin.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/include/events/types/service_start_end.hpp b/repertory/librepertory/include/events/types/service_start_end.hpp index ee559c64..abdc0d45 100644 --- a/repertory/librepertory/include/events/types/service_start_end.hpp +++ b/repertory/librepertory/include/events/types/service_start_end.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/include/events/types/service_stop_begin.hpp b/repertory/librepertory/include/events/types/service_stop_begin.hpp index ce28c63a..29a988d2 100644 --- a/repertory/librepertory/include/events/types/service_stop_begin.hpp +++ b/repertory/librepertory/include/events/types/service_stop_begin.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/include/events/types/service_stop_end.hpp b/repertory/librepertory/include/events/types/service_stop_end.hpp index 6c12163a..84321699 100644 --- a/repertory/librepertory/include/events/types/service_stop_end.hpp +++ b/repertory/librepertory/include/events/types/service_stop_end.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/include/events/types/trace_log.hpp b/repertory/librepertory/include/events/types/trace_log.hpp index b1d79bb9..444e71d6 100644 --- a/repertory/librepertory/include/events/types/trace_log.hpp +++ b/repertory/librepertory/include/events/types/trace_log.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/include/events/types/unmount_requested.hpp b/repertory/librepertory/include/events/types/unmount_requested.hpp index a16db278..1da070c3 100644 --- a/repertory/librepertory/include/events/types/unmount_requested.hpp +++ b/repertory/librepertory/include/events/types/unmount_requested.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/include/events/types/unmount_result.hpp b/repertory/librepertory/include/events/types/unmount_result.hpp index 1ba18f38..d8f2c9d6 100644 --- a/repertory/librepertory/include/events/types/unmount_result.hpp +++ b/repertory/librepertory/include/events/types/unmount_result.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/include/events/types/warn_log.hpp b/repertory/librepertory/include/events/types/warn_log.hpp index ba127ba1..148d905f 100644 --- a/repertory/librepertory/include/events/types/warn_log.hpp +++ b/repertory/librepertory/include/events/types/warn_log.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/include/events/types/winfsp_event.hpp b/repertory/librepertory/include/events/types/winfsp_event.hpp index 7d0391bd..237f8590 100644 --- a/repertory/librepertory/include/events/types/winfsp_event.hpp +++ b/repertory/librepertory/include/events/types/winfsp_event.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/include/file_manager/cache_size_mgr.hpp b/repertory/librepertory/include/file_manager/cache_size_mgr.hpp index b621e875..b6903755 100644 --- a/repertory/librepertory/include/file_manager/cache_size_mgr.hpp +++ b/repertory/librepertory/include/file_manager/cache_size_mgr.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/include/file_manager/direct_open_file.hpp b/repertory/librepertory/include/file_manager/direct_open_file.hpp index ec63d49b..a537f344 100644 --- a/repertory/librepertory/include/file_manager/direct_open_file.hpp +++ b/repertory/librepertory/include/file_manager/direct_open_file.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/include/file_manager/file_manager.hpp b/repertory/librepertory/include/file_manager/file_manager.hpp index d48ad3d0..32556641 100644 --- a/repertory/librepertory/include/file_manager/file_manager.hpp +++ b/repertory/librepertory/include/file_manager/file_manager.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/include/file_manager/i_file_manager.hpp b/repertory/librepertory/include/file_manager/i_file_manager.hpp index b3f5b9d2..b917954e 100644 --- a/repertory/librepertory/include/file_manager/i_file_manager.hpp +++ b/repertory/librepertory/include/file_manager/i_file_manager.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/include/file_manager/i_open_file.hpp b/repertory/librepertory/include/file_manager/i_open_file.hpp index cfdcd4d1..b1192b51 100644 --- a/repertory/librepertory/include/file_manager/i_open_file.hpp +++ b/repertory/librepertory/include/file_manager/i_open_file.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/include/file_manager/i_upload_manager.hpp b/repertory/librepertory/include/file_manager/i_upload_manager.hpp index 309ea612..444adb83 100644 --- a/repertory/librepertory/include/file_manager/i_upload_manager.hpp +++ b/repertory/librepertory/include/file_manager/i_upload_manager.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/include/file_manager/open_file.hpp b/repertory/librepertory/include/file_manager/open_file.hpp index 9e2492c0..660eb5f4 100644 --- a/repertory/librepertory/include/file_manager/open_file.hpp +++ b/repertory/librepertory/include/file_manager/open_file.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/include/file_manager/open_file_base.hpp b/repertory/librepertory/include/file_manager/open_file_base.hpp index 6ee82b47..646eb7e4 100644 --- a/repertory/librepertory/include/file_manager/open_file_base.hpp +++ b/repertory/librepertory/include/file_manager/open_file_base.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/include/file_manager/ring_buffer_base.hpp b/repertory/librepertory/include/file_manager/ring_buffer_base.hpp index 99daf491..9a39b10f 100644 --- a/repertory/librepertory/include/file_manager/ring_buffer_base.hpp +++ b/repertory/librepertory/include/file_manager/ring_buffer_base.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/include/file_manager/ring_buffer_open_file.hpp b/repertory/librepertory/include/file_manager/ring_buffer_open_file.hpp index 1a5ceae5..672caca0 100644 --- a/repertory/librepertory/include/file_manager/ring_buffer_open_file.hpp +++ b/repertory/librepertory/include/file_manager/ring_buffer_open_file.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/include/file_manager/upload.hpp b/repertory/librepertory/include/file_manager/upload.hpp index f7a22c8f..d4f3b0f1 100644 --- a/repertory/librepertory/include/file_manager/upload.hpp +++ b/repertory/librepertory/include/file_manager/upload.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/include/platform/platform.hpp b/repertory/librepertory/include/platform/platform.hpp index 99ff62cf..2b12ceef 100644 --- a/repertory/librepertory/include/platform/platform.hpp +++ b/repertory/librepertory/include/platform/platform.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/include/platform/unix_platform.hpp b/repertory/librepertory/include/platform/unix_platform.hpp index 418b132f..02955877 100644 --- a/repertory/librepertory/include/platform/unix_platform.hpp +++ b/repertory/librepertory/include/platform/unix_platform.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/include/platform/win32_platform.hpp b/repertory/librepertory/include/platform/win32_platform.hpp index 15022d69..900d8328 100644 --- a/repertory/librepertory/include/platform/win32_platform.hpp +++ b/repertory/librepertory/include/platform/win32_platform.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/include/providers/base_provider.hpp b/repertory/librepertory/include/providers/base_provider.hpp index 6cd55e97..39d0f18b 100644 --- a/repertory/librepertory/include/providers/base_provider.hpp +++ b/repertory/librepertory/include/providers/base_provider.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/include/providers/encrypt/encrypt_provider.hpp b/repertory/librepertory/include/providers/encrypt/encrypt_provider.hpp index 2a861086..84c81037 100644 --- a/repertory/librepertory/include/providers/encrypt/encrypt_provider.hpp +++ b/repertory/librepertory/include/providers/encrypt/encrypt_provider.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/include/providers/i_provider.hpp b/repertory/librepertory/include/providers/i_provider.hpp index 09cb0463..baedaa6a 100644 --- a/repertory/librepertory/include/providers/i_provider.hpp +++ b/repertory/librepertory/include/providers/i_provider.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/include/providers/provider.hpp b/repertory/librepertory/include/providers/provider.hpp index 28d92fdd..5cd25b32 100644 --- a/repertory/librepertory/include/providers/provider.hpp +++ b/repertory/librepertory/include/providers/provider.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/include/providers/s3/s3_provider.hpp b/repertory/librepertory/include/providers/s3/s3_provider.hpp index 7b49be16..51030dcc 100644 --- a/repertory/librepertory/include/providers/s3/s3_provider.hpp +++ b/repertory/librepertory/include/providers/s3/s3_provider.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/include/providers/sia/sia_provider.hpp b/repertory/librepertory/include/providers/sia/sia_provider.hpp index bdc0e2de..52e007cb 100644 --- a/repertory/librepertory/include/providers/sia/sia_provider.hpp +++ b/repertory/librepertory/include/providers/sia/sia_provider.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/include/rpc/client/client.hpp b/repertory/librepertory/include/rpc/client/client.hpp index baef3fa8..8db553b1 100644 --- a/repertory/librepertory/include/rpc/client/client.hpp +++ b/repertory/librepertory/include/rpc/client/client.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/include/rpc/common.hpp b/repertory/librepertory/include/rpc/common.hpp index bb9a27fc..f4d7ca05 100644 --- a/repertory/librepertory/include/rpc/common.hpp +++ b/repertory/librepertory/include/rpc/common.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/include/rpc/server/full_server.hpp b/repertory/librepertory/include/rpc/server/full_server.hpp index cbe935dc..7094ed18 100644 --- a/repertory/librepertory/include/rpc/server/full_server.hpp +++ b/repertory/librepertory/include/rpc/server/full_server.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/include/rpc/server/server.hpp b/repertory/librepertory/include/rpc/server/server.hpp index 88d09aa0..79675bc5 100644 --- a/repertory/librepertory/include/rpc/server/server.hpp +++ b/repertory/librepertory/include/rpc/server/server.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/include/types/remote.hpp b/repertory/librepertory/include/types/remote.hpp index 69bb5f6a..f72497a9 100644 --- a/repertory/librepertory/include/types/remote.hpp +++ b/repertory/librepertory/include/types/remote.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/include/types/rpc.hpp b/repertory/librepertory/include/types/rpc.hpp index c2da2537..ee01a264 100644 --- a/repertory/librepertory/include/types/rpc.hpp +++ b/repertory/librepertory/include/types/rpc.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/include/types/s3.hpp b/repertory/librepertory/include/types/s3.hpp index f20954eb..f5ab9e2a 100644 --- a/repertory/librepertory/include/types/s3.hpp +++ b/repertory/librepertory/include/types/s3.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/include/types/startup_exception.hpp b/repertory/librepertory/include/types/startup_exception.hpp index 12132a5d..40fccf3e 100644 --- a/repertory/librepertory/include/types/startup_exception.hpp +++ b/repertory/librepertory/include/types/startup_exception.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/include/utils/cli_utils.hpp b/repertory/librepertory/include/utils/cli_utils.hpp index 7029736c..ae31e9ea 100644 --- a/repertory/librepertory/include/utils/cli_utils.hpp +++ b/repertory/librepertory/include/utils/cli_utils.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/include/utils/error_utils.hpp b/repertory/librepertory/include/utils/error_utils.hpp index 8999d4f5..25998d68 100644 --- a/repertory/librepertory/include/utils/error_utils.hpp +++ b/repertory/librepertory/include/utils/error_utils.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/include/utils/file_utils.hpp b/repertory/librepertory/include/utils/file_utils.hpp index 051084ae..6dd0bab4 100644 --- a/repertory/librepertory/include/utils/file_utils.hpp +++ b/repertory/librepertory/include/utils/file_utils.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/include/utils/polling.hpp b/repertory/librepertory/include/utils/polling.hpp index 4813e25c..1d5b3db6 100644 --- a/repertory/librepertory/include/utils/polling.hpp +++ b/repertory/librepertory/include/utils/polling.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/include/utils/single_thread_service_base.hpp b/repertory/librepertory/include/utils/single_thread_service_base.hpp index ebf8f696..5418fbde 100644 --- a/repertory/librepertory/include/utils/single_thread_service_base.hpp +++ b/repertory/librepertory/include/utils/single_thread_service_base.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/include/utils/tasks.hpp b/repertory/librepertory/include/utils/tasks.hpp index 8c97a1b3..296b664b 100644 --- a/repertory/librepertory/include/utils/tasks.hpp +++ b/repertory/librepertory/include/utils/tasks.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/include/utils/unix/unix_utils.hpp b/repertory/librepertory/include/utils/unix/unix_utils.hpp index 7ab195e9..f05fe484 100644 --- a/repertory/librepertory/include/utils/unix/unix_utils.hpp +++ b/repertory/librepertory/include/utils/unix/unix_utils.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/include/utils/utils.hpp b/repertory/librepertory/include/utils/utils.hpp index 8d6c4cc5..491ba49a 100644 --- a/repertory/librepertory/include/utils/utils.hpp +++ b/repertory/librepertory/include/utils/utils.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/include/utils/windows/windows_utils.hpp b/repertory/librepertory/include/utils/windows/windows_utils.hpp index b12395dc..415f0f49 100644 --- a/repertory/librepertory/include/utils/windows/windows_utils.hpp +++ b/repertory/librepertory/include/utils/windows/windows_utils.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/src/app_config.cpp b/repertory/librepertory/src/app_config.cpp index 82cfe700..035f922e 100644 --- a/repertory/librepertory/src/app_config.cpp +++ b/repertory/librepertory/src/app_config.cpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/src/comm/curl/curl_comm.cpp b/repertory/librepertory/src/comm/curl/curl_comm.cpp index 94d46a88..615f203b 100644 --- a/repertory/librepertory/src/comm/curl/curl_comm.cpp +++ b/repertory/librepertory/src/comm/curl/curl_comm.cpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/src/comm/curl/curl_shared.cpp b/repertory/librepertory/src/comm/curl/curl_shared.cpp index de80508b..0bce6e65 100644 --- a/repertory/librepertory/src/comm/curl/curl_shared.cpp +++ b/repertory/librepertory/src/comm/curl/curl_shared.cpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/src/comm/curl/multi_request.cpp b/repertory/librepertory/src/comm/curl/multi_request.cpp index 4dd1c150..d9599bbb 100644 --- a/repertory/librepertory/src/comm/curl/multi_request.cpp +++ b/repertory/librepertory/src/comm/curl/multi_request.cpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/src/comm/curl/requests/http_post.cpp b/repertory/librepertory/src/comm/curl/requests/http_post.cpp index ca052a0a..b50c8d18 100644 --- a/repertory/librepertory/src/comm/curl/requests/http_post.cpp +++ b/repertory/librepertory/src/comm/curl/requests/http_post.cpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/src/comm/curl/requests/http_put_file.cpp b/repertory/librepertory/src/comm/curl/requests/http_put_file.cpp index 40b0cf68..79427a6b 100644 --- a/repertory/librepertory/src/comm/curl/requests/http_put_file.cpp +++ b/repertory/librepertory/src/comm/curl/requests/http_put_file.cpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/src/comm/curl/requests/http_request_base.cpp b/repertory/librepertory/src/comm/curl/requests/http_request_base.cpp index 201b86c7..c24e6372 100644 --- a/repertory/librepertory/src/comm/curl/requests/http_request_base.cpp +++ b/repertory/librepertory/src/comm/curl/requests/http_request_base.cpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/src/comm/packet/client_pool.cpp b/repertory/librepertory/src/comm/packet/client_pool.cpp index b51bc3be..69ab8a6c 100644 --- a/repertory/librepertory/src/comm/packet/client_pool.cpp +++ b/repertory/librepertory/src/comm/packet/client_pool.cpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/src/comm/packet/common.cpp b/repertory/librepertory/src/comm/packet/common.cpp index 9a791b3c..b4cf0f3c 100644 --- a/repertory/librepertory/src/comm/packet/common.cpp +++ b/repertory/librepertory/src/comm/packet/common.cpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/src/comm/packet/packet.cpp b/repertory/librepertory/src/comm/packet/packet.cpp index ad458184..486a1234 100644 --- a/repertory/librepertory/src/comm/packet/packet.cpp +++ b/repertory/librepertory/src/comm/packet/packet.cpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/src/comm/packet/packet_client.cpp b/repertory/librepertory/src/comm/packet/packet_client.cpp index bbe96e04..754ec1d9 100644 --- a/repertory/librepertory/src/comm/packet/packet_client.cpp +++ b/repertory/librepertory/src/comm/packet/packet_client.cpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/src/comm/packet/packet_server.cpp b/repertory/librepertory/src/comm/packet/packet_server.cpp index 1d067cb1..31f9dc01 100644 --- a/repertory/librepertory/src/comm/packet/packet_server.cpp +++ b/repertory/librepertory/src/comm/packet/packet_server.cpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/src/db/file_db.cpp b/repertory/librepertory/src/db/file_db.cpp index 3a346ff5..b5ee409e 100644 --- a/repertory/librepertory/src/db/file_db.cpp +++ b/repertory/librepertory/src/db/file_db.cpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/src/db/file_mgr_db.cpp b/repertory/librepertory/src/db/file_mgr_db.cpp index a231c0f2..9ab93454 100644 --- a/repertory/librepertory/src/db/file_mgr_db.cpp +++ b/repertory/librepertory/src/db/file_mgr_db.cpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/src/db/impl/rdb_file_db.cpp b/repertory/librepertory/src/db/impl/rdb_file_db.cpp index d65d0346..c1a05ce2 100644 --- a/repertory/librepertory/src/db/impl/rdb_file_db.cpp +++ b/repertory/librepertory/src/db/impl/rdb_file_db.cpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/src/db/impl/rdb_file_mgr_db.cpp b/repertory/librepertory/src/db/impl/rdb_file_mgr_db.cpp index 33fe374a..c32b227e 100644 --- a/repertory/librepertory/src/db/impl/rdb_file_mgr_db.cpp +++ b/repertory/librepertory/src/db/impl/rdb_file_mgr_db.cpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/src/db/impl/rdb_meta_db.cpp b/repertory/librepertory/src/db/impl/rdb_meta_db.cpp index b94d8afd..28b791a1 100644 --- a/repertory/librepertory/src/db/impl/rdb_meta_db.cpp +++ b/repertory/librepertory/src/db/impl/rdb_meta_db.cpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/src/db/impl/sqlite_file_db.cpp b/repertory/librepertory/src/db/impl/sqlite_file_db.cpp index a689f0e5..75607c01 100644 --- a/repertory/librepertory/src/db/impl/sqlite_file_db.cpp +++ b/repertory/librepertory/src/db/impl/sqlite_file_db.cpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/src/db/impl/sqlite_file_mgr_db.cpp b/repertory/librepertory/src/db/impl/sqlite_file_mgr_db.cpp index c5105f42..fc1c0112 100644 --- a/repertory/librepertory/src/db/impl/sqlite_file_mgr_db.cpp +++ b/repertory/librepertory/src/db/impl/sqlite_file_mgr_db.cpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/src/db/impl/sqlite_meta_db.cpp b/repertory/librepertory/src/db/impl/sqlite_meta_db.cpp index 9efb87e6..c15c3273 100644 --- a/repertory/librepertory/src/db/impl/sqlite_meta_db.cpp +++ b/repertory/librepertory/src/db/impl/sqlite_meta_db.cpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/src/db/meta_db.cpp b/repertory/librepertory/src/db/meta_db.cpp index 21ce79ec..669c5169 100644 --- a/repertory/librepertory/src/db/meta_db.cpp +++ b/repertory/librepertory/src/db/meta_db.cpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/src/drives/directory_cache.cpp b/repertory/librepertory/src/drives/directory_cache.cpp index 244a569c..582e89c8 100644 --- a/repertory/librepertory/src/drives/directory_cache.cpp +++ b/repertory/librepertory/src/drives/directory_cache.cpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/src/drives/directory_iterator.cpp b/repertory/librepertory/src/drives/directory_iterator.cpp index 0bdee1e7..5adebb49 100644 --- a/repertory/librepertory/src/drives/directory_iterator.cpp +++ b/repertory/librepertory/src/drives/directory_iterator.cpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/src/drives/eviction.cpp b/repertory/librepertory/src/drives/eviction.cpp index 857ccb8e..824887bf 100644 --- a/repertory/librepertory/src/drives/eviction.cpp +++ b/repertory/librepertory/src/drives/eviction.cpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/src/drives/fuse/fuse_base.cpp b/repertory/librepertory/src/drives/fuse/fuse_base.cpp index dff7c241..f895694b 100644 --- a/repertory/librepertory/src/drives/fuse/fuse_base.cpp +++ b/repertory/librepertory/src/drives/fuse/fuse_base.cpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/src/drives/fuse/fuse_drive.cpp b/repertory/librepertory/src/drives/fuse/fuse_drive.cpp index 307b38d7..c63f9eec 100644 --- a/repertory/librepertory/src/drives/fuse/fuse_drive.cpp +++ b/repertory/librepertory/src/drives/fuse/fuse_drive.cpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/src/drives/fuse/fuse_drive_base.cpp b/repertory/librepertory/src/drives/fuse/fuse_drive_base.cpp index 951b58ef..30bd0b5d 100644 --- a/repertory/librepertory/src/drives/fuse/fuse_drive_base.cpp +++ b/repertory/librepertory/src/drives/fuse/fuse_drive_base.cpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/src/drives/fuse/remotefuse/remote_client.cpp b/repertory/librepertory/src/drives/fuse/remotefuse/remote_client.cpp index 7f4953e7..74d44385 100644 --- a/repertory/librepertory/src/drives/fuse/remotefuse/remote_client.cpp +++ b/repertory/librepertory/src/drives/fuse/remotefuse/remote_client.cpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/src/drives/fuse/remotefuse/remote_fuse_drive.cpp b/repertory/librepertory/src/drives/fuse/remotefuse/remote_fuse_drive.cpp index 7476dcb8..25c10223 100644 --- a/repertory/librepertory/src/drives/fuse/remotefuse/remote_fuse_drive.cpp +++ b/repertory/librepertory/src/drives/fuse/remotefuse/remote_fuse_drive.cpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/src/drives/fuse/remotefuse/remote_server.cpp b/repertory/librepertory/src/drives/fuse/remotefuse/remote_server.cpp index 6a08300e..ee9eb71e 100644 --- a/repertory/librepertory/src/drives/fuse/remotefuse/remote_server.cpp +++ b/repertory/librepertory/src/drives/fuse/remotefuse/remote_server.cpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/src/drives/remote/remote_open_file_table.cpp b/repertory/librepertory/src/drives/remote/remote_open_file_table.cpp index be628d01..faf64c39 100644 --- a/repertory/librepertory/src/drives/remote/remote_open_file_table.cpp +++ b/repertory/librepertory/src/drives/remote/remote_open_file_table.cpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/src/drives/winfsp/remotewinfsp/remote_client.cpp b/repertory/librepertory/src/drives/winfsp/remotewinfsp/remote_client.cpp index be2de608..4deae519 100644 --- a/repertory/librepertory/src/drives/winfsp/remotewinfsp/remote_client.cpp +++ b/repertory/librepertory/src/drives/winfsp/remotewinfsp/remote_client.cpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/src/drives/winfsp/remotewinfsp/remote_server.cpp b/repertory/librepertory/src/drives/winfsp/remotewinfsp/remote_server.cpp index dca459c7..df9fef33 100644 --- a/repertory/librepertory/src/drives/winfsp/remotewinfsp/remote_server.cpp +++ b/repertory/librepertory/src/drives/winfsp/remotewinfsp/remote_server.cpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/src/drives/winfsp/remotewinfsp/remote_winfsp_drive.cpp b/repertory/librepertory/src/drives/winfsp/remotewinfsp/remote_winfsp_drive.cpp index 0940f2f6..d3ba1ea6 100644 --- a/repertory/librepertory/src/drives/winfsp/remotewinfsp/remote_winfsp_drive.cpp +++ b/repertory/librepertory/src/drives/winfsp/remotewinfsp/remote_winfsp_drive.cpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/src/drives/winfsp/winfsp_drive.cpp b/repertory/librepertory/src/drives/winfsp/winfsp_drive.cpp index 31ff659a..709c75b2 100644 --- a/repertory/librepertory/src/drives/winfsp/winfsp_drive.cpp +++ b/repertory/librepertory/src/drives/winfsp/winfsp_drive.cpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/src/events/consumers/console_consumer.cpp b/repertory/librepertory/src/events/consumers/console_consumer.cpp index 3e293fe0..b9e37600 100644 --- a/repertory/librepertory/src/events/consumers/console_consumer.cpp +++ b/repertory/librepertory/src/events/consumers/console_consumer.cpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/src/events/consumers/logging_consumer.cpp b/repertory/librepertory/src/events/consumers/logging_consumer.cpp index 2995f0cd..3e24239a 100644 --- a/repertory/librepertory/src/events/consumers/logging_consumer.cpp +++ b/repertory/librepertory/src/events/consumers/logging_consumer.cpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/src/events/event_system.cpp b/repertory/librepertory/src/events/event_system.cpp index efcc4b7e..d52dad9e 100644 --- a/repertory/librepertory/src/events/event_system.cpp +++ b/repertory/librepertory/src/events/event_system.cpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/src/file_manager/cache_size_mgr.cpp b/repertory/librepertory/src/file_manager/cache_size_mgr.cpp index 976b2fd8..d29f0f4f 100644 --- a/repertory/librepertory/src/file_manager/cache_size_mgr.cpp +++ b/repertory/librepertory/src/file_manager/cache_size_mgr.cpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/src/file_manager/direct_open_file.cpp b/repertory/librepertory/src/file_manager/direct_open_file.cpp index f48fb35e..6f05e224 100644 --- a/repertory/librepertory/src/file_manager/direct_open_file.cpp +++ b/repertory/librepertory/src/file_manager/direct_open_file.cpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/src/file_manager/file_manager.cpp b/repertory/librepertory/src/file_manager/file_manager.cpp index c46326a9..f7f75312 100644 --- a/repertory/librepertory/src/file_manager/file_manager.cpp +++ b/repertory/librepertory/src/file_manager/file_manager.cpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/src/file_manager/open_file.cpp b/repertory/librepertory/src/file_manager/open_file.cpp index beaea559..1fb8ed4f 100644 --- a/repertory/librepertory/src/file_manager/open_file.cpp +++ b/repertory/librepertory/src/file_manager/open_file.cpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/src/file_manager/open_file_base.cpp b/repertory/librepertory/src/file_manager/open_file_base.cpp index a8b368aa..79f4966e 100644 --- a/repertory/librepertory/src/file_manager/open_file_base.cpp +++ b/repertory/librepertory/src/file_manager/open_file_base.cpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/src/file_manager/ring_buffer_base.cpp b/repertory/librepertory/src/file_manager/ring_buffer_base.cpp index 0b0eaaf4..503daa90 100644 --- a/repertory/librepertory/src/file_manager/ring_buffer_base.cpp +++ b/repertory/librepertory/src/file_manager/ring_buffer_base.cpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/src/file_manager/ring_buffer_open_file.cpp b/repertory/librepertory/src/file_manager/ring_buffer_open_file.cpp index e8b866f5..c01766b9 100644 --- a/repertory/librepertory/src/file_manager/ring_buffer_open_file.cpp +++ b/repertory/librepertory/src/file_manager/ring_buffer_open_file.cpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/src/file_manager/upload.cpp b/repertory/librepertory/src/file_manager/upload.cpp index 77433627..d919a3e6 100644 --- a/repertory/librepertory/src/file_manager/upload.cpp +++ b/repertory/librepertory/src/file_manager/upload.cpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/src/initialize.cpp b/repertory/librepertory/src/initialize.cpp index 1332c2c3..00a17c46 100644 --- a/repertory/librepertory/src/initialize.cpp +++ b/repertory/librepertory/src/initialize.cpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/src/platform/unix_platform.cpp b/repertory/librepertory/src/platform/unix_platform.cpp index ae566156..90892e71 100644 --- a/repertory/librepertory/src/platform/unix_platform.cpp +++ b/repertory/librepertory/src/platform/unix_platform.cpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/src/platform/win32_platform.cpp b/repertory/librepertory/src/platform/win32_platform.cpp index 6a8a20da..c4354364 100644 --- a/repertory/librepertory/src/platform/win32_platform.cpp +++ b/repertory/librepertory/src/platform/win32_platform.cpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/src/providers/base_provider.cpp b/repertory/librepertory/src/providers/base_provider.cpp index 2bc01bff..f366e885 100644 --- a/repertory/librepertory/src/providers/base_provider.cpp +++ b/repertory/librepertory/src/providers/base_provider.cpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/src/providers/encrypt/encrypt_provider.cpp b/repertory/librepertory/src/providers/encrypt/encrypt_provider.cpp index f6f4b038..9e701d27 100644 --- a/repertory/librepertory/src/providers/encrypt/encrypt_provider.cpp +++ b/repertory/librepertory/src/providers/encrypt/encrypt_provider.cpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/src/providers/provider.cpp b/repertory/librepertory/src/providers/provider.cpp index 559feb06..f991be31 100644 --- a/repertory/librepertory/src/providers/provider.cpp +++ b/repertory/librepertory/src/providers/provider.cpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/src/providers/s3/s3_provider.cpp b/repertory/librepertory/src/providers/s3/s3_provider.cpp index 8e9c8c42..9fa09861 100644 --- a/repertory/librepertory/src/providers/s3/s3_provider.cpp +++ b/repertory/librepertory/src/providers/s3/s3_provider.cpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/src/providers/sia/sia_provider.cpp b/repertory/librepertory/src/providers/sia/sia_provider.cpp index 3292d0e3..1f431622 100644 --- a/repertory/librepertory/src/providers/sia/sia_provider.cpp +++ b/repertory/librepertory/src/providers/sia/sia_provider.cpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/src/rpc/client/client.cpp b/repertory/librepertory/src/rpc/client/client.cpp index fef5b65a..ece374ec 100644 --- a/repertory/librepertory/src/rpc/client/client.cpp +++ b/repertory/librepertory/src/rpc/client/client.cpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/src/rpc/server/full_server.cpp b/repertory/librepertory/src/rpc/server/full_server.cpp index 90473e61..e41ce27f 100644 --- a/repertory/librepertory/src/rpc/server/full_server.cpp +++ b/repertory/librepertory/src/rpc/server/full_server.cpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/src/rpc/server/server.cpp b/repertory/librepertory/src/rpc/server/server.cpp index 2c5aaa2b..3ea1fa22 100644 --- a/repertory/librepertory/src/rpc/server/server.cpp +++ b/repertory/librepertory/src/rpc/server/server.cpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/src/types/remote.cpp b/repertory/librepertory/src/types/remote.cpp index 71809886..7c44021d 100644 --- a/repertory/librepertory/src/types/remote.cpp +++ b/repertory/librepertory/src/types/remote.cpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/src/types/repertory.cpp b/repertory/librepertory/src/types/repertory.cpp index f22fc787..a467b5cb 100644 --- a/repertory/librepertory/src/types/repertory.cpp +++ b/repertory/librepertory/src/types/repertory.cpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/src/utils/cli_utils.cpp b/repertory/librepertory/src/utils/cli_utils.cpp index 3fb06330..e313593d 100644 --- a/repertory/librepertory/src/utils/cli_utils.cpp +++ b/repertory/librepertory/src/utils/cli_utils.cpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/src/utils/error_utils.cpp b/repertory/librepertory/src/utils/error_utils.cpp index ce128f7e..4deb99c5 100644 --- a/repertory/librepertory/src/utils/error_utils.cpp +++ b/repertory/librepertory/src/utils/error_utils.cpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/src/utils/file_utils.cpp b/repertory/librepertory/src/utils/file_utils.cpp index e1dc7f62..4be2c5bf 100644 --- a/repertory/librepertory/src/utils/file_utils.cpp +++ b/repertory/librepertory/src/utils/file_utils.cpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/src/utils/platform.cpp b/repertory/librepertory/src/utils/platform.cpp index fc497d3b..c9bb5e6f 100644 --- a/repertory/librepertory/src/utils/platform.cpp +++ b/repertory/librepertory/src/utils/platform.cpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/src/utils/polling.cpp b/repertory/librepertory/src/utils/polling.cpp index 295da206..1326b636 100644 --- a/repertory/librepertory/src/utils/polling.cpp +++ b/repertory/librepertory/src/utils/polling.cpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/src/utils/single_thread_service_base.cpp b/repertory/librepertory/src/utils/single_thread_service_base.cpp index 47da2fd6..7150afff 100644 --- a/repertory/librepertory/src/utils/single_thread_service_base.cpp +++ b/repertory/librepertory/src/utils/single_thread_service_base.cpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/src/utils/tasks.cpp b/repertory/librepertory/src/utils/tasks.cpp index 060c6399..4a631454 100644 --- a/repertory/librepertory/src/utils/tasks.cpp +++ b/repertory/librepertory/src/utils/tasks.cpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/src/utils/unix/unix_utils.cpp b/repertory/librepertory/src/utils/unix/unix_utils.cpp index 16230dfe..31a9416d 100644 --- a/repertory/librepertory/src/utils/unix/unix_utils.cpp +++ b/repertory/librepertory/src/utils/unix/unix_utils.cpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/src/utils/utils.cpp b/repertory/librepertory/src/utils/utils.cpp index d148965b..fede8c8e 100644 --- a/repertory/librepertory/src/utils/utils.cpp +++ b/repertory/librepertory/src/utils/utils.cpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/librepertory/src/utils/windows/windows_utils.cpp b/repertory/librepertory/src/utils/windows/windows_utils.cpp index 21e89732..1ad3eae5 100644 --- a/repertory/librepertory/src/utils/windows/windows_utils.cpp +++ b/repertory/librepertory/src/utils/windows/windows_utils.cpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/repertory/include/cli/actions.hpp b/repertory/repertory/include/cli/actions.hpp index 7a7424af..3f8a9506 100644 --- a/repertory/repertory/include/cli/actions.hpp +++ b/repertory/repertory/include/cli/actions.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/repertory/include/cli/check_version.hpp b/repertory/repertory/include/cli/check_version.hpp index e693c6e8..b5f331dd 100644 --- a/repertory/repertory/include/cli/check_version.hpp +++ b/repertory/repertory/include/cli/check_version.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/repertory/include/cli/common.hpp b/repertory/repertory/include/cli/common.hpp index d6ecbbb5..573fdd43 100644 --- a/repertory/repertory/include/cli/common.hpp +++ b/repertory/repertory/include/cli/common.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/repertory/include/cli/display_config.hpp b/repertory/repertory/include/cli/display_config.hpp index 03e69b64..4d255588 100644 --- a/repertory/repertory/include/cli/display_config.hpp +++ b/repertory/repertory/include/cli/display_config.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/repertory/include/cli/drive_information.hpp b/repertory/repertory/include/cli/drive_information.hpp index 283737c1..e035c35b 100644 --- a/repertory/repertory/include/cli/drive_information.hpp +++ b/repertory/repertory/include/cli/drive_information.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/repertory/include/cli/get.hpp b/repertory/repertory/include/cli/get.hpp index 73e1a55d..e7713512 100644 --- a/repertory/repertory/include/cli/get.hpp +++ b/repertory/repertory/include/cli/get.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/repertory/include/cli/get_directory_items.hpp b/repertory/repertory/include/cli/get_directory_items.hpp index e5d733d7..feeb71e9 100644 --- a/repertory/repertory/include/cli/get_directory_items.hpp +++ b/repertory/repertory/include/cli/get_directory_items.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/repertory/include/cli/get_item_info.hpp b/repertory/repertory/include/cli/get_item_info.hpp index 9c30a1c6..66045fab 100644 --- a/repertory/repertory/include/cli/get_item_info.hpp +++ b/repertory/repertory/include/cli/get_item_info.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/repertory/include/cli/get_pinned_files.hpp b/repertory/repertory/include/cli/get_pinned_files.hpp index 0f7b68e1..6249f122 100644 --- a/repertory/repertory/include/cli/get_pinned_files.hpp +++ b/repertory/repertory/include/cli/get_pinned_files.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/repertory/include/cli/get_version.hpp b/repertory/repertory/include/cli/get_version.hpp index 1c1eac10..f6a2b0ba 100644 --- a/repertory/repertory/include/cli/get_version.hpp +++ b/repertory/repertory/include/cli/get_version.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/repertory/include/cli/help.hpp b/repertory/repertory/include/cli/help.hpp index c7ff1429..94644822 100644 --- a/repertory/repertory/include/cli/help.hpp +++ b/repertory/repertory/include/cli/help.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/repertory/include/cli/mount.hpp b/repertory/repertory/include/cli/mount.hpp index d159ab47..19398597 100644 --- a/repertory/repertory/include/cli/mount.hpp +++ b/repertory/repertory/include/cli/mount.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/repertory/include/cli/open_files.hpp b/repertory/repertory/include/cli/open_files.hpp index cce3499a..e3c49fef 100644 --- a/repertory/repertory/include/cli/open_files.hpp +++ b/repertory/repertory/include/cli/open_files.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/repertory/include/cli/pin_file.hpp b/repertory/repertory/include/cli/pin_file.hpp index c9aa0921..bb592f51 100644 --- a/repertory/repertory/include/cli/pin_file.hpp +++ b/repertory/repertory/include/cli/pin_file.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/repertory/include/cli/pinned_status.hpp b/repertory/repertory/include/cli/pinned_status.hpp index e7628467..6b95ebe6 100644 --- a/repertory/repertory/include/cli/pinned_status.hpp +++ b/repertory/repertory/include/cli/pinned_status.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/repertory/include/cli/remove.hpp b/repertory/repertory/include/cli/remove.hpp index cd393418..a110ba53 100644 --- a/repertory/repertory/include/cli/remove.hpp +++ b/repertory/repertory/include/cli/remove.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/repertory/include/cli/set.hpp b/repertory/repertory/include/cli/set.hpp index 23e3bcf2..7bca82f9 100644 --- a/repertory/repertory/include/cli/set.hpp +++ b/repertory/repertory/include/cli/set.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/repertory/include/cli/status.hpp b/repertory/repertory/include/cli/status.hpp index 8a95cd85..72517913 100644 --- a/repertory/repertory/include/cli/status.hpp +++ b/repertory/repertory/include/cli/status.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/repertory/include/cli/test.hpp b/repertory/repertory/include/cli/test.hpp index 83e3455d..6b8e5ea8 100644 --- a/repertory/repertory/include/cli/test.hpp +++ b/repertory/repertory/include/cli/test.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/repertory/include/cli/unmount.hpp b/repertory/repertory/include/cli/unmount.hpp index 6f454f14..f73d057b 100644 --- a/repertory/repertory/include/cli/unmount.hpp +++ b/repertory/repertory/include/cli/unmount.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/repertory/include/cli/unpin_file.hpp b/repertory/repertory/include/cli/unpin_file.hpp index 2de8034e..a9a192f5 100644 --- a/repertory/repertory/include/cli/unpin_file.hpp +++ b/repertory/repertory/include/cli/unpin_file.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/repertory/include/ui/mgmt_app_config.hpp b/repertory/repertory/include/ui/mgmt_app_config.hpp index cfdd9a88..cf604886 100644 --- a/repertory/repertory/include/ui/mgmt_app_config.hpp +++ b/repertory/repertory/include/ui/mgmt_app_config.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/repertory/include/ui/ui_main.hpp b/repertory/repertory/include/ui/ui_main.hpp index efc68203..69e2e228 100644 --- a/repertory/repertory/include/ui/ui_main.hpp +++ b/repertory/repertory/include/ui/ui_main.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/repertory/include/ui/ui_server.hpp b/repertory/repertory/include/ui/ui_server.hpp index 0d489988..e7fa5b2c 100644 --- a/repertory/repertory/include/ui/ui_server.hpp +++ b/repertory/repertory/include/ui/ui_server.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/repertory/main.cpp b/repertory/repertory/main.cpp index e851b70a..4498249f 100644 --- a/repertory/repertory/main.cpp +++ b/repertory/repertory/main.cpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/repertory/src/ui/mgmt_app_config.cpp b/repertory/repertory/src/ui/mgmt_app_config.cpp index 5a4f4f58..82d99b8b 100644 --- a/repertory/repertory/src/ui/mgmt_app_config.cpp +++ b/repertory/repertory/src/ui/mgmt_app_config.cpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/repertory/src/ui/ui_main.cpp b/repertory/repertory/src/ui/ui_main.cpp index 2ad24fda..7be301e8 100644 --- a/repertory/repertory/src/ui/ui_main.cpp +++ b/repertory/repertory/src/ui/ui_main.cpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/repertory/src/ui/ui_server.cpp b/repertory/repertory/src/ui/ui_server.cpp index fa188014..f6affe83 100644 --- a/repertory/repertory/src/ui/ui_server.cpp +++ b/repertory/repertory/src/ui/ui_server.cpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/repertory_test/include/fixtures/drive_fixture.hpp b/repertory/repertory_test/include/fixtures/drive_fixture.hpp index 7efcf431..6deb5075 100644 --- a/repertory/repertory_test/include/fixtures/drive_fixture.hpp +++ b/repertory/repertory_test/include/fixtures/drive_fixture.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/repertory_test/include/fixtures/file_db_fixture.hpp b/repertory/repertory_test/include/fixtures/file_db_fixture.hpp index d18e79f1..b1dd606e 100644 --- a/repertory/repertory_test/include/fixtures/file_db_fixture.hpp +++ b/repertory/repertory_test/include/fixtures/file_db_fixture.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/repertory_test/include/fixtures/file_mgr_db_fixture.hpp b/repertory/repertory_test/include/fixtures/file_mgr_db_fixture.hpp index 0e70f18b..b6c2f33d 100644 --- a/repertory/repertory_test/include/fixtures/file_mgr_db_fixture.hpp +++ b/repertory/repertory_test/include/fixtures/file_mgr_db_fixture.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/repertory_test/include/fixtures/meta_db_fixture.hpp b/repertory/repertory_test/include/fixtures/meta_db_fixture.hpp index 0ecef279..b0549469 100644 --- a/repertory/repertory_test/include/fixtures/meta_db_fixture.hpp +++ b/repertory/repertory_test/include/fixtures/meta_db_fixture.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/repertory_test/include/fixtures/providers_fixture.hpp b/repertory/repertory_test/include/fixtures/providers_fixture.hpp index fea401fc..855066e9 100644 --- a/repertory/repertory_test/include/fixtures/providers_fixture.hpp +++ b/repertory/repertory_test/include/fixtures/providers_fixture.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/repertory_test/include/mocks/mock_fuse_drive.hpp b/repertory/repertory_test/include/mocks/mock_fuse_drive.hpp index 837e9547..9a1f9732 100644 --- a/repertory/repertory_test/include/mocks/mock_fuse_drive.hpp +++ b/repertory/repertory_test/include/mocks/mock_fuse_drive.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/repertory_test/include/mocks/mock_open_file.hpp b/repertory/repertory_test/include/mocks/mock_open_file.hpp index 6b889365..54b440c6 100644 --- a/repertory/repertory_test/include/mocks/mock_open_file.hpp +++ b/repertory/repertory_test/include/mocks/mock_open_file.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/repertory_test/include/mocks/mock_provider.hpp b/repertory/repertory_test/include/mocks/mock_provider.hpp index c85fd079..6120d986 100644 --- a/repertory/repertory_test/include/mocks/mock_provider.hpp +++ b/repertory/repertory_test/include/mocks/mock_provider.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/repertory_test/include/mocks/mock_upload_manager.hpp b/repertory/repertory_test/include/mocks/mock_upload_manager.hpp index 91471e48..a42a61f5 100644 --- a/repertory/repertory_test/include/mocks/mock_upload_manager.hpp +++ b/repertory/repertory_test/include/mocks/mock_upload_manager.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/repertory_test/include/mocks/mock_winfsp_drive.hpp b/repertory/repertory_test/include/mocks/mock_winfsp_drive.hpp index c14ce48c..cd74be75 100644 --- a/repertory/repertory_test/include/mocks/mock_winfsp_drive.hpp +++ b/repertory/repertory_test/include/mocks/mock_winfsp_drive.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/repertory_test/include/test_common.hpp b/repertory/repertory_test/include/test_common.hpp index c792396f..b02907ec 100644 --- a/repertory/repertory_test/include/test_common.hpp +++ b/repertory/repertory_test/include/test_common.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/repertory_test/include/utils/event_capture.hpp b/repertory/repertory_test/include/utils/event_capture.hpp index 63db5eec..f23d871f 100644 --- a/repertory/repertory_test/include/utils/event_capture.hpp +++ b/repertory/repertory_test/include/utils/event_capture.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/repertory_test/main.cpp b/repertory/repertory_test/main.cpp index f7d6a633..63675be7 100644 --- a/repertory/repertory_test/main.cpp +++ b/repertory/repertory_test/main.cpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/repertory_test/src/app_config_test.cpp b/repertory/repertory_test/src/app_config_test.cpp index 8a9688aa..ab2dddd9 100644 --- a/repertory/repertory_test/src/app_config_test.cpp +++ b/repertory/repertory_test/src/app_config_test.cpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/repertory_test/src/clean_json_test.cpp b/repertory/repertory_test/src/clean_json_test.cpp index 4343ec15..be2887cc 100644 --- a/repertory/repertory_test/src/clean_json_test.cpp +++ b/repertory/repertory_test/src/clean_json_test.cpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/repertory_test/src/client_pool_test.cpp b/repertory/repertory_test/src/client_pool_test.cpp index 59d217c5..9dcab6a5 100644 --- a/repertory/repertory_test/src/client_pool_test.cpp +++ b/repertory/repertory_test/src/client_pool_test.cpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/repertory_test/src/curl_comm_test.cpp b/repertory/repertory_test/src/curl_comm_test.cpp index 2ab8ba1e..b3fb844c 100644 --- a/repertory/repertory_test/src/curl_comm_test.cpp +++ b/repertory/repertory_test/src/curl_comm_test.cpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/repertory_test/src/direct_open_file_test.cpp b/repertory/repertory_test/src/direct_open_file_test.cpp index c858c8c6..49b361e6 100644 --- a/repertory/repertory_test/src/direct_open_file_test.cpp +++ b/repertory/repertory_test/src/direct_open_file_test.cpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> ... */ #include "test_common.hpp" diff --git a/repertory/repertory_test/src/file_db_test.cpp b/repertory/repertory_test/src/file_db_test.cpp index 75b3d12e..d6c3b76d 100644 --- a/repertory/repertory_test/src/file_db_test.cpp +++ b/repertory/repertory_test/src/file_db_test.cpp @@ -1,5 +1,5 @@ // /* -// Copyright <2018-2025> +// Copyright <2018-2026> // // Permission is hereby granted, free of charge, to any person obtaining a // copy of this software and associated documentation files (the "Software"), diff --git a/repertory/repertory_test/src/file_manager_test.cpp b/repertory/repertory_test/src/file_manager_test.cpp index 70c87b6d..742233b6 100644 --- a/repertory/repertory_test/src/file_manager_test.cpp +++ b/repertory/repertory_test/src/file_manager_test.cpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/repertory_test/src/file_mgr_db_test.cpp b/repertory/repertory_test/src/file_mgr_db_test.cpp index a891d2af..07fd4ab8 100644 --- a/repertory/repertory_test/src/file_mgr_db_test.cpp +++ b/repertory/repertory_test/src/file_mgr_db_test.cpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/repertory_test/src/fuse_drive_access_test.cpp b/repertory/repertory_test/src/fuse_drive_access_test.cpp index e067e661..bed256df 100644 --- a/repertory/repertory_test/src/fuse_drive_access_test.cpp +++ b/repertory/repertory_test/src/fuse_drive_access_test.cpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/repertory_test/src/fuse_drive_chmod_test.cpp b/repertory/repertory_test/src/fuse_drive_chmod_test.cpp index aa143a62..2067d67f 100644 --- a/repertory/repertory_test/src/fuse_drive_chmod_test.cpp +++ b/repertory/repertory_test/src/fuse_drive_chmod_test.cpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/repertory_test/src/fuse_drive_chown_test.cpp b/repertory/repertory_test/src/fuse_drive_chown_test.cpp index 0c2aac85..b4bce119 100644 --- a/repertory/repertory_test/src/fuse_drive_chown_test.cpp +++ b/repertory/repertory_test/src/fuse_drive_chown_test.cpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/repertory_test/src/fuse_drive_create_and_open_test.cpp b/repertory/repertory_test/src/fuse_drive_create_and_open_test.cpp index 02b349c8..62e1c4cc 100644 --- a/repertory/repertory_test/src/fuse_drive_create_and_open_test.cpp +++ b/repertory/repertory_test/src/fuse_drive_create_and_open_test.cpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/repertory_test/src/fuse_drive_directory_test.cpp b/repertory/repertory_test/src/fuse_drive_directory_test.cpp index aac7620a..8dc73038 100644 --- a/repertory/repertory_test/src/fuse_drive_directory_test.cpp +++ b/repertory/repertory_test/src/fuse_drive_directory_test.cpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/repertory_test/src/fuse_drive_fallocate_test.cpp b/repertory/repertory_test/src/fuse_drive_fallocate_test.cpp index e328ac13..d4eed237 100644 --- a/repertory/repertory_test/src/fuse_drive_fallocate_test.cpp +++ b/repertory/repertory_test/src/fuse_drive_fallocate_test.cpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/repertory_test/src/fuse_drive_fsync_test.cpp b/repertory/repertory_test/src/fuse_drive_fsync_test.cpp index fd86ea71..a6cba28e 100644 --- a/repertory/repertory_test/src/fuse_drive_fsync_test.cpp +++ b/repertory/repertory_test/src/fuse_drive_fsync_test.cpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/repertory_test/src/fuse_drive_getattr_fgetattr_test.cpp b/repertory/repertory_test/src/fuse_drive_getattr_fgetattr_test.cpp index 1bf50c4e..1e159e49 100644 --- a/repertory/repertory_test/src/fuse_drive_getattr_fgetattr_test.cpp +++ b/repertory/repertory_test/src/fuse_drive_getattr_fgetattr_test.cpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/repertory_test/src/fuse_drive_misc_test.cpp b/repertory/repertory_test/src/fuse_drive_misc_test.cpp index 15290035..9fd2d247 100644 --- a/repertory/repertory_test/src/fuse_drive_misc_test.cpp +++ b/repertory/repertory_test/src/fuse_drive_misc_test.cpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/repertory_test/src/fuse_drive_rdrw_test.cpp b/repertory/repertory_test/src/fuse_drive_rdrw_test.cpp index af832a36..d1767cc9 100644 --- a/repertory/repertory_test/src/fuse_drive_rdrw_test.cpp +++ b/repertory/repertory_test/src/fuse_drive_rdrw_test.cpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/repertory_test/src/fuse_drive_rename_test.cpp b/repertory/repertory_test/src/fuse_drive_rename_test.cpp index 9be3db5d..909ccc06 100644 --- a/repertory/repertory_test/src/fuse_drive_rename_test.cpp +++ b/repertory/repertory_test/src/fuse_drive_rename_test.cpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/repertory_test/src/fuse_drive_truncate_ftruncate_test.cpp b/repertory/repertory_test/src/fuse_drive_truncate_ftruncate_test.cpp index 3a7bcdff..c399ef72 100644 --- a/repertory/repertory_test/src/fuse_drive_truncate_ftruncate_test.cpp +++ b/repertory/repertory_test/src/fuse_drive_truncate_ftruncate_test.cpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/repertory_test/src/fuse_drive_unlink_test.cpp b/repertory/repertory_test/src/fuse_drive_unlink_test.cpp index e4bda44c..eac6da27 100644 --- a/repertory/repertory_test/src/fuse_drive_unlink_test.cpp +++ b/repertory/repertory_test/src/fuse_drive_unlink_test.cpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/repertory_test/src/fuse_drive_utimens_futimens_test.cpp b/repertory/repertory_test/src/fuse_drive_utimens_futimens_test.cpp index 02bacd94..44d0034e 100644 --- a/repertory/repertory_test/src/fuse_drive_utimens_futimens_test.cpp +++ b/repertory/repertory_test/src/fuse_drive_utimens_futimens_test.cpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/repertory_test/src/json_serialize_test.cpp b/repertory/repertory_test/src/json_serialize_test.cpp index c240b214..40e28142 100644 --- a/repertory/repertory_test/src/json_serialize_test.cpp +++ b/repertory/repertory_test/src/json_serialize_test.cpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/repertory_test/src/lock_data_test.cpp b/repertory/repertory_test/src/lock_data_test.cpp index 38af6c62..014a334d 100644 --- a/repertory/repertory_test/src/lock_data_test.cpp +++ b/repertory/repertory_test/src/lock_data_test.cpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/repertory_test/src/meta_db_test.cpp b/repertory/repertory_test/src/meta_db_test.cpp index 0c1f32ad..4314eba2 100644 --- a/repertory/repertory_test/src/meta_db_test.cpp +++ b/repertory/repertory_test/src/meta_db_test.cpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/repertory_test/src/open_file_test.cpp b/repertory/repertory_test/src/open_file_test.cpp index 9d204169..5cd70fc4 100644 --- a/repertory/repertory_test/src/open_file_test.cpp +++ b/repertory/repertory_test/src/open_file_test.cpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/repertory_test/src/packet_client_test.cpp b/repertory/repertory_test/src/packet_client_test.cpp index 7651fafe..98dc33e4 100644 --- a/repertory/repertory_test/src/packet_client_test.cpp +++ b/repertory/repertory_test/src/packet_client_test.cpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/repertory_test/src/packet_comm_common_test.cpp b/repertory/repertory_test/src/packet_comm_common_test.cpp index 009b730d..1ae4282d 100644 --- a/repertory/repertory_test/src/packet_comm_common_test.cpp +++ b/repertory/repertory_test/src/packet_comm_common_test.cpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/repertory_test/src/packet_test.cpp b/repertory/repertory_test/src/packet_test.cpp index 4c8bbd70..437c6855 100644 --- a/repertory/repertory_test/src/packet_test.cpp +++ b/repertory/repertory_test/src/packet_test.cpp @@ -1,4 +1,4 @@ -/* Copyright <2018-2025> +/* Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights diff --git a/repertory/repertory_test/src/providers_test.cpp b/repertory/repertory_test/src/providers_test.cpp index 4e151086..8c716f65 100644 --- a/repertory/repertory_test/src/providers_test.cpp +++ b/repertory/repertory_test/src/providers_test.cpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/repertory_test/src/ring_buffer_open_file_test.cpp b/repertory/repertory_test/src/ring_buffer_open_file_test.cpp index 0a125de7..132234d9 100644 --- a/repertory/repertory_test/src/ring_buffer_open_file_test.cpp +++ b/repertory/repertory_test/src/ring_buffer_open_file_test.cpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/repertory_test/src/upload_test.cpp b/repertory/repertory_test/src/upload_test.cpp index b23fb6d3..b175f0b9 100644 --- a/repertory/repertory_test/src/upload_test.cpp +++ b/repertory/repertory_test/src/upload_test.cpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/repertory_test/src/utils_test.cpp b/repertory/repertory_test/src/utils_test.cpp index f95c3629..adf41744 100644 --- a/repertory/repertory_test/src/utils_test.cpp +++ b/repertory/repertory_test/src/utils_test.cpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/repertory_test/src/winfsp_drive_create_attr_test.cpp b/repertory/repertory_test/src/winfsp_drive_create_attr_test.cpp index 53c98890..a5dc4ee3 100644 --- a/repertory/repertory_test/src/winfsp_drive_create_attr_test.cpp +++ b/repertory/repertory_test/src/winfsp_drive_create_attr_test.cpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/repertory_test/src/winfsp_drive_create_nl_test.cpp b/repertory/repertory_test/src/winfsp_drive_create_nl_test.cpp index 9ed6e779..01ed0e88 100644 --- a/repertory/repertory_test/src/winfsp_drive_create_nl_test.cpp +++ b/repertory/repertory_test/src/winfsp_drive_create_nl_test.cpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/repertory_test/src/winfsp_drive_create_test.cpp b/repertory/repertory_test/src/winfsp_drive_create_test.cpp index 0d88caef..32c32fb4 100644 --- a/repertory/repertory_test/src/winfsp_drive_create_test.cpp +++ b/repertory/repertory_test/src/winfsp_drive_create_test.cpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/repertory_test/src/winfsp_drive_delete_test.cpp b/repertory/repertory_test/src/winfsp_drive_delete_test.cpp index bcf6d242..3c37b7f5 100644 --- a/repertory/repertory_test/src/winfsp_drive_delete_test.cpp +++ b/repertory/repertory_test/src/winfsp_drive_delete_test.cpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/repertory_test/src/winfsp_drive_info_test.cpp b/repertory/repertory_test/src/winfsp_drive_info_test.cpp index c7f9b658..b5d9405e 100644 --- a/repertory/repertory_test/src/winfsp_drive_info_test.cpp +++ b/repertory/repertory_test/src/winfsp_drive_info_test.cpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/repertory_test/src/winfsp_drive_rdrw_test.cpp b/repertory/repertory_test/src/winfsp_drive_rdrw_test.cpp index b0f2524b..0abe983a 100644 --- a/repertory/repertory_test/src/winfsp_drive_rdrw_test.cpp +++ b/repertory/repertory_test/src/winfsp_drive_rdrw_test.cpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/repertory_test/src/winfsp_drive_rename_test.cpp b/repertory/repertory_test/src/winfsp_drive_rename_test.cpp index c983de87..be335d48 100644 --- a/repertory/repertory_test/src/winfsp_drive_rename_test.cpp +++ b/repertory/repertory_test/src/winfsp_drive_rename_test.cpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/repertory_test/src/winfsp_drive_test.cpp b/repertory/repertory_test/src/winfsp_drive_test.cpp index 1061b3a7..a61f1d38 100644 --- a/repertory/repertory_test/src/winfsp_drive_test.cpp +++ b/repertory/repertory_test/src/winfsp_drive_test.cpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/repertory/repertory_test/src/winfsp_drive_volume_test.cpp b/repertory/repertory_test/src/winfsp_drive_volume_test.cpp index 1a99e75e..25774f40 100644 --- a/repertory/repertory_test/src/winfsp_drive_volume_test.cpp +++ b/repertory/repertory_test/src/winfsp_drive_volume_test.cpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/scripts/run_tests.sh b/scripts/run_tests.sh index 4f2483fa..e59581d0 100755 --- a/scripts/run_tests.sh +++ b/scripts/run_tests.sh @@ -5,15 +5,14 @@ PROJECT_SCRIPTS_DIR=$(dirname "${PROJECT_SCRIPTS_DIR}") . "${PROJECT_SCRIPTS_DIR}/env.sh" "$1" "$2" "$3" "$4" "$5" 0 pushd "${PROJECT_DIST_DIR}" -if [ -e "./${PROJECT_NAME}_test${PROJECT_APP_BINARY_EXT}" ]; then - for APP in ${PROJECT_APP_LIST[@]}; do - if [[ "$APP" == *_test ]]; then - if [ "${PROJECT_IS_MINGW_UNIX}" == "1" ]; then - wine64 "${PROJECT_DIST_DIR}/${PROJECT_NAME}_test${PROJECT_APP_BINARY_EXT}" || exit 1 - else - "./${PROJECT_NAME}_test${PROJECT_APP_BINARY_EXT}" || exit 1 - fi +for APP in ${PROJECT_APP_LIST[@]}; do + APP_BIN="${APP}_test${PROJECT_APP_BINARY_EXT}" + if [ -e "./${APP_BIN}" ]; then + if [ "${PROJECT_IS_MINGW_UNIX}" == "1" ]; then + wine64 "${PROJECT_DIST_DIR}/${APP_BIN}" || exit 1 + else + "./${APP_BIN}" || exit 1 fi - done -fi + fi +done popd diff --git a/support/3rd_party/winfsp-2.1/bin/fsptool-a64.exe b/support/3rd_party/winfsp-2.1/bin/fsptool-a64.exe index c8065631..e51e0cf6 100644 Binary files a/support/3rd_party/winfsp-2.1/bin/fsptool-a64.exe and b/support/3rd_party/winfsp-2.1/bin/fsptool-a64.exe differ diff --git a/support/3rd_party/winfsp-2.1/bin/fsptool-x64.exe b/support/3rd_party/winfsp-2.1/bin/fsptool-x64.exe index 56fafd7b..c536759a 100644 Binary files a/support/3rd_party/winfsp-2.1/bin/fsptool-x64.exe and b/support/3rd_party/winfsp-2.1/bin/fsptool-x64.exe differ diff --git a/support/3rd_party/winfsp-2.1/bin/fsptool-x86.exe b/support/3rd_party/winfsp-2.1/bin/fsptool-x86.exe index a18c7307..5f218ed9 100644 Binary files a/support/3rd_party/winfsp-2.1/bin/fsptool-x86.exe and b/support/3rd_party/winfsp-2.1/bin/fsptool-x86.exe differ diff --git a/support/3rd_party/winfsp-2.1/bin/launchctl-a64.exe b/support/3rd_party/winfsp-2.1/bin/launchctl-a64.exe index 1a381b35..4fb63883 100644 Binary files a/support/3rd_party/winfsp-2.1/bin/launchctl-a64.exe and b/support/3rd_party/winfsp-2.1/bin/launchctl-a64.exe differ diff --git a/support/3rd_party/winfsp-2.1/bin/launchctl-x64.exe b/support/3rd_party/winfsp-2.1/bin/launchctl-x64.exe index 19358e5a..f6f0b674 100644 Binary files a/support/3rd_party/winfsp-2.1/bin/launchctl-x64.exe and b/support/3rd_party/winfsp-2.1/bin/launchctl-x64.exe differ diff --git a/support/3rd_party/winfsp-2.1/bin/launchctl-x86.exe b/support/3rd_party/winfsp-2.1/bin/launchctl-x86.exe index ac018f90..4fce9a4b 100644 Binary files a/support/3rd_party/winfsp-2.1/bin/launchctl-x86.exe and b/support/3rd_party/winfsp-2.1/bin/launchctl-x86.exe differ diff --git a/support/3rd_party/winfsp-2.1/bin/launcher-a64.exe b/support/3rd_party/winfsp-2.1/bin/launcher-a64.exe index 306c1f05..ea1685be 100644 Binary files a/support/3rd_party/winfsp-2.1/bin/launcher-a64.exe and b/support/3rd_party/winfsp-2.1/bin/launcher-a64.exe differ diff --git a/support/3rd_party/winfsp-2.1/bin/launcher-x64.exe b/support/3rd_party/winfsp-2.1/bin/launcher-x64.exe index d6dbb588..d9fb111b 100644 Binary files a/support/3rd_party/winfsp-2.1/bin/launcher-x64.exe and b/support/3rd_party/winfsp-2.1/bin/launcher-x64.exe differ diff --git a/support/3rd_party/winfsp-2.1/bin/launcher-x86.exe b/support/3rd_party/winfsp-2.1/bin/launcher-x86.exe index 6ebc1ab8..afc8fa07 100644 Binary files a/support/3rd_party/winfsp-2.1/bin/launcher-x86.exe and b/support/3rd_party/winfsp-2.1/bin/launcher-x86.exe differ diff --git a/support/3rd_party/winfsp-2.1/bin/memfs-a64.exe b/support/3rd_party/winfsp-2.1/bin/memfs-a64.exe index 7d0189a9..693709f4 100644 Binary files a/support/3rd_party/winfsp-2.1/bin/memfs-a64.exe and b/support/3rd_party/winfsp-2.1/bin/memfs-a64.exe differ diff --git a/support/3rd_party/winfsp-2.1/bin/memfs-dotnet-msil.exe b/support/3rd_party/winfsp-2.1/bin/memfs-dotnet-msil.exe index fd5c7db3..27c0f3b1 100644 Binary files a/support/3rd_party/winfsp-2.1/bin/memfs-dotnet-msil.exe and b/support/3rd_party/winfsp-2.1/bin/memfs-dotnet-msil.exe differ diff --git a/support/3rd_party/winfsp-2.1/bin/memfs-x64.exe b/support/3rd_party/winfsp-2.1/bin/memfs-x64.exe index 2666e4d7..abdf4842 100644 Binary files a/support/3rd_party/winfsp-2.1/bin/memfs-x64.exe and b/support/3rd_party/winfsp-2.1/bin/memfs-x64.exe differ diff --git a/support/3rd_party/winfsp-2.1/bin/memfs-x86.exe b/support/3rd_party/winfsp-2.1/bin/memfs-x86.exe index dc96d74d..578ca21c 100644 Binary files a/support/3rd_party/winfsp-2.1/bin/memfs-x86.exe and b/support/3rd_party/winfsp-2.1/bin/memfs-x86.exe differ diff --git a/support/include/utils/all.hpp b/support/include/utils/all.hpp index fc6622b5..6247127a 100644 --- a/support/include/utils/all.hpp +++ b/support/include/utils/all.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/support/include/utils/atomic.hpp b/support/include/utils/atomic.hpp index 77626981..1b34a5eb 100644 --- a/support/include/utils/atomic.hpp +++ b/support/include/utils/atomic.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/support/include/utils/collection.hpp b/support/include/utils/collection.hpp index e6a0b07d..f380c406 100644 --- a/support/include/utils/collection.hpp +++ b/support/include/utils/collection.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/support/include/utils/com_init_wrapper.hpp b/support/include/utils/com_init_wrapper.hpp index d65c32ee..ecbc8692 100644 --- a/support/include/utils/com_init_wrapper.hpp +++ b/support/include/utils/com_init_wrapper.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/support/include/utils/common.hpp b/support/include/utils/common.hpp index 34b70990..e22ff365 100644 --- a/support/include/utils/common.hpp +++ b/support/include/utils/common.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/support/include/utils/config.hpp b/support/include/utils/config.hpp index 9d4d6db3..3afdfde2 100644 --- a/support/include/utils/config.hpp +++ b/support/include/utils/config.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/support/include/utils/db/sqlite/db_common.hpp b/support/include/utils/db/sqlite/db_common.hpp index a8d14c75..c8b924b0 100644 --- a/support/include/utils/db/sqlite/db_common.hpp +++ b/support/include/utils/db/sqlite/db_common.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/support/include/utils/db/sqlite/db_delete.hpp b/support/include/utils/db/sqlite/db_delete.hpp index c23432e0..b4b12702 100644 --- a/support/include/utils/db/sqlite/db_delete.hpp +++ b/support/include/utils/db/sqlite/db_delete.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/support/include/utils/db/sqlite/db_insert.hpp b/support/include/utils/db/sqlite/db_insert.hpp index 581f1119..ba3e8abb 100644 --- a/support/include/utils/db/sqlite/db_insert.hpp +++ b/support/include/utils/db/sqlite/db_insert.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/support/include/utils/db/sqlite/db_select.hpp b/support/include/utils/db/sqlite/db_select.hpp index 9fc62002..20711b71 100644 --- a/support/include/utils/db/sqlite/db_select.hpp +++ b/support/include/utils/db/sqlite/db_select.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/support/include/utils/db/sqlite/db_update.hpp b/support/include/utils/db/sqlite/db_update.hpp index 88a3f404..615b03b9 100644 --- a/support/include/utils/db/sqlite/db_update.hpp +++ b/support/include/utils/db/sqlite/db_update.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/support/include/utils/db/sqlite/db_where_t.hpp b/support/include/utils/db/sqlite/db_where_t.hpp index 2830c900..a198478a 100644 --- a/support/include/utils/db/sqlite/db_where_t.hpp +++ b/support/include/utils/db/sqlite/db_where_t.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/support/include/utils/encrypting_reader.hpp b/support/include/utils/encrypting_reader.hpp index 4fb56961..4ac82d99 100644 --- a/support/include/utils/encrypting_reader.hpp +++ b/support/include/utils/encrypting_reader.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/support/include/utils/encryption.hpp b/support/include/utils/encryption.hpp index 11a68aa9..4c76e2f6 100644 --- a/support/include/utils/encryption.hpp +++ b/support/include/utils/encryption.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/support/include/utils/error.hpp b/support/include/utils/error.hpp index 6cae4af3..a4474c2b 100644 --- a/support/include/utils/error.hpp +++ b/support/include/utils/error.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/support/include/utils/file.hpp b/support/include/utils/file.hpp index 104593d0..12c152cd 100644 --- a/support/include/utils/file.hpp +++ b/support/include/utils/file.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/support/include/utils/file_directory.hpp b/support/include/utils/file_directory.hpp index 1b4f31bc..60087fcd 100644 --- a/support/include/utils/file_directory.hpp +++ b/support/include/utils/file_directory.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/support/include/utils/file_enc_file.hpp b/support/include/utils/file_enc_file.hpp index 7734781f..fe945682 100644 --- a/support/include/utils/file_enc_file.hpp +++ b/support/include/utils/file_enc_file.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/support/include/utils/file_file.hpp b/support/include/utils/file_file.hpp index 989678c3..35d9102b 100644 --- a/support/include/utils/file_file.hpp +++ b/support/include/utils/file_file.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/support/include/utils/file_smb_directory.hpp b/support/include/utils/file_smb_directory.hpp index c371d8b7..d735096a 100644 --- a/support/include/utils/file_smb_directory.hpp +++ b/support/include/utils/file_smb_directory.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/support/include/utils/file_smb_file.hpp b/support/include/utils/file_smb_file.hpp index df5792a0..0700ec75 100644 --- a/support/include/utils/file_smb_file.hpp +++ b/support/include/utils/file_smb_file.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/support/include/utils/file_thread_file.hpp b/support/include/utils/file_thread_file.hpp index 3fc0f52b..9602ddec 100644 --- a/support/include/utils/file_thread_file.hpp +++ b/support/include/utils/file_thread_file.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/support/include/utils/hash.hpp b/support/include/utils/hash.hpp index 8f92f8f7..219f3695 100644 --- a/support/include/utils/hash.hpp +++ b/support/include/utils/hash.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/support/include/utils/path.hpp b/support/include/utils/path.hpp index 0c945269..d935f230 100644 --- a/support/include/utils/path.hpp +++ b/support/include/utils/path.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/support/include/utils/string.hpp b/support/include/utils/string.hpp index 764e0985..2bf9aa6b 100644 --- a/support/include/utils/string.hpp +++ b/support/include/utils/string.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/support/include/utils/time.hpp b/support/include/utils/time.hpp index ff49965e..83a1185d 100644 --- a/support/include/utils/time.hpp +++ b/support/include/utils/time.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/support/include/utils/timeout.hpp b/support/include/utils/timeout.hpp index f7498e43..19c20049 100644 --- a/support/include/utils/timeout.hpp +++ b/support/include/utils/timeout.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/support/include/utils/types/file/i_directory.hpp b/support/include/utils/types/file/i_directory.hpp index 15cc2680..d6d80b84 100644 --- a/support/include/utils/types/file/i_directory.hpp +++ b/support/include/utils/types/file/i_directory.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/support/include/utils/types/file/i_file.hpp b/support/include/utils/types/file/i_file.hpp index 3a9c8d9d..fa25f72d 100644 --- a/support/include/utils/types/file/i_file.hpp +++ b/support/include/utils/types/file/i_file.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/support/include/utils/types/file/i_fs_item.hpp b/support/include/utils/types/file/i_fs_item.hpp index 10b8e57b..a9ee5402 100644 --- a/support/include/utils/types/file/i_fs_item.hpp +++ b/support/include/utils/types/file/i_fs_item.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/support/include/utils/unix.hpp b/support/include/utils/unix.hpp index c714245b..9f4d9676 100644 --- a/support/include/utils/unix.hpp +++ b/support/include/utils/unix.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/support/include/utils/windows.hpp b/support/include/utils/windows.hpp index 53b12e77..baf33c97 100644 --- a/support/include/utils/windows.hpp +++ b/support/include/utils/windows.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/support/src/utils/common.cpp b/support/src/utils/common.cpp index 75b35bf1..f5441bd5 100644 --- a/support/src/utils/common.cpp +++ b/support/src/utils/common.cpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/support/src/utils/db/sqlite/db_common.cpp b/support/src/utils/db/sqlite/db_common.cpp index e863f5d6..b7cde21a 100644 --- a/support/src/utils/db/sqlite/db_common.cpp +++ b/support/src/utils/db/sqlite/db_common.cpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/support/src/utils/db/sqlite/db_delete.cpp b/support/src/utils/db/sqlite/db_delete.cpp index 1ea81d89..9c5e2334 100644 --- a/support/src/utils/db/sqlite/db_delete.cpp +++ b/support/src/utils/db/sqlite/db_delete.cpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/support/src/utils/db/sqlite/db_insert.cpp b/support/src/utils/db/sqlite/db_insert.cpp index 2e5ead3d..57ee1c79 100644 --- a/support/src/utils/db/sqlite/db_insert.cpp +++ b/support/src/utils/db/sqlite/db_insert.cpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/support/src/utils/db/sqlite/db_select.cpp b/support/src/utils/db/sqlite/db_select.cpp index ccdefd24..8359390c 100644 --- a/support/src/utils/db/sqlite/db_select.cpp +++ b/support/src/utils/db/sqlite/db_select.cpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/support/src/utils/db/sqlite/db_update.cpp b/support/src/utils/db/sqlite/db_update.cpp index 5e550fc1..e8a5e671 100644 --- a/support/src/utils/db/sqlite/db_update.cpp +++ b/support/src/utils/db/sqlite/db_update.cpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/support/src/utils/directory.cpp b/support/src/utils/directory.cpp index c33dba41..2bb72e30 100644 --- a/support/src/utils/directory.cpp +++ b/support/src/utils/directory.cpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/support/src/utils/encrypting_reader.cpp b/support/src/utils/encrypting_reader.cpp index 78dd10fb..94c1c4e8 100644 --- a/support/src/utils/encrypting_reader.cpp +++ b/support/src/utils/encrypting_reader.cpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/support/src/utils/encryption.cpp b/support/src/utils/encryption.cpp index 80ee8c0b..ed76ca93 100644 --- a/support/src/utils/encryption.cpp +++ b/support/src/utils/encryption.cpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/support/src/utils/error.cpp b/support/src/utils/error.cpp index 71077fc7..8f8f50d1 100644 --- a/support/src/utils/error.cpp +++ b/support/src/utils/error.cpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/support/src/utils/error_handler.cpp b/support/src/utils/error_handler.cpp index 9f6a0356..b442600f 100644 --- a/support/src/utils/error_handler.cpp +++ b/support/src/utils/error_handler.cpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/support/src/utils/file.cpp b/support/src/utils/file.cpp index 7157eefb..d852a717 100644 --- a/support/src/utils/file.cpp +++ b/support/src/utils/file.cpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/support/src/utils/file_directory.cpp b/support/src/utils/file_directory.cpp index 2bad1af0..b97ca76d 100644 --- a/support/src/utils/file_directory.cpp +++ b/support/src/utils/file_directory.cpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/support/src/utils/file_enc_file.cpp b/support/src/utils/file_enc_file.cpp index b03c4ddc..255d5888 100644 --- a/support/src/utils/file_enc_file.cpp +++ b/support/src/utils/file_enc_file.cpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/support/src/utils/file_file.cpp b/support/src/utils/file_file.cpp index f550a1ab..f325a930 100644 --- a/support/src/utils/file_file.cpp +++ b/support/src/utils/file_file.cpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/support/src/utils/file_smb_directory.cpp b/support/src/utils/file_smb_directory.cpp index 190366f5..20da0d36 100644 --- a/support/src/utils/file_smb_directory.cpp +++ b/support/src/utils/file_smb_directory.cpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/support/src/utils/file_smb_file.cpp b/support/src/utils/file_smb_file.cpp index eca3d955..2c2daf90 100644 --- a/support/src/utils/file_smb_file.cpp +++ b/support/src/utils/file_smb_file.cpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/support/src/utils/file_thread_file.cpp b/support/src/utils/file_thread_file.cpp index 30d569ca..42f1ea03 100644 --- a/support/src/utils/file_thread_file.cpp +++ b/support/src/utils/file_thread_file.cpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/support/src/utils/hash.cpp b/support/src/utils/hash.cpp index 9594bb80..aeb5b3d1 100644 --- a/support/src/utils/hash.cpp +++ b/support/src/utils/hash.cpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/support/src/utils/path.cpp b/support/src/utils/path.cpp index e893f615..7d4cbdaa 100644 --- a/support/src/utils/path.cpp +++ b/support/src/utils/path.cpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/support/src/utils/string.cpp b/support/src/utils/string.cpp index e62d105b..5d436377 100644 --- a/support/src/utils/string.cpp +++ b/support/src/utils/string.cpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/support/src/utils/time.cpp b/support/src/utils/time.cpp index 944c4a18..9dddfd83 100644 --- a/support/src/utils/time.cpp +++ b/support/src/utils/time.cpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/support/src/utils/timeout.cpp b/support/src/utils/timeout.cpp index 947f2229..2d2529f1 100644 --- a/support/src/utils/timeout.cpp +++ b/support/src/utils/timeout.cpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/support/src/utils/unix.cpp b/support/src/utils/unix.cpp index f5e33c91..875e9337 100644 --- a/support/src/utils/unix.cpp +++ b/support/src/utils/unix.cpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/support/src/utils/windows.cpp b/support/src/utils/windows.cpp index cbfffa85..35925b0b 100644 --- a/support/src/utils/windows.cpp +++ b/support/src/utils/windows.cpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/support/test/include/test.hpp b/support/test/include/test.hpp index 52e63a04..a2ba6475 100644 --- a/support/test/include/test.hpp +++ b/support/test/include/test.hpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/support/test/src/test.cpp b/support/test/src/test.cpp index f9d78280..0b68d316 100644 --- a/support/test/src/test.cpp +++ b/support/test/src/test.cpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/support/test/src/utils/atomic_test.cpp b/support/test/src/utils/atomic_test.cpp index c6875501..e89a49b5 100644 --- a/support/test/src/utils/atomic_test.cpp +++ b/support/test/src/utils/atomic_test.cpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/support/test/src/utils/base64_test.cpp b/support/test/src/utils/base64_test.cpp index 4a973e93..fb8e1cce 100644 --- a/support/test/src/utils/base64_test.cpp +++ b/support/test/src/utils/base64_test.cpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/support/test/src/utils/collection_test.cpp b/support/test/src/utils/collection_test.cpp index 0639e9c1..e38c75e1 100644 --- a/support/test/src/utils/collection_test.cpp +++ b/support/test/src/utils/collection_test.cpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/support/test/src/utils/common_test.cpp b/support/test/src/utils/common_test.cpp index 55558872..dd61b937 100644 --- a/support/test/src/utils/common_test.cpp +++ b/support/test/src/utils/common_test.cpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/support/test/src/utils/db_sqlite_test.cpp b/support/test/src/utils/db_sqlite_test.cpp index 962499a1..cf858869 100644 --- a/support/test/src/utils/db_sqlite_test.cpp +++ b/support/test/src/utils/db_sqlite_test.cpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/support/test/src/utils/encrypting_reader_test.cpp b/support/test/src/utils/encrypting_reader_test.cpp index 96bab1fa..5decf4c2 100644 --- a/support/test/src/utils/encrypting_reader_test.cpp +++ b/support/test/src/utils/encrypting_reader_test.cpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/support/test/src/utils/encryption_kdf_config_test.cpp b/support/test/src/utils/encryption_kdf_config_test.cpp index b70620f8..cfa9b4f6 100644 --- a/support/test/src/utils/encryption_kdf_config_test.cpp +++ b/support/test/src/utils/encryption_kdf_config_test.cpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/support/test/src/utils/encryption_read_encrypted_range_test.cpp b/support/test/src/utils/encryption_read_encrypted_range_test.cpp index 7561ed56..c380f8f4 100644 --- a/support/test/src/utils/encryption_read_encrypted_range_test.cpp +++ b/support/test/src/utils/encryption_read_encrypted_range_test.cpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/support/test/src/utils/encryption_test.cpp b/support/test/src/utils/encryption_test.cpp index 94a39bd2..1add16a4 100644 --- a/support/test/src/utils/encryption_test.cpp +++ b/support/test/src/utils/encryption_test.cpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/support/test/src/utils/error_test.cpp b/support/test/src/utils/error_test.cpp index 540322a5..98c5bc17 100644 --- a/support/test/src/utils/error_test.cpp +++ b/support/test/src/utils/error_test.cpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/support/test/src/utils/file_test.cpp b/support/test/src/utils/file_test.cpp index 9fb195d8..d6b7d7ed 100644 --- a/support/test/src/utils/file_test.cpp +++ b/support/test/src/utils/file_test.cpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/support/test/src/utils/hash_test.cpp b/support/test/src/utils/hash_test.cpp index dc5dcda1..b23012b2 100644 --- a/support/test/src/utils/hash_test.cpp +++ b/support/test/src/utils/hash_test.cpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/support/test/src/utils/path_test.cpp b/support/test/src/utils/path_test.cpp index 1194790a..2f0a1712 100644 --- a/support/test/src/utils/path_test.cpp +++ b/support/test/src/utils/path_test.cpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/support/test/src/utils/string_test.cpp b/support/test/src/utils/string_test.cpp index b1f6b2b6..e8c79b87 100644 --- a/support/test/src/utils/string_test.cpp +++ b/support/test/src/utils/string_test.cpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/support/test/src/utils/ttl_cache_test.cpp b/support/test/src/utils/ttl_cache_test.cpp index cd71608f..75a39767 100644 --- a/support/test/src/utils/ttl_cache_test.cpp +++ b/support/test/src/utils/ttl_cache_test.cpp @@ -1,5 +1,5 @@ /* - Copyright <2018-2025> + Copyright <2018-2026> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal