diff --git a/.github/workflows/nightly-pipeline-prerelease.yml b/.github/workflows/nightly-pipeline-prerelease.yml new file mode 100644 index 00000000..b38e917f --- /dev/null +++ b/.github/workflows/nightly-pipeline-prerelease.yml @@ -0,0 +1,18 @@ +# Triggers the nightly pipeline on non-main branches, as only pipelines on the +# default branch can be scheduled directly. +name: Nightly Pipeline Prerelease + +on: + schedule: + - cron: '0 2 * * *' + +jobs: + schedule: + runs-on: ubuntu-latest + permissions: + actions: write + env: + GH_TOKEN: ${{ github.token }} + steps: + - name: Schedule version/4.5 + run: gh workflow run nightly-pipeline.yml --repo '${{ github.repository }}' --ref version/4.5 diff --git a/.github/workflows/nightly-pipeline.yml b/.github/workflows/nightly-pipeline.yml new file mode 100644 index 00000000..4d61f56b --- /dev/null +++ b/.github/workflows/nightly-pipeline.yml @@ -0,0 +1,7 @@ +name: Nightly Pipeline (dummy) +on: workflow_dispatch +jobs: + dummy: + runs-on: ubuntu-latest + steps: + - run: echo "This is a dummy action to allow actions with the same filename to run from other branches" diff --git a/ci/options.json b/ci/options.json index 97f08d2d..b2145f46 100644 --- a/ci/options.json +++ b/ci/options.json @@ -1,65 +1,73 @@ [ { - "Name": "Ubuntu_Node_18", - "Image": "ubuntu-20.04", + "Name": "Ubuntu_Node_20", + "Image": "ubuntu-latest", "Language": "node", - "LanguageVersion": "18", + "LanguageVersion": "20", "RunPerformance": true, "PackageRequirement": true }, { - "Name": "Windows_Node_18", + "Name": "Windows_Node_20", "Image": "windows-latest", "Language": "node", - "LanguageVersion": "18", + "LanguageVersion": "20", "RunPerformance": true, "PackageRequirement": true }, { - "Name": "macOS_Node_18", + "Name": "macOS_Node_20", "Image": "macos-latest", "Language": "node", - "LanguageVersion": "18", + "LanguageVersion": "20", "RunPerformance": true, "PackageRequirement": true }, { - "Name": "Ubuntu_Node_20", - "Image": "ubuntu-20.04", + "Name": "Ubuntu_Node_22", + "Image": "ubuntu-latest", "Language": "node", - "LanguageVersion": "20", + "LanguageVersion": "22.5.1", "RunPerformance": true, "PackageRequirement": true }, { - "Name": "Windows_Node_20", + "Name": "Windows_Node_22", "Image": "windows-latest", "Language": "node", - "LanguageVersion": "20", + "LanguageVersion": "22.5.1", "RunPerformance": true, "PackageRequirement": true }, { - "Name": "macOS_Node_20", + "Name": "macOS_Node_22", "Image": "macos-latest", "Language": "node", - "LanguageVersion": "20", + "LanguageVersion": "22", "RunPerformance": true, "PackageRequirement": true }, { - "Name": "Ubuntu_Node_22", - "Image": "ubuntu-22.04", + "Name": "Ubuntu_Node_24", + "Image": "ubuntu-latest", "Language": "node", - "LanguageVersion": "22.5.1", + "LanguageVersion": "24", "RunPerformance": true, "PackageRequirement": true }, { - "Name": "Windows_Node_22", + "Name": "Windows_Node_24", "Image": "windows-latest", "Language": "node", - "LanguageVersion": "22.5.1", + "LanguageVersion": "24", + "RunPerformance": true, + "PackageRequirement": true + }, + { + "Name": "macOS_Node_24", + "Image": "macos-latest", + "Language": "node", + "LanguageVersion": "24", "RunPerformance": true, "PackageRequirement": true } diff --git a/fiftyone.devicedetection.cloud/constants.js b/fiftyone.devicedetection.cloud/constants.js index d819ee14..51935a87 100644 --- a/fiftyone.devicedetection.cloud/constants.js +++ b/fiftyone.devicedetection.cloud/constants.js @@ -1,6 +1,6 @@ /* ********************************************************************* * This Original Work is copyright of 51 Degrees Mobile Experts Limited. - * Copyright 2023 51 Degrees Mobile Experts Limited, Davidson House, + * Copyright 2025 51 Degrees Mobile Experts Limited, Davidson House, * Forbury Square, Reading, Berkshire, United Kingdom RG1 3EU. * * This Original Work is licensed under the European Union Public Licence diff --git a/fiftyone.devicedetection.cloud/deviceDetectionCloud.js b/fiftyone.devicedetection.cloud/deviceDetectionCloud.js index e3c4869a..69ea8235 100644 --- a/fiftyone.devicedetection.cloud/deviceDetectionCloud.js +++ b/fiftyone.devicedetection.cloud/deviceDetectionCloud.js @@ -1,6 +1,6 @@ /* ********************************************************************* * This Original Work is copyright of 51 Degrees Mobile Experts Limited. - * Copyright 2023 51 Degrees Mobile Experts Limited, Davidson House, + * Copyright 2025 51 Degrees Mobile Experts Limited, Davidson House, * Forbury Square, Reading, Berkshire, United Kingdom RG1 3EU. * * This Original Work is licensed under the European Union Public Licence diff --git a/fiftyone.devicedetection.cloud/deviceDetectionCloudPipelineBuilder.js b/fiftyone.devicedetection.cloud/deviceDetectionCloudPipelineBuilder.js index c98c5cb5..da272efb 100644 --- a/fiftyone.devicedetection.cloud/deviceDetectionCloudPipelineBuilder.js +++ b/fiftyone.devicedetection.cloud/deviceDetectionCloudPipelineBuilder.js @@ -1,6 +1,6 @@ /* ********************************************************************* * This Original Work is copyright of 51 Degrees Mobile Experts Limited. - * Copyright 2023 51 Degrees Mobile Experts Limited, Davidson House, + * Copyright 2025 51 Degrees Mobile Experts Limited, Davidson House, * Forbury Square, Reading, Berkshire, United Kingdom RG1 3EU. * * This Original Work is licensed under the European Union Public Licence diff --git a/fiftyone.devicedetection.cloud/examples/cloud/configurator-console/configurator.js b/fiftyone.devicedetection.cloud/examples/cloud/configurator-console/configurator.js index 0ed15db6..ea47ebc6 100644 --- a/fiftyone.devicedetection.cloud/examples/cloud/configurator-console/configurator.js +++ b/fiftyone.devicedetection.cloud/examples/cloud/configurator-console/configurator.js @@ -1,6 +1,6 @@ /* ********************************************************************* * This Original Work is copyright of 51 Degrees Mobile Experts Limited. - * Copyright 2023 51 Degrees Mobile Experts Limited, Davidson House, + * Copyright 2025 51 Degrees Mobile Experts Limited, Davidson House, * Forbury Square, Reading, Berkshire, United Kingdom RG1 3EU. * * This Original Work is licensed under the European Union Public Licence diff --git a/fiftyone.devicedetection.cloud/examples/cloud/configurator-console/configurator.test.js b/fiftyone.devicedetection.cloud/examples/cloud/configurator-console/configurator.test.js index 2eb2dab9..e5ad95ff 100644 --- a/fiftyone.devicedetection.cloud/examples/cloud/configurator-console/configurator.test.js +++ b/fiftyone.devicedetection.cloud/examples/cloud/configurator-console/configurator.test.js @@ -1,6 +1,6 @@ /* ********************************************************************* * This Original Work is copyright of 51 Degrees Mobile Experts Limited. - * Copyright 2023 51 Degrees Mobile Experts Limited, Davidson House, + * Copyright 2025 51 Degrees Mobile Experts Limited, Davidson House, * Forbury Square, Reading, Berkshire, United Kingdom RG1 3EU. * * This Original Work is licensed under the European Union Public Licence diff --git a/fiftyone.devicedetection.cloud/examples/cloud/exampleUtils.js b/fiftyone.devicedetection.cloud/examples/cloud/exampleUtils.js index 284bb1bc..57bf4307 100644 --- a/fiftyone.devicedetection.cloud/examples/cloud/exampleUtils.js +++ b/fiftyone.devicedetection.cloud/examples/cloud/exampleUtils.js @@ -1,6 +1,6 @@ /* ********************************************************************* * This Original Work is copyright of 51 Degrees Mobile Experts Limited. - * Copyright 2023 51 Degrees Mobile Experts Limited, Davidson House, + * Copyright 2025 51 Degrees Mobile Experts Limited, Davidson House, * Forbury Square, Reading, Berkshire, United Kingdom RG1 3EU. * * This Original Work is licensed under the European Union Public Licence diff --git a/fiftyone.devicedetection.cloud/examples/cloud/gettingstarted-console/gettingStarted.js b/fiftyone.devicedetection.cloud/examples/cloud/gettingstarted-console/gettingStarted.js index 738fa092..03031e8a 100644 --- a/fiftyone.devicedetection.cloud/examples/cloud/gettingstarted-console/gettingStarted.js +++ b/fiftyone.devicedetection.cloud/examples/cloud/gettingstarted-console/gettingStarted.js @@ -1,6 +1,6 @@ /* ********************************************************************* * This Original Work is copyright of 51 Degrees Mobile Experts Limited. - * Copyright 2023 51 Degrees Mobile Experts Limited, Davidson House, + * Copyright 2025 51 Degrees Mobile Experts Limited, Davidson House, * Forbury Square, Reading, Berkshire, United Kingdom RG1 3EU. * * This Original Work is licensed under the European Union Public Licence diff --git a/fiftyone.devicedetection.cloud/examples/cloud/gettingstarted-console/gettingStarted.test.js b/fiftyone.devicedetection.cloud/examples/cloud/gettingstarted-console/gettingStarted.test.js index c3dbf1bd..62f5a9bf 100644 --- a/fiftyone.devicedetection.cloud/examples/cloud/gettingstarted-console/gettingStarted.test.js +++ b/fiftyone.devicedetection.cloud/examples/cloud/gettingstarted-console/gettingStarted.test.js @@ -1,6 +1,6 @@ /* ********************************************************************* * This Original Work is copyright of 51 Degrees Mobile Experts Limited. - * Copyright 2023 51 Degrees Mobile Experts Limited, Davidson House, + * Copyright 2025 51 Degrees Mobile Experts Limited, Davidson House, * Forbury Square, Reading, Berkshire, United Kingdom RG1 3EU. * * This Original Work is licensed under the European Union Public Licence diff --git a/fiftyone.devicedetection.cloud/examples/cloud/gettingstarted-web/gettingStarted.js b/fiftyone.devicedetection.cloud/examples/cloud/gettingstarted-web/gettingStarted.js index d1d8d31f..893238a0 100644 --- a/fiftyone.devicedetection.cloud/examples/cloud/gettingstarted-web/gettingStarted.js +++ b/fiftyone.devicedetection.cloud/examples/cloud/gettingstarted-web/gettingStarted.js @@ -1,6 +1,6 @@ /* ********************************************************************* * This Original Work is copyright of 51 Degrees Mobile Experts Limited. - * Copyright 2023 51 Degrees Mobile Experts Limited, Davidson House, + * Copyright 2025 51 Degrees Mobile Experts Limited, Davidson House, * Forbury Square, Reading, Berkshire, United Kingdom RG1 3EU. * * This Original Work is licensed under the European Union Public Licence diff --git a/fiftyone.devicedetection.cloud/examples/cloud/gettingstarted-web/gettingStarted.test.js b/fiftyone.devicedetection.cloud/examples/cloud/gettingstarted-web/gettingStarted.test.js index a28a00ec..2fa29907 100644 --- a/fiftyone.devicedetection.cloud/examples/cloud/gettingstarted-web/gettingStarted.test.js +++ b/fiftyone.devicedetection.cloud/examples/cloud/gettingstarted-web/gettingStarted.test.js @@ -1,6 +1,6 @@ /* ********************************************************************* * This Original Work is copyright of 51 Degrees Mobile Experts Limited. - * Copyright 2023 51 Degrees Mobile Experts Limited, Davidson House, + * Copyright 2025 51 Degrees Mobile Experts Limited, Davidson House, * Forbury Square, Reading, Berkshire, United Kingdom RG1 3EU. * * This Original Work is licensed under the European Union Public Licence diff --git a/fiftyone.devicedetection.cloud/examples/cloud/metadata-console/metaData.js b/fiftyone.devicedetection.cloud/examples/cloud/metadata-console/metaData.js index 9687d003..abba6089 100644 --- a/fiftyone.devicedetection.cloud/examples/cloud/metadata-console/metaData.js +++ b/fiftyone.devicedetection.cloud/examples/cloud/metadata-console/metaData.js @@ -1,6 +1,6 @@ /* ********************************************************************* * This Original Work is copyright of 51 Degrees Mobile Experts Limited. - * Copyright 2023 51 Degrees Mobile Experts Limited, Davidson House, + * Copyright 2025 51 Degrees Mobile Experts Limited, Davidson House, * Forbury Square, Reading, Berkshire, United Kingdom RG1 3EU. * * This Original Work is licensed under the European Union Public Licence diff --git a/fiftyone.devicedetection.cloud/examples/cloud/metadata-console/metaData.test.js b/fiftyone.devicedetection.cloud/examples/cloud/metadata-console/metaData.test.js index 6e05802a..59d4a0d2 100644 --- a/fiftyone.devicedetection.cloud/examples/cloud/metadata-console/metaData.test.js +++ b/fiftyone.devicedetection.cloud/examples/cloud/metadata-console/metaData.test.js @@ -1,6 +1,6 @@ /* ********************************************************************* * This Original Work is copyright of 51 Degrees Mobile Experts Limited. - * Copyright 2023 51 Degrees Mobile Experts Limited, Davidson House, + * Copyright 2025 51 Degrees Mobile Experts Limited, Davidson House, * Forbury Square, Reading, Berkshire, United Kingdom RG1 3EU. * * This Original Work is licensed under the European Union Public Licence diff --git a/fiftyone.devicedetection.cloud/examples/cloud/nativemodellookup-console/nativeModelLookup.js b/fiftyone.devicedetection.cloud/examples/cloud/nativemodellookup-console/nativeModelLookup.js index 123fb7ec..9c805e0c 100644 --- a/fiftyone.devicedetection.cloud/examples/cloud/nativemodellookup-console/nativeModelLookup.js +++ b/fiftyone.devicedetection.cloud/examples/cloud/nativemodellookup-console/nativeModelLookup.js @@ -1,6 +1,6 @@ /* ********************************************************************* * This Original Work is copyright of 51 Degrees Mobile Experts Limited. - * Copyright 2023 51 Degrees Mobile Experts Limited, Davidson House, + * Copyright 2025 51 Degrees Mobile Experts Limited, Davidson House, * Forbury Square, Reading, Berkshire, United Kingdom RG1 3EU. * * This Original Work is licensed under the European Union Public Licence diff --git a/fiftyone.devicedetection.cloud/examples/cloud/nativemodellookup-console/nativeModelLookup.test.js b/fiftyone.devicedetection.cloud/examples/cloud/nativemodellookup-console/nativeModelLookup.test.js index 29bcd6c6..9cdaeefe 100644 --- a/fiftyone.devicedetection.cloud/examples/cloud/nativemodellookup-console/nativeModelLookup.test.js +++ b/fiftyone.devicedetection.cloud/examples/cloud/nativemodellookup-console/nativeModelLookup.test.js @@ -1,6 +1,6 @@ /* ********************************************************************* * This Original Work is copyright of 51 Degrees Mobile Experts Limited. - * Copyright 2023 51 Degrees Mobile Experts Limited, Davidson House, + * Copyright 2025 51 Degrees Mobile Experts Limited, Davidson House, * Forbury Square, Reading, Berkshire, United Kingdom RG1 3EU. * * This Original Work is licensed under the European Union Public Licence diff --git a/fiftyone.devicedetection.cloud/examples/cloud/taclookup-console/tacLookup.js b/fiftyone.devicedetection.cloud/examples/cloud/taclookup-console/tacLookup.js index 1851b023..12471008 100644 --- a/fiftyone.devicedetection.cloud/examples/cloud/taclookup-console/tacLookup.js +++ b/fiftyone.devicedetection.cloud/examples/cloud/taclookup-console/tacLookup.js @@ -1,6 +1,6 @@ /* ********************************************************************* * This Original Work is copyright of 51 Degrees Mobile Experts Limited. - * Copyright 2023 51 Degrees Mobile Experts Limited, Davidson House, + * Copyright 2025 51 Degrees Mobile Experts Limited, Davidson House, * Forbury Square, Reading, Berkshire, United Kingdom RG1 3EU. * * This Original Work is licensed under the European Union Public Licence diff --git a/fiftyone.devicedetection.cloud/examples/cloud/taclookup-console/tacLookup.test.js b/fiftyone.devicedetection.cloud/examples/cloud/taclookup-console/tacLookup.test.js index 1e0d77ad..12a3ae67 100644 --- a/fiftyone.devicedetection.cloud/examples/cloud/taclookup-console/tacLookup.test.js +++ b/fiftyone.devicedetection.cloud/examples/cloud/taclookup-console/tacLookup.test.js @@ -1,6 +1,6 @@ /* ********************************************************************* * This Original Work is copyright of 51 Degrees Mobile Experts Limited. - * Copyright 2023 51 Degrees Mobile Experts Limited, Davidson House, + * Copyright 2025 51 Degrees Mobile Experts Limited, Davidson House, * Forbury Square, Reading, Berkshire, United Kingdom RG1 3EU. * * This Original Work is licensed under the European Union Public Licence diff --git a/fiftyone.devicedetection.cloud/examples/cloud/useragentclienthints-web/userAgentClientHintsWeb.js b/fiftyone.devicedetection.cloud/examples/cloud/useragentclienthints-web/userAgentClientHintsWeb.js index 9e7a27b0..c4215433 100644 --- a/fiftyone.devicedetection.cloud/examples/cloud/useragentclienthints-web/userAgentClientHintsWeb.js +++ b/fiftyone.devicedetection.cloud/examples/cloud/useragentclienthints-web/userAgentClientHintsWeb.js @@ -1,6 +1,6 @@ /* ********************************************************************* * This Original Work is copyright of 51 Degrees Mobile Experts Limited. - * Copyright 2023 51 Degrees Mobile Experts Limited, Davidson House, + * Copyright 2025 51 Degrees Mobile Experts Limited, Davidson House, * Forbury Square, Reading, Berkshire, United Kingdom RG1 3EU. * * This Original Work is licensed under the European Union Public Licence diff --git a/fiftyone.devicedetection.cloud/examples/cloud/useragentclienthints-web/userAgentClientHintsWeb.test.js b/fiftyone.devicedetection.cloud/examples/cloud/useragentclienthints-web/userAgentClientHintsWeb.test.js index 45d61fb9..5b61f2a1 100644 --- a/fiftyone.devicedetection.cloud/examples/cloud/useragentclienthints-web/userAgentClientHintsWeb.test.js +++ b/fiftyone.devicedetection.cloud/examples/cloud/useragentclienthints-web/userAgentClientHintsWeb.test.js @@ -1,6 +1,6 @@ /* ********************************************************************* * This Original Work is copyright of 51 Degrees Mobile Experts Limited. - * Copyright 2023 51 Degrees Mobile Experts Limited, Davidson House, + * Copyright 2025 51 Degrees Mobile Experts Limited, Davidson House, * Forbury Square, Reading, Berkshire, United Kingdom RG1 3EU. * * This Original Work is licensed under the European Union Public Licence diff --git a/fiftyone.devicedetection.cloud/hardwareProfileCloudEngine.js b/fiftyone.devicedetection.cloud/hardwareProfileCloudEngine.js index 8ec868d1..9c0802ba 100644 --- a/fiftyone.devicedetection.cloud/hardwareProfileCloudEngine.js +++ b/fiftyone.devicedetection.cloud/hardwareProfileCloudEngine.js @@ -1,6 +1,6 @@ /* ********************************************************************* * This Original Work is copyright of 51 Degrees Mobile Experts Limited. - * Copyright 2023 51 Degrees Mobile Experts Limited, Davidson House, + * Copyright 2025 51 Degrees Mobile Experts Limited, Davidson House, * Forbury Square, Reading, Berkshire, United Kingdom RG1 3EU. * * This Original Work is licensed under the European Union Public Licence diff --git a/fiftyone.devicedetection.cloud/index.js b/fiftyone.devicedetection.cloud/index.js index 360e899b..42fcb8cb 100644 --- a/fiftyone.devicedetection.cloud/index.js +++ b/fiftyone.devicedetection.cloud/index.js @@ -1,6 +1,6 @@ /* ********************************************************************* * This Original Work is copyright of 51 Degrees Mobile Experts Limited. - * Copyright 2023 51 Degrees Mobile Experts Limited, Davidson House, + * Copyright 2025 51 Degrees Mobile Experts Limited, Davidson House, * Forbury Square, Reading, Berkshire, United Kingdom RG1 3EU. * * This Original Work is licensed under the European Union Public Licence diff --git a/fiftyone.devicedetection.cloud/tests/deviceDetectionCloud.test.js b/fiftyone.devicedetection.cloud/tests/deviceDetectionCloud.test.js index 445ae454..0bdf5c14 100644 --- a/fiftyone.devicedetection.cloud/tests/deviceDetectionCloud.test.js +++ b/fiftyone.devicedetection.cloud/tests/deviceDetectionCloud.test.js @@ -1,6 +1,6 @@ /* ********************************************************************* * This Original Work is copyright of 51 Degrees Mobile Experts Limited. - * Copyright 2023 51 Degrees Mobile Experts Limited, Davidson House, + * Copyright 2025 51 Degrees Mobile Experts Limited, Davidson House, * Forbury Square, Reading, Berkshire, United Kingdom RG1 3EU. * * This Original Work is licensed under the European Union Public Licence diff --git a/fiftyone.devicedetection.onpremise/binding.51d b/fiftyone.devicedetection.onpremise/binding.51d index 6d702bb2..52634fec 100644 --- a/fiftyone.devicedetection.onpremise/binding.51d +++ b/fiftyone.devicedetection.onpremise/binding.51d @@ -25,8 +25,7 @@ string += arr[i];\ }\ console.log(string);\")", - "-Wall", - "-Werror" + "-Wall" ], 'linux_mac_c_core_additional_flags': [ "-Wno-unused-variable", @@ -138,7 +137,7 @@ 'Debug': { 'msvs_settings': { 'VCCLCompilerTool': { - 'AdditionalOptions': [ '-std:c++17', ], + 'AdditionalOptions': [ '-std:c++20', ], 'WarningLevel': '<(win_warning_level)', 'ExceptionHandling': '<(win_exception_handling)', 'WarnAsError': '<(win_warn_as_error)', @@ -154,7 +153,7 @@ 'Release': { 'msvs_settings': { 'VCCLCompilerTool': { - 'AdditionalOptions': [ '-std:c++17', ], + 'AdditionalOptions': [ '-std:c++20', ], 'WarningLevel': '<(win_warning_level)', 'ExceptionHandling': '<(win_exception_handling)', 'WarnAsError': '<(win_warn_as_error)', @@ -211,7 +210,7 @@ 'Debug': { 'msvs_settings': { 'VCCLCompilerTool': { - 'AdditionalOptions': [ '-std:c++17', ], + 'AdditionalOptions': [ '-std:c++20', ], 'WarningLevel': '<(win_warning_level)', 'ExceptionHandling': '<(win_exception_handling)', 'DisableSpecificWarnings': [ @@ -233,7 +232,7 @@ 'Release': { 'msvs_settings': { 'VCCLCompilerTool': { - 'AdditionalOptions': [ '-std:c++17', ], + 'AdditionalOptions': [ '-std:c++20', ], 'WarningLevel': '<(win_warning_level)', 'ExceptionHandling': '<(win_exception_handling)', 'WarnAsError': '<(win_warn_as_error)', diff --git a/fiftyone.devicedetection.onpremise/component.js b/fiftyone.devicedetection.onpremise/component.js index 09123bab..7ccdc57c 100644 --- a/fiftyone.devicedetection.onpremise/component.js +++ b/fiftyone.devicedetection.onpremise/component.js @@ -1,6 +1,6 @@ /* ********************************************************************* * This Original Work is copyright of 51 Degrees Mobile Experts Limited. - * Copyright 2023 51 Degrees Mobile Experts Limited, Davidson House, + * Copyright 2025 51 Degrees Mobile Experts Limited, Davidson House, * Forbury Square, Reading, Berkshire, United Kingdom RG1 3EU. * * This Original Work is licensed under the European Union Public Licence diff --git a/fiftyone.devicedetection.onpremise/constants.js b/fiftyone.devicedetection.onpremise/constants.js index 73522156..7d02d089 100644 --- a/fiftyone.devicedetection.onpremise/constants.js +++ b/fiftyone.devicedetection.onpremise/constants.js @@ -1,6 +1,6 @@ /* ********************************************************************* * This Original Work is copyright of 51 Degrees Mobile Experts Limited. - * Copyright 2023 51 Degrees Mobile Experts Limited, Davidson House, + * Copyright 2025 51 Degrees Mobile Experts Limited, Davidson House, * Forbury Square, Reading, Berkshire, United Kingdom RG1 3EU. * * This Original Work is licensed under the European Union Public Licence diff --git a/fiftyone.devicedetection.onpremise/dataFileMissingPropertyService.js b/fiftyone.devicedetection.onpremise/dataFileMissingPropertyService.js index 740fa816..db557953 100644 --- a/fiftyone.devicedetection.onpremise/dataFileMissingPropertyService.js +++ b/fiftyone.devicedetection.onpremise/dataFileMissingPropertyService.js @@ -1,6 +1,6 @@ /* ********************************************************************* * This Original Work is copyright of 51 Degrees Mobile Experts Limited. - * Copyright 2023 51 Degrees Mobile Experts Limited, Davidson House, + * Copyright 2025 51 Degrees Mobile Experts Limited, Davidson House, * Forbury Square, Reading, Berkshire, United Kingdom RG1 3EU. * * This Original Work is licensed under the European Union Public Licence diff --git a/fiftyone.devicedetection.onpremise/device-detection-cxx b/fiftyone.devicedetection.onpremise/device-detection-cxx index 00adcd5a..fdd2c178 160000 --- a/fiftyone.devicedetection.onpremise/device-detection-cxx +++ b/fiftyone.devicedetection.onpremise/device-detection-cxx @@ -1 +1 @@ -Subproject commit 00adcd5a32efe9e883fce68e52f313b654a0cd9c +Subproject commit fdd2c1788275db1a569aaaa876e6c01a951895d8 diff --git a/fiftyone.devicedetection.onpremise/deviceDetectionDataFile.js b/fiftyone.devicedetection.onpremise/deviceDetectionDataFile.js index b8dc81d7..ae9001fe 100644 --- a/fiftyone.devicedetection.onpremise/deviceDetectionDataFile.js +++ b/fiftyone.devicedetection.onpremise/deviceDetectionDataFile.js @@ -1,6 +1,6 @@ /* ********************************************************************* * This Original Work is copyright of 51 Degrees Mobile Experts Limited. - * Copyright 2023 51 Degrees Mobile Experts Limited, Davidson House, + * Copyright 2025 51 Degrees Mobile Experts Limited, Davidson House, * Forbury Square, Reading, Berkshire, United Kingdom RG1 3EU. * * This Original Work is licensed under the European Union Public Licence diff --git a/fiftyone.devicedetection.onpremise/deviceDetectionOnPremise.js b/fiftyone.devicedetection.onpremise/deviceDetectionOnPremise.js index bae15f2e..7eac4b1a 100644 --- a/fiftyone.devicedetection.onpremise/deviceDetectionOnPremise.js +++ b/fiftyone.devicedetection.onpremise/deviceDetectionOnPremise.js @@ -1,6 +1,6 @@ /* ********************************************************************* * This Original Work is copyright of 51 Degrees Mobile Experts Limited. - * Copyright 2023 51 Degrees Mobile Experts Limited, Davidson House, + * Copyright 2025 51 Degrees Mobile Experts Limited, Davidson House, * Forbury Square, Reading, Berkshire, United Kingdom RG1 3EU. * * This Original Work is licensed under the European Union Public Licence diff --git a/fiftyone.devicedetection.onpremise/deviceDetectionOnPremisePipelineBuilder.js b/fiftyone.devicedetection.onpremise/deviceDetectionOnPremisePipelineBuilder.js index 7b564429..db4122ac 100644 --- a/fiftyone.devicedetection.onpremise/deviceDetectionOnPremisePipelineBuilder.js +++ b/fiftyone.devicedetection.onpremise/deviceDetectionOnPremisePipelineBuilder.js @@ -1,6 +1,6 @@ /* ********************************************************************* * This Original Work is copyright of 51 Degrees Mobile Experts Limited. - * Copyright 2023 51 Degrees Mobile Experts Limited, Davidson House, + * Copyright 2025 51 Degrees Mobile Experts Limited, Davidson House, * Forbury Square, Reading, Berkshire, United Kingdom RG1 3EU. * * This Original Work is licensed under the European Union Public Licence diff --git a/fiftyone.devicedetection.onpremise/examples/onpremise/automaticupdates/dataFileSystemWatcher.js b/fiftyone.devicedetection.onpremise/examples/onpremise/automaticupdates/dataFileSystemWatcher.js index 006c3406..52f15e77 100644 --- a/fiftyone.devicedetection.onpremise/examples/onpremise/automaticupdates/dataFileSystemWatcher.js +++ b/fiftyone.devicedetection.onpremise/examples/onpremise/automaticupdates/dataFileSystemWatcher.js @@ -1,6 +1,6 @@ /* ********************************************************************* * This Original Work is copyright of 51 Degrees Mobile Experts Limited. - * Copyright 2023 51 Degrees Mobile Experts Limited, Davidson House, + * Copyright 2025 51 Degrees Mobile Experts Limited, Davidson House, * Forbury Square, Reading, Berkshire, United Kingdom RG1 3EU. * * This Original Work is licensed under the European Union Public Licence diff --git a/fiftyone.devicedetection.onpremise/examples/onpremise/automaticupdates/updateOnStartUp.js b/fiftyone.devicedetection.onpremise/examples/onpremise/automaticupdates/updateOnStartUp.js index 0fdbc190..26b6ce0f 100644 --- a/fiftyone.devicedetection.onpremise/examples/onpremise/automaticupdates/updateOnStartUp.js +++ b/fiftyone.devicedetection.onpremise/examples/onpremise/automaticupdates/updateOnStartUp.js @@ -1,6 +1,6 @@ /* ********************************************************************* * This Original Work is copyright of 51 Degrees Mobile Experts Limited. - * Copyright 2023 51 Degrees Mobile Experts Limited, Davidson House, + * Copyright 2025 51 Degrees Mobile Experts Limited, Davidson House, * Forbury Square, Reading, Berkshire, United Kingdom RG1 3EU. * * This Original Work is licensed under the European Union Public Licence diff --git a/fiftyone.devicedetection.onpremise/examples/onpremise/automaticupdates/updatePollingInterval.js b/fiftyone.devicedetection.onpremise/examples/onpremise/automaticupdates/updatePollingInterval.js index 262937d3..6ffff7e0 100644 --- a/fiftyone.devicedetection.onpremise/examples/onpremise/automaticupdates/updatePollingInterval.js +++ b/fiftyone.devicedetection.onpremise/examples/onpremise/automaticupdates/updatePollingInterval.js @@ -1,6 +1,6 @@ /* ********************************************************************* * This Original Work is copyright of 51 Degrees Mobile Experts Limited. - * Copyright 2023 51 Degrees Mobile Experts Limited, Davidson House, + * Copyright 2025 51 Degrees Mobile Experts Limited, Davidson House, * Forbury Square, Reading, Berkshire, United Kingdom RG1 3EU. * * This Original Work is licensed under the European Union Public Licence diff --git a/fiftyone.devicedetection.onpremise/examples/onpremise/exampleUtils.js b/fiftyone.devicedetection.onpremise/examples/onpremise/exampleUtils.js index 019b75c3..670ab7dd 100644 --- a/fiftyone.devicedetection.onpremise/examples/onpremise/exampleUtils.js +++ b/fiftyone.devicedetection.onpremise/examples/onpremise/exampleUtils.js @@ -1,6 +1,6 @@ /* ********************************************************************* * This Original Work is copyright of 51 Degrees Mobile Experts Limited. - * Copyright 2023 51 Degrees Mobile Experts Limited, Davidson House, + * Copyright 2025 51 Degrees Mobile Experts Limited, Davidson House, * Forbury Square, Reading, Berkshire, United Kingdom RG1 3EU. * * This Original Work is licensed under the European Union Public Licence diff --git a/fiftyone.devicedetection.onpremise/examples/onpremise/gettingstarted-console/gettingStarted.js b/fiftyone.devicedetection.onpremise/examples/onpremise/gettingstarted-console/gettingStarted.js index a68d944c..1f6e7dd0 100644 --- a/fiftyone.devicedetection.onpremise/examples/onpremise/gettingstarted-console/gettingStarted.js +++ b/fiftyone.devicedetection.onpremise/examples/onpremise/gettingstarted-console/gettingStarted.js @@ -1,6 +1,6 @@ /* ********************************************************************* * This Original Work is copyright of 51 Degrees Mobile Experts Limited. - * Copyright 2023 51 Degrees Mobile Experts Limited, Davidson House, + * Copyright 2025 51 Degrees Mobile Experts Limited, Davidson House, * Forbury Square, Reading, Berkshire, United Kingdom RG1 3EU. * * This Original Work is licensed under the European Union Public Licence diff --git a/fiftyone.devicedetection.onpremise/examples/onpremise/gettingstarted-console/gettingStarted.test.js b/fiftyone.devicedetection.onpremise/examples/onpremise/gettingstarted-console/gettingStarted.test.js index 10976348..20e79a43 100644 --- a/fiftyone.devicedetection.onpremise/examples/onpremise/gettingstarted-console/gettingStarted.test.js +++ b/fiftyone.devicedetection.onpremise/examples/onpremise/gettingstarted-console/gettingStarted.test.js @@ -1,6 +1,6 @@ /* ********************************************************************* * This Original Work is copyright of 51 Degrees Mobile Experts Limited. - * Copyright 2023 51 Degrees Mobile Experts Limited, Davidson House, + * Copyright 2025 51 Degrees Mobile Experts Limited, Davidson House, * Forbury Square, Reading, Berkshire, United Kingdom RG1 3EU. * * This Original Work is licensed under the European Union Public Licence diff --git a/fiftyone.devicedetection.onpremise/examples/onpremise/gettingstarted-web/gettingStarted.js b/fiftyone.devicedetection.onpremise/examples/onpremise/gettingstarted-web/gettingStarted.js index 7f1cbbda..2d8639eb 100644 --- a/fiftyone.devicedetection.onpremise/examples/onpremise/gettingstarted-web/gettingStarted.js +++ b/fiftyone.devicedetection.onpremise/examples/onpremise/gettingstarted-web/gettingStarted.js @@ -1,6 +1,6 @@ /* ********************************************************************* * This Original Work is copyright of 51 Degrees Mobile Experts Limited. - * Copyright 2023 51 Degrees Mobile Experts Limited, Davidson House, + * Copyright 2025 51 Degrees Mobile Experts Limited, Davidson House, * Forbury Square, Reading, Berkshire, United Kingdom RG1 3EU. * * This Original Work is licensed under the European Union Public Licence diff --git a/fiftyone.devicedetection.onpremise/examples/onpremise/gettingstarted-web/gettingStarted.test.js b/fiftyone.devicedetection.onpremise/examples/onpremise/gettingstarted-web/gettingStarted.test.js index bd8563c0..59738c82 100644 --- a/fiftyone.devicedetection.onpremise/examples/onpremise/gettingstarted-web/gettingStarted.test.js +++ b/fiftyone.devicedetection.onpremise/examples/onpremise/gettingstarted-web/gettingStarted.test.js @@ -1,6 +1,6 @@ /* ********************************************************************* * This Original Work is copyright of 51 Degrees Mobile Experts Limited. - * Copyright 2023 51 Degrees Mobile Experts Limited, Davidson House, + * Copyright 2025 51 Degrees Mobile Experts Limited, Davidson House, * Forbury Square, Reading, Berkshire, United Kingdom RG1 3EU. * * This Original Work is licensed under the European Union Public Licence diff --git a/fiftyone.devicedetection.onpremise/examples/onpremise/matchmetrics-console/matchMetrics.js b/fiftyone.devicedetection.onpremise/examples/onpremise/matchmetrics-console/matchMetrics.js index fac6fc40..da25fbc9 100644 --- a/fiftyone.devicedetection.onpremise/examples/onpremise/matchmetrics-console/matchMetrics.js +++ b/fiftyone.devicedetection.onpremise/examples/onpremise/matchmetrics-console/matchMetrics.js @@ -1,6 +1,6 @@ /* ********************************************************************* * This Original Work is copyright of 51 Degrees Mobile Experts Limited. - * Copyright 2023 51 Degrees Mobile Experts Limited, Davidson House, + * Copyright 2025 51 Degrees Mobile Experts Limited, Davidson House, * Forbury Square, Reading, Berkshire, United Kingdom RG1 3EU. * * This Original Work is licensed under the European Union Public Licence diff --git a/fiftyone.devicedetection.onpremise/examples/onpremise/matchmetrics-console/matchMetrics.test.js b/fiftyone.devicedetection.onpremise/examples/onpremise/matchmetrics-console/matchMetrics.test.js index a82d9ff8..2030fe20 100644 --- a/fiftyone.devicedetection.onpremise/examples/onpremise/matchmetrics-console/matchMetrics.test.js +++ b/fiftyone.devicedetection.onpremise/examples/onpremise/matchmetrics-console/matchMetrics.test.js @@ -1,6 +1,6 @@ /* ********************************************************************* * This Original Work is copyright of 51 Degrees Mobile Experts Limited. - * Copyright 2023 51 Degrees Mobile Experts Limited, Davidson House, + * Copyright 2025 51 Degrees Mobile Experts Limited, Davidson House, * Forbury Square, Reading, Berkshire, United Kingdom RG1 3EU. * * This Original Work is licensed under the European Union Public Licence diff --git a/fiftyone.devicedetection.onpremise/examples/onpremise/metadata-console/metaData.js b/fiftyone.devicedetection.onpremise/examples/onpremise/metadata-console/metaData.js index 147600a7..5b5cfb93 100644 --- a/fiftyone.devicedetection.onpremise/examples/onpremise/metadata-console/metaData.js +++ b/fiftyone.devicedetection.onpremise/examples/onpremise/metadata-console/metaData.js @@ -1,6 +1,6 @@ /* ********************************************************************* * This Original Work is copyright of 51 Degrees Mobile Experts Limited. - * Copyright 2023 51 Degrees Mobile Experts Limited, Davidson House, + * Copyright 2025 51 Degrees Mobile Experts Limited, Davidson House, * Forbury Square, Reading, Berkshire, United Kingdom RG1 3EU. * * This Original Work is licensed under the European Union Public Licence diff --git a/fiftyone.devicedetection.onpremise/examples/onpremise/metadata-console/metaData.test.js b/fiftyone.devicedetection.onpremise/examples/onpremise/metadata-console/metaData.test.js index 21c7bf0d..0174a6d9 100644 --- a/fiftyone.devicedetection.onpremise/examples/onpremise/metadata-console/metaData.test.js +++ b/fiftyone.devicedetection.onpremise/examples/onpremise/metadata-console/metaData.test.js @@ -1,6 +1,6 @@ /* ********************************************************************* * This Original Work is copyright of 51 Degrees Mobile Experts Limited. - * Copyright 2023 51 Degrees Mobile Experts Limited, Davidson House, + * Copyright 2025 51 Degrees Mobile Experts Limited, Davidson House, * Forbury Square, Reading, Berkshire, United Kingdom RG1 3EU. * * This Original Work is licensed under the European Union Public Licence diff --git a/fiftyone.devicedetection.onpremise/examples/onpremise/offlineprocessing-console/offlineProcessing.js b/fiftyone.devicedetection.onpremise/examples/onpremise/offlineprocessing-console/offlineProcessing.js index 1325cfb3..809a1998 100644 --- a/fiftyone.devicedetection.onpremise/examples/onpremise/offlineprocessing-console/offlineProcessing.js +++ b/fiftyone.devicedetection.onpremise/examples/onpremise/offlineprocessing-console/offlineProcessing.js @@ -1,6 +1,6 @@ /* ********************************************************************* * This Original Work is copyright of 51 Degrees Mobile Experts Limited. - * Copyright 2023 51 Degrees Mobile Experts Limited, Davidson House, + * Copyright 2025 51 Degrees Mobile Experts Limited, Davidson House, * Forbury Square, Reading, Berkshire, United Kingdom RG1 3EU. * * This Original Work is licensed under the European Union Public Licence diff --git a/fiftyone.devicedetection.onpremise/examples/onpremise/offlineprocessing-console/offlineProcessing.test.js b/fiftyone.devicedetection.onpremise/examples/onpremise/offlineprocessing-console/offlineProcessing.test.js index e5d3756d..31bfd97b 100644 --- a/fiftyone.devicedetection.onpremise/examples/onpremise/offlineprocessing-console/offlineProcessing.test.js +++ b/fiftyone.devicedetection.onpremise/examples/onpremise/offlineprocessing-console/offlineProcessing.test.js @@ -1,6 +1,6 @@ /* ********************************************************************* * This Original Work is copyright of 51 Degrees Mobile Experts Limited. - * Copyright 2023 51 Degrees Mobile Experts Limited, Davidson House, + * Copyright 2025 51 Degrees Mobile Experts Limited, Davidson House, * Forbury Square, Reading, Berkshire, United Kingdom RG1 3EU. * * This Original Work is licensed under the European Union Public Licence diff --git a/fiftyone.devicedetection.onpremise/examples/onpremise/performance-console/performance.js b/fiftyone.devicedetection.onpremise/examples/onpremise/performance-console/performance.js index 79c2002b..4eabee1e 100644 --- a/fiftyone.devicedetection.onpremise/examples/onpremise/performance-console/performance.js +++ b/fiftyone.devicedetection.onpremise/examples/onpremise/performance-console/performance.js @@ -1,6 +1,6 @@ /* ********************************************************************* * This Original Work is copyright of 51 Degrees Mobile Experts Limited. - * Copyright 2023 51 Degrees Mobile Experts Limited, Davidson House, + * Copyright 2025 51 Degrees Mobile Experts Limited, Davidson House, * Forbury Square, Reading, Berkshire, United Kingdom RG1 3EU. * * This Original Work is licensed under the European Union Public Licence diff --git a/fiftyone.devicedetection.onpremise/examples/onpremise/performance-console/performance.test.js b/fiftyone.devicedetection.onpremise/examples/onpremise/performance-console/performance.test.js index b682459d..e795bff4 100644 --- a/fiftyone.devicedetection.onpremise/examples/onpremise/performance-console/performance.test.js +++ b/fiftyone.devicedetection.onpremise/examples/onpremise/performance-console/performance.test.js @@ -1,6 +1,6 @@ /* ********************************************************************* * This Original Work is copyright of 51 Degrees Mobile Experts Limited. - * Copyright 2023 51 Degrees Mobile Experts Limited, Davidson House, + * Copyright 2025 51 Degrees Mobile Experts Limited, Davidson House, * Forbury Square, Reading, Berkshire, United Kingdom RG1 3EU. * * This Original Work is licensed under the European Union Public Licence diff --git a/fiftyone.devicedetection.onpremise/examples/onpremise/updatedatafile-console/updatedatafile.js b/fiftyone.devicedetection.onpremise/examples/onpremise/updatedatafile-console/updatedatafile.js index 8805a70f..394bcc69 100644 --- a/fiftyone.devicedetection.onpremise/examples/onpremise/updatedatafile-console/updatedatafile.js +++ b/fiftyone.devicedetection.onpremise/examples/onpremise/updatedatafile-console/updatedatafile.js @@ -1,6 +1,6 @@ /* ********************************************************************* * This Original Work is copyright of 51 Degrees Mobile Experts Limited. - * Copyright 2023 51 Degrees Mobile Experts Limited, Davidson House, + * Copyright 2025 51 Degrees Mobile Experts Limited, Davidson House, * Forbury Square, Reading, Berkshire, United Kingdom RG1 3EU. * * This Original Work is licensed under the European Union Public Licence diff --git a/fiftyone.devicedetection.onpremise/examples/onpremise/useragentclienthints-web/userAgentClientHintsWeb.js b/fiftyone.devicedetection.onpremise/examples/onpremise/useragentclienthints-web/userAgentClientHintsWeb.js index 834035cd..84da58a9 100644 --- a/fiftyone.devicedetection.onpremise/examples/onpremise/useragentclienthints-web/userAgentClientHintsWeb.js +++ b/fiftyone.devicedetection.onpremise/examples/onpremise/useragentclienthints-web/userAgentClientHintsWeb.js @@ -1,6 +1,6 @@ /* ********************************************************************* * This Original Work is copyright of 51 Degrees Mobile Experts Limited. - * Copyright 2023 51 Degrees Mobile Experts Limited, Davidson House, + * Copyright 2025 51 Degrees Mobile Experts Limited, Davidson House, * Forbury Square, Reading, Berkshire, United Kingdom RG1 3EU. * * This Original Work is licensed under the European Union Public Licence diff --git a/fiftyone.devicedetection.onpremise/examples/onpremise/useragentclienthints-web/userAgentClientHintsWeb.test.js b/fiftyone.devicedetection.onpremise/examples/onpremise/useragentclienthints-web/userAgentClientHintsWeb.test.js index 56d45463..31150c6a 100644 --- a/fiftyone.devicedetection.onpremise/examples/onpremise/useragentclienthints-web/userAgentClientHintsWeb.test.js +++ b/fiftyone.devicedetection.onpremise/examples/onpremise/useragentclienthints-web/userAgentClientHintsWeb.test.js @@ -1,6 +1,6 @@ /* ********************************************************************* * This Original Work is copyright of 51 Degrees Mobile Experts Limited. - * Copyright 2023 51 Degrees Mobile Experts Limited, Davidson House, + * Copyright 2025 51 Degrees Mobile Experts Limited, Davidson House, * Forbury Square, Reading, Berkshire, United Kingdom RG1 3EU. * * This Original Work is licensed under the European Union Public Licence diff --git a/fiftyone.devicedetection.onpremise/index.js b/fiftyone.devicedetection.onpremise/index.js index 8ca689b9..b761b359 100644 --- a/fiftyone.devicedetection.onpremise/index.js +++ b/fiftyone.devicedetection.onpremise/index.js @@ -1,6 +1,6 @@ /* ********************************************************************* * This Original Work is copyright of 51 Degrees Mobile Experts Limited. - * Copyright 2023 51 Degrees Mobile Experts Limited, Davidson House, + * Copyright 2025 51 Degrees Mobile Experts Limited, Davidson House, * Forbury Square, Reading, Berkshire, United Kingdom RG1 3EU. * * This Original Work is licensed under the European Union Public Licence diff --git a/fiftyone.devicedetection.onpremise/profile.js b/fiftyone.devicedetection.onpremise/profile.js index 3cacdaaf..694ec38a 100644 --- a/fiftyone.devicedetection.onpremise/profile.js +++ b/fiftyone.devicedetection.onpremise/profile.js @@ -1,6 +1,6 @@ /* ********************************************************************* * This Original Work is copyright of 51 Degrees Mobile Experts Limited. - * Copyright 2023 51 Degrees Mobile Experts Limited, Davidson House, + * Copyright 2025 51 Degrees Mobile Experts Limited, Davidson House, * Forbury Square, Reading, Berkshire, United Kingdom RG1 3EU. * * This Original Work is licensed under the European Union Public Licence diff --git a/fiftyone.devicedetection.onpremise/property.js b/fiftyone.devicedetection.onpremise/property.js index 2bfb9d16..b4d47574 100644 --- a/fiftyone.devicedetection.onpremise/property.js +++ b/fiftyone.devicedetection.onpremise/property.js @@ -1,6 +1,6 @@ /* ********************************************************************* * This Original Work is copyright of 51 Degrees Mobile Experts Limited. - * Copyright 2023 51 Degrees Mobile Experts Limited, Davidson House, + * Copyright 2025 51 Degrees Mobile Experts Limited, Davidson House, * Forbury Square, Reading, Berkshire, United Kingdom RG1 3EU. * * This Original Work is licensed under the European Union Public Licence diff --git a/fiftyone.devicedetection.onpremise/swigData.js b/fiftyone.devicedetection.onpremise/swigData.js index eb320528..96715e16 100644 --- a/fiftyone.devicedetection.onpremise/swigData.js +++ b/fiftyone.devicedetection.onpremise/swigData.js @@ -1,6 +1,6 @@ /* ********************************************************************* * This Original Work is copyright of 51 Degrees Mobile Experts Limited. - * Copyright 2023 51 Degrees Mobile Experts Limited, Davidson House, + * Copyright 2025 51 Degrees Mobile Experts Limited, Davidson House, * Forbury Square, Reading, Berkshire, United Kingdom RG1 3EU. * * This Original Work is licensed under the European Union Public Licence diff --git a/fiftyone.devicedetection.onpremise/swigHelpers.js b/fiftyone.devicedetection.onpremise/swigHelpers.js index 424432a5..0b90592b 100644 --- a/fiftyone.devicedetection.onpremise/swigHelpers.js +++ b/fiftyone.devicedetection.onpremise/swigHelpers.js @@ -1,6 +1,6 @@ /* ********************************************************************* * This Original Work is copyright of 51 Degrees Mobile Experts Limited. - * Copyright 2023 51 Degrees Mobile Experts Limited, Davidson House, + * Copyright 2025 51 Degrees Mobile Experts Limited, Davidson House, * Forbury Square, Reading, Berkshire, United Kingdom RG1 3EU. * * This Original Work is licensed under the European Union Public Licence diff --git a/fiftyone.devicedetection.onpremise/tests/badData.test.js b/fiftyone.devicedetection.onpremise/tests/badData.test.js index 46e2d022..20cd54f4 100644 --- a/fiftyone.devicedetection.onpremise/tests/badData.test.js +++ b/fiftyone.devicedetection.onpremise/tests/badData.test.js @@ -1,6 +1,6 @@ /* ********************************************************************* * This Original Work is copyright of 51 Degrees Mobile Experts Limited. - * Copyright 2023 51 Degrees Mobile Experts Limited, Davidson House, + * Copyright 2025 51 Degrees Mobile Experts Limited, Davidson House, * Forbury Square, Reading, Berkshire, United Kingdom RG1 3EU. * * This Original Work is licensed under the European Union Public Licence diff --git a/fiftyone.devicedetection.onpremise/tests/cloud-performance-test/process.js b/fiftyone.devicedetection.onpremise/tests/cloud-performance-test/process.js index 545dac0e..fc3c209d 100644 --- a/fiftyone.devicedetection.onpremise/tests/cloud-performance-test/process.js +++ b/fiftyone.devicedetection.onpremise/tests/cloud-performance-test/process.js @@ -1,6 +1,6 @@ /* ********************************************************************* * This Original Work is copyright of 51 Degrees Mobile Experts Limited. - * Copyright 2023 51 Degrees Mobile Experts Limited, Davidson House, + * Copyright 2025 51 Degrees Mobile Experts Limited, Davidson House, * Forbury Square, Reading, Berkshire, United Kingdom RG1 3EU. * * This Original Work is licensed under the European Union Public Licence diff --git a/fiftyone.devicedetection.onpremise/tests/deviceDetectionOnPremise.test.js b/fiftyone.devicedetection.onpremise/tests/deviceDetectionOnPremise.test.js index b45f9758..358b08c0 100644 --- a/fiftyone.devicedetection.onpremise/tests/deviceDetectionOnPremise.test.js +++ b/fiftyone.devicedetection.onpremise/tests/deviceDetectionOnPremise.test.js @@ -1,6 +1,6 @@ /* ********************************************************************* * This Original Work is copyright of 51 Degrees Mobile Experts Limited. - * Copyright 2023 51 Degrees Mobile Experts Limited, Davidson House, + * Copyright 2025 51 Degrees Mobile Experts Limited, Davidson House, * Forbury Square, Reading, Berkshire, United Kingdom RG1 3EU. * * This Original Work is licensed under the European Union Public Licence diff --git a/fiftyone.devicedetection.onpremise/tests/deviceDetectionOnPremiseValue.test.js b/fiftyone.devicedetection.onpremise/tests/deviceDetectionOnPremiseValue.test.js index 8bed0cdd..eecda53a 100644 --- a/fiftyone.devicedetection.onpremise/tests/deviceDetectionOnPremiseValue.test.js +++ b/fiftyone.devicedetection.onpremise/tests/deviceDetectionOnPremiseValue.test.js @@ -1,6 +1,6 @@ /* ********************************************************************* * This Original Work is copyright of 51 Degrees Mobile Experts Limited. - * Copyright 2023 51 Degrees Mobile Experts Limited, Davidson House, + * Copyright 2025 51 Degrees Mobile Experts Limited, Davidson House, * Forbury Square, Reading, Berkshire, United Kingdom RG1 3EU. * * This Original Work is licensed under the European Union Public Licence diff --git a/fiftyone.devicedetection.onpremise/tests/testHelper.js b/fiftyone.devicedetection.onpremise/tests/testHelper.js index 2816a95d..49259f99 100644 --- a/fiftyone.devicedetection.onpremise/tests/testHelper.js +++ b/fiftyone.devicedetection.onpremise/tests/testHelper.js @@ -1,6 +1,6 @@ /* ********************************************************************* * This Original Work is copyright of 51 Degrees Mobile Experts Limited. - * Copyright 2023 51 Degrees Mobile Experts Limited, Davidson House, + * Copyright 2025 51 Degrees Mobile Experts Limited, Davidson House, * Forbury Square, Reading, Berkshire, United Kingdom RG1 3EU. * * This Original Work is licensed under the European Union Public Licence diff --git a/fiftyone.devicedetection.shared/errorMessages.js b/fiftyone.devicedetection.shared/errorMessages.js index e4a58470..34555a7e 100644 --- a/fiftyone.devicedetection.shared/errorMessages.js +++ b/fiftyone.devicedetection.shared/errorMessages.js @@ -1,6 +1,6 @@ /* ********************************************************************* * This Original Work is copyright of 51 Degrees Mobile Experts Limited. - * Copyright 2023 51 Degrees Mobile Experts Limited, Davidson House, + * Copyright 2025 51 Degrees Mobile Experts Limited, Davidson House, * Forbury Square, Reading, Berkshire, United Kingdom RG1 3EU. * * This Original Work is licensed under the European Union Public Licence diff --git a/fiftyone.devicedetection.shared/examples/dataExtension.js b/fiftyone.devicedetection.shared/examples/dataExtension.js index b70de5a7..8d18e3bc 100644 --- a/fiftyone.devicedetection.shared/examples/dataExtension.js +++ b/fiftyone.devicedetection.shared/examples/dataExtension.js @@ -1,6 +1,6 @@ /* ********************************************************************* * This Original Work is copyright of 51 Degrees Mobile Experts Limited. - * Copyright 2023 51 Degrees Mobile Experts Limited, Davidson House, + * Copyright 2025 51 Degrees Mobile Experts Limited, Davidson House, * Forbury Square, Reading, Berkshire, United Kingdom RG1 3EU. * * This Original Work is licensed under the European Union Public Licence diff --git a/fiftyone.devicedetection.shared/examples/exampleConstants.js b/fiftyone.devicedetection.shared/examples/exampleConstants.js index f5a4f3fe..f818b0b5 100644 --- a/fiftyone.devicedetection.shared/examples/exampleConstants.js +++ b/fiftyone.devicedetection.shared/examples/exampleConstants.js @@ -1,6 +1,6 @@ /* ********************************************************************* * This Original Work is copyright of 51 Degrees Mobile Experts Limited. - * Copyright 2023 51 Degrees Mobile Experts Limited, Davidson House, + * Copyright 2025 51 Degrees Mobile Experts Limited, Davidson House, * Forbury Square, Reading, Berkshire, United Kingdom RG1 3EU. * * This Original Work is licensed under the European Union Public Licence diff --git a/fiftyone.devicedetection.shared/examples/optionsExtension.js b/fiftyone.devicedetection.shared/examples/optionsExtension.js index 40c0ac0c..6e0a52f8 100644 --- a/fiftyone.devicedetection.shared/examples/optionsExtension.js +++ b/fiftyone.devicedetection.shared/examples/optionsExtension.js @@ -1,6 +1,6 @@ /* ********************************************************************* * This Original Work is copyright of 51 Degrees Mobile Experts Limited. - * Copyright 2023 51 Degrees Mobile Experts Limited, Davidson House, + * Copyright 2025 51 Degrees Mobile Experts Limited, Davidson House, * Forbury Square, Reading, Berkshire, United Kingdom RG1 3EU. * * This Original Work is licensed under the European Union Public Licence diff --git a/fiftyone.devicedetection.shared/index.js b/fiftyone.devicedetection.shared/index.js index d720ac7d..28f66e9b 100644 --- a/fiftyone.devicedetection.shared/index.js +++ b/fiftyone.devicedetection.shared/index.js @@ -1,6 +1,6 @@ /* ********************************************************************* * This Original Work is copyright of 51 Degrees Mobile Experts Limited. - * Copyright 2023 51 Degrees Mobile Experts Limited, Davidson House, + * Copyright 2025 51 Degrees Mobile Experts Limited, Davidson House, * Forbury Square, Reading, Berkshire, United Kingdom RG1 3EU. * * This Original Work is licensed under the European Union Public Licence diff --git a/fiftyone.devicedetection.shared/tests/keyUtils.js b/fiftyone.devicedetection.shared/tests/keyUtils.js index 2c75eaa1..9d2f1f21 100644 --- a/fiftyone.devicedetection.shared/tests/keyUtils.js +++ b/fiftyone.devicedetection.shared/tests/keyUtils.js @@ -1,6 +1,6 @@ /* ********************************************************************* * This Original Work is copyright of 51 Degrees Mobile Experts Limited. - * Copyright 2023 51 Degrees Mobile Experts Limited, Davidson House, + * Copyright 2025 51 Degrees Mobile Experts Limited, Davidson House, * Forbury Square, Reading, Berkshire, United Kingdom RG1 3EU. * * This Original Work is licensed under the European Union Public Licence diff --git a/fiftyone.devicedetection.shared/tests/testConstants.js b/fiftyone.devicedetection.shared/tests/testConstants.js index 56f229bc..1e4b2c9a 100644 --- a/fiftyone.devicedetection.shared/tests/testConstants.js +++ b/fiftyone.devicedetection.shared/tests/testConstants.js @@ -1,6 +1,6 @@ /* ********************************************************************* * This Original Work is copyright of 51 Degrees Mobile Experts Limited. - * Copyright 2023 51 Degrees Mobile Experts Limited, Davidson House, + * Copyright 2025 51 Degrees Mobile Experts Limited, Davidson House, * Forbury Square, Reading, Berkshire, United Kingdom RG1 3EU. * * This Original Work is licensed under the European Union Public Licence diff --git a/fiftyone.devicedetection/deviceDetectionPipelineBuilder.js b/fiftyone.devicedetection/deviceDetectionPipelineBuilder.js index 6e21909b..54a2df23 100644 --- a/fiftyone.devicedetection/deviceDetectionPipelineBuilder.js +++ b/fiftyone.devicedetection/deviceDetectionPipelineBuilder.js @@ -1,6 +1,6 @@ /* ********************************************************************* * This Original Work is copyright of 51 Degrees Mobile Experts Limited. - * Copyright 2023 51 Degrees Mobile Experts Limited, Davidson House, + * Copyright 2025 51 Degrees Mobile Experts Limited, Davidson House, * Forbury Square, Reading, Berkshire, United Kingdom RG1 3EU. * * This Original Work is licensed under the European Union Public Licence diff --git a/fiftyone.devicedetection/examples/gettingStarted.js b/fiftyone.devicedetection/examples/gettingStarted.js index 2100894b..e6084cde 100644 --- a/fiftyone.devicedetection/examples/gettingStarted.js +++ b/fiftyone.devicedetection/examples/gettingStarted.js @@ -1,6 +1,6 @@ /* ********************************************************************* * This Original Work is copyright of 51 Degrees Mobile Experts Limited. - * Copyright 2023 51 Degrees Mobile Experts Limited, Davidson House, + * Copyright 2025 51 Degrees Mobile Experts Limited, Davidson House, * Forbury Square, Reading, Berkshire, United Kingdom RG1 3EU. * * This Original Work is licensed under the European Union Public Licence diff --git a/fiftyone.devicedetection/examples/gettingstarted.test.js b/fiftyone.devicedetection/examples/gettingstarted.test.js index c0bd2546..3a575f4a 100644 --- a/fiftyone.devicedetection/examples/gettingstarted.test.js +++ b/fiftyone.devicedetection/examples/gettingstarted.test.js @@ -1,6 +1,6 @@ /* ********************************************************************* * This Original Work is copyright of 51 Degrees Mobile Experts Limited. - * Copyright 2023 51 Degrees Mobile Experts Limited, Davidson House, + * Copyright 2025 51 Degrees Mobile Experts Limited, Davidson House, * Forbury Square, Reading, Berkshire, United Kingdom RG1 3EU. * * This Original Work is licensed under the European Union Public Licence diff --git a/fiftyone.devicedetection/index.js b/fiftyone.devicedetection/index.js index a9967f4a..dcbd362b 100644 --- a/fiftyone.devicedetection/index.js +++ b/fiftyone.devicedetection/index.js @@ -1,6 +1,6 @@ /* ********************************************************************* * This Original Work is copyright of 51 Degrees Mobile Experts Limited. - * Copyright 2023 51 Degrees Mobile Experts Limited, Davidson House, + * Copyright 2025 51 Degrees Mobile Experts Limited, Davidson House, * Forbury Square, Reading, Berkshire, United Kingdom RG1 3EU. * * This Original Work is licensed under the European Union Public Licence diff --git a/fiftyone.devicedetection/tests/deviceDetectionCloud.test.js b/fiftyone.devicedetection/tests/deviceDetectionCloud.test.js index e9d49dc8..2189f1fe 100644 --- a/fiftyone.devicedetection/tests/deviceDetectionCloud.test.js +++ b/fiftyone.devicedetection/tests/deviceDetectionCloud.test.js @@ -1,6 +1,6 @@ /* ********************************************************************* * This Original Work is copyright of 51 Degrees Mobile Experts Limited. - * Copyright 2023 51 Degrees Mobile Experts Limited, Davidson House, + * Copyright 2025 51 Degrees Mobile Experts Limited, Davidson House, * Forbury Square, Reading, Berkshire, United Kingdom RG1 3EU. * * This Original Work is licensed under the European Union Public Licence diff --git a/fiftyone.devicedetection/tests/deviceDetectionOnPremise.test.js b/fiftyone.devicedetection/tests/deviceDetectionOnPremise.test.js index 0dbcfccf..190ce2d6 100644 --- a/fiftyone.devicedetection/tests/deviceDetectionOnPremise.test.js +++ b/fiftyone.devicedetection/tests/deviceDetectionOnPremise.test.js @@ -1,6 +1,6 @@ /* ********************************************************************* * This Original Work is copyright of 51 Degrees Mobile Experts Limited. - * Copyright 2023 51 Degrees Mobile Experts Limited, Davidson House, + * Copyright 2025 51 Degrees Mobile Experts Limited, Davidson House, * Forbury Square, Reading, Berkshire, United Kingdom RG1 3EU. * * This Original Work is licensed under the European Union Public Licence diff --git a/setup.js b/setup.js index cfeb7ed8..975e2e26 100644 --- a/setup.js +++ b/setup.js @@ -1,6 +1,6 @@ /* ********************************************************************* * This Original Work is copyright of 51 Degrees Mobile Experts Limited. - * Copyright 2023 51 Degrees Mobile Experts Limited, Davidson House, + * Copyright 2025 51 Degrees Mobile Experts Limited, Davidson House, * Forbury Square, Reading, Berkshire, United Kingdom RG1 3EU. * * This Original Work is licensed under the European Union Public Licence