diff --git a/.github/workflows/checks.yml b/.github/workflows/checks.yml index b2dd682b5f..67c65fa39d 100644 --- a/.github/workflows/checks.yml +++ b/.github/workflows/checks.yml @@ -27,7 +27,7 @@ jobs: - name: install dependencies run: | sudo apt-get update - sudo apt-get install clang libqt5opengl5-dev libqt5svg5-dev libglvnd-dev libeigen3-dev zlib1g-dev libfftw3-dev python3-distutils + sudo apt-get install clang libqt5opengl5-dev libqt5svg5-dev libglvnd-dev libeigen3-dev zlib1g-dev libfftw3-dev libpng-dev - name: configure run: ./configure -assert || { cat configure.log; false; } @@ -182,13 +182,7 @@ jobs: run: python3 -m sphinx -n -N -W -w sphinx.log docs/ tmp/ - name: install build dependencies - run: sudo apt-get install python2 clang libqt5opengl5-dev libqt5svg5-dev libglvnd-dev libeigen3-dev zlib1g-dev libfftw3-dev - - - name: check configure with Python 2 - run: python2 ./configure || { cat configure.log; false; } - - - name: check build with Python 2 - run: python2 ./build -dryrun || { cat build.log; false; } + run: sudo apt-get install clang libqt5opengl5-dev libqt5svg5-dev libglvnd-dev libeigen3-dev zlib1g-dev libfftw3-dev - name: check configure with Python 3 run: python3 ./configure || { cat configure.log; false; } diff --git a/bin/5ttgen b/bin/5ttgen index ace4ff2df2..f473eb254b 100755 --- a/bin/5ttgen +++ b/bin/5ttgen @@ -1,6 +1,6 @@ #!/usr/bin/env python -# Copyright (c) 2008-2024 the MRtrix3 contributors. +# Copyright (c) 2008-2025 the MRtrix3 contributors. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/bin/blend b/bin/blend index 656c9c3d9a..953daea6ce 100755 --- a/bin/blend +++ b/bin/blend @@ -1,6 +1,6 @@ #!/usr/bin/env python2 -# Copyright (c) 2008-2024 the MRtrix3 contributors. +# Copyright (c) 2008-2025 the MRtrix3 contributors. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/bin/convert_bruker b/bin/convert_bruker index 854f2e462c..4dd6abc7c1 100755 --- a/bin/convert_bruker +++ b/bin/convert_bruker @@ -1,6 +1,6 @@ #!/usr/bin/env python -# Copyright (c) 2008-2024 the MRtrix3 contributors. +# Copyright (c) 2008-2025 the MRtrix3 contributors. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/bin/dwi2response b/bin/dwi2response index 8269dcd5ba..160f98e3e5 100755 --- a/bin/dwi2response +++ b/bin/dwi2response @@ -1,6 +1,6 @@ #!/usr/bin/env python -# Copyright (c) 2008-2024 the MRtrix3 contributors. +# Copyright (c) 2008-2025 the MRtrix3 contributors. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/bin/dwibiascorrect b/bin/dwibiascorrect index 75946b7e39..98e50afb10 100755 --- a/bin/dwibiascorrect +++ b/bin/dwibiascorrect @@ -1,6 +1,6 @@ #!/usr/bin/env python -# Copyright (c) 2008-2024 the MRtrix3 contributors. +# Copyright (c) 2008-2025 the MRtrix3 contributors. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/bin/dwicat b/bin/dwicat index 4f547f5779..42269e4a6d 100755 --- a/bin/dwicat +++ b/bin/dwicat @@ -1,6 +1,6 @@ #!/usr/bin/env python -# Copyright (c) 2008-2024 the MRtrix3 contributors. +# Copyright (c) 2008-2025 the MRtrix3 contributors. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/bin/dwifslpreproc b/bin/dwifslpreproc index 30624cb188..78776ba556 100755 --- a/bin/dwifslpreproc +++ b/bin/dwifslpreproc @@ -1,6 +1,6 @@ #!/usr/bin/env python -# Copyright (c) 2008-2024 the MRtrix3 contributors. +# Copyright (c) 2008-2025 the MRtrix3 contributors. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this @@ -23,7 +23,10 @@ import itertools, json, math, os, shutil, sys -from distutils.spawn import find_executable +try: + from shutil import which as find_executable +except ImportError: + from distutils.spawn import find_executable # pylint: disable=deprecated-module @@ -115,7 +118,11 @@ def execute(): #pylint: disable=unused-variable if not fsl_path: raise MRtrixError('Environment variable FSLDIR is not set; please run appropriate FSL configuration script') - if not pe_design == 'None': + if pe_design == 'None': + topup_config_path = None + topup_cmd = None + applytopup_cmd = None + else: topup_config_path = os.path.join(fsl_path, 'etc', 'flirtsch', 'b02b0.cnf') if not os.path.isfile(topup_config_path): raise MRtrixError('Could not find necessary default config file for FSL topup command (expected location: ' + topup_config_path + ')') @@ -513,7 +520,7 @@ def execute(): #pylint: disable=unused-variable # Deal with the phase-encoding of the images to be fed to topup (if applicable) - do_topup = (not pe_design == 'None') + do_topup = pe_design != 'None' overwrite_se_epi_pe_scheme = False se_epi_path = 'se_epi.mif' dwi_permvols_preeddy_option = '' diff --git a/bin/dwigradcheck b/bin/dwigradcheck index 86d310fa8b..8009cb8789 100755 --- a/bin/dwigradcheck +++ b/bin/dwigradcheck @@ -1,6 +1,6 @@ #!/usr/bin/env python -# Copyright (c) 2008-2024 the MRtrix3 contributors. +# Copyright (c) 2008-2025 the MRtrix3 contributors. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this @@ -163,6 +163,9 @@ def execute(): #pylint: disable=unused-variable grad_option = ' -fslgrad ' + grad_path + ' bvals' + else: + assert False + # Run the tracking experiment run.command('tckgen -algorithm tensor_det data.mif' + grad_option + ' -seed_image mask.mif -mask mask.mif' + number_option + ' -minlength 0 -downsample 5 tracks' + suffix + '.tck') @@ -202,6 +205,8 @@ def execute(): #pylint: disable=unused-variable grad_import_option = ' -grad grad' + suffix + '.b' elif best[3] == 'image': grad_import_option = ' -fslgrad bvecs' + suffix + ' bvals' + else: + assert False run.command('mrinfo data.mif' + grad_import_option + grad_export_option, force=app.FORCE_OVERWRITE) diff --git a/bin/dwinormalise b/bin/dwinormalise index 743bcd3127..0935cabe17 100755 --- a/bin/dwinormalise +++ b/bin/dwinormalise @@ -1,6 +1,6 @@ #!/usr/bin/env python -# Copyright (c) 2008-2024 the MRtrix3 contributors. +# Copyright (c) 2008-2025 the MRtrix3 contributors. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/bin/dwishellmath b/bin/dwishellmath index 689075cf6d..ac7a3ab965 100755 --- a/bin/dwishellmath +++ b/bin/dwishellmath @@ -1,6 +1,6 @@ #!/usr/bin/env python -# Copyright (c) 2008-2024 the MRtrix3 contributors. +# Copyright (c) 2008-2025 the MRtrix3 contributors. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/bin/for_each b/bin/for_each index fb41d7b3f7..c8ae85fd5f 100755 --- a/bin/for_each +++ b/bin/for_each @@ -1,6 +1,6 @@ #!/usr/bin/env python -# Copyright (c) 2008-2024 the MRtrix3 contributors. +# Copyright (c) 2008-2025 the MRtrix3 contributors. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/bin/gen_scheme b/bin/gen_scheme index 406a7c965b..0f5a374ba1 100755 --- a/bin/gen_scheme +++ b/bin/gen_scheme @@ -1,6 +1,6 @@ #!/bin/bash -# Copyright (c) 2008-2024 the MRtrix3 contributors. +# Copyright (c) 2008-2025 the MRtrix3 contributors. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/bin/labelsgmfix b/bin/labelsgmfix index 7e7d36ac4b..6c5acca716 100755 --- a/bin/labelsgmfix +++ b/bin/labelsgmfix @@ -1,6 +1,6 @@ #!/usr/bin/env python -# Copyright (c) 2008-2024 the MRtrix3 contributors. +# Copyright (c) 2008-2025 the MRtrix3 contributors. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/bin/mrtrix_cleanup b/bin/mrtrix_cleanup index bfbe821304..7491700040 100755 --- a/bin/mrtrix_cleanup +++ b/bin/mrtrix_cleanup @@ -1,6 +1,6 @@ #!/usr/bin/env python -# Copyright (c) 2008-2024 the MRtrix3 contributors. +# Copyright (c) 2008-2025 the MRtrix3 contributors. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/bin/notfound b/bin/notfound index b9c5be81b4..8a30ae75f6 100755 --- a/bin/notfound +++ b/bin/notfound @@ -1,6 +1,6 @@ #!/bin/bash -# Copyright (c) 2008-2024 the MRtrix3 contributors. +# Copyright (c) 2008-2025 the MRtrix3 contributors. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/bin/population_template b/bin/population_template index ec2c2de67e..edd1635b94 100755 --- a/bin/population_template +++ b/bin/population_template @@ -1,6 +1,6 @@ #!/usr/bin/env python -# Copyright (c) 2008-2024 the MRtrix3 contributors. +# Copyright (c) 2008-2025 the MRtrix3 contributors. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this @@ -119,7 +119,7 @@ def copy(src, dst, follow_symlinks=True): return dst -def check_linear_transformation(transformation, cmd, max_scaling=0.5, max_shear=0.2, max_rot=None, pause_on_warn=True): +def check_linear_transformation(transformation, cmd, max_scaling=0.5, max_shear=0.2, max_rot=None, pause_on_warn=True): #pylint: disable=too-many-positional-arguments from mrtrix3 import app, run, utils #pylint: disable=no-name-in-module, import-outside-toplevel if max_rot is None: max_rot = 2 * math.pi @@ -385,7 +385,7 @@ class Input(object): copy files into folders in current working directory. modifies _local_ims and _local_msk """ - def __init__(self, uid, filenames, directories, contrasts, mask_filename='', mask_directory=''): + def __init__(self, uid, filenames, directories, contrasts, mask_filename='', mask_directory=''): #pylint: disable=too-many-positional-arguments self.contrasts = contrasts self.uid = uid @@ -923,7 +923,7 @@ def execute(): #pylint: disable=unused-variable if use_masks: path.make_dir('mask_transformed') - write_log = (app.VERBOSITY >= 2) + write_log = app.VERBOSITY >= 2 if write_log: path.make_dir('log') diff --git a/bin/responsemean b/bin/responsemean index 5f5c3c06b4..76f94bceaf 100755 --- a/bin/responsemean +++ b/bin/responsemean @@ -1,6 +1,6 @@ #!/usr/bin/env python -# Copyright (c) 2008-2024 the MRtrix3 contributors. +# Copyright (c) 2008-2025 the MRtrix3 contributors. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/build b/build index 807f3c1954..6294b31268 100755 --- a/build +++ b/build @@ -1,6 +1,6 @@ #!/usr/bin/env python -# Copyright (c) 2008-2024 the MRtrix3 contributors. +# Copyright (c) 2008-2025 the MRtrix3 contributors. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this @@ -868,7 +868,10 @@ class Entry(object): return self.timestamp == float("inf") or self.timestamp < self.dep_timestamp def display (self, indent=''): - show_rebuild = lambda x: x+' [REBUILD]' if todo[x].need_rebuild() else x + def show_rebuild(x): + if not todo[x].need_rebuild(): + return x + return x+' [REBUILD]' msg = indent + '[' + self.action + '] ' + show_rebuild (self.name) + ':\n' msg += indent + ' timestamp: ' + str(self.timestamp) if self.deps: diff --git a/check_syntax b/check_syntax index cf9f6c37f2..4679a3f02c 100755 --- a/check_syntax +++ b/check_syntax @@ -1,6 +1,6 @@ #!/bin/bash -# Copyright (c) 2008-2024 the MRtrix3 contributors. +# Copyright (c) 2008-2025 the MRtrix3 contributors. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/5tt2gmwmi.cpp b/cmd/5tt2gmwmi.cpp index 15043cb868..470ebc8c68 100644 --- a/cmd/5tt2gmwmi.cpp +++ b/cmd/5tt2gmwmi.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/5tt2vis.cpp b/cmd/5tt2vis.cpp index e74ad15f27..418fff46e8 100644 --- a/cmd/5tt2vis.cpp +++ b/cmd/5tt2vis.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/5ttcheck.cpp b/cmd/5ttcheck.cpp index c50942c607..297283dc24 100644 --- a/cmd/5ttcheck.cpp +++ b/cmd/5ttcheck.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/5ttedit.cpp b/cmd/5ttedit.cpp index adb446e4b6..9948b66350 100644 --- a/cmd/5ttedit.cpp +++ b/cmd/5ttedit.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/afdconnectivity.cpp b/cmd/afdconnectivity.cpp index 6d3fce80c6..c615a2be0e 100644 --- a/cmd/afdconnectivity.cpp +++ b/cmd/afdconnectivity.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/amp2response.cpp b/cmd/amp2response.cpp index a0425e2903..fe47afe598 100644 --- a/cmd/amp2response.cpp +++ b/cmd/amp2response.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/amp2sh.cpp b/cmd/amp2sh.cpp index 8fbce833de..d24f51824f 100644 --- a/cmd/amp2sh.cpp +++ b/cmd/amp2sh.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/connectome2tck.cpp b/cmd/connectome2tck.cpp index 693fafffe3..46b2de9b59 100644 --- a/cmd/connectome2tck.cpp +++ b/cmd/connectome2tck.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/connectomeedit.cpp b/cmd/connectomeedit.cpp index bf5ef0214b..fe5e6325a8 100644 --- a/cmd/connectomeedit.cpp +++ b/cmd/connectomeedit.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/connectomestats.cpp b/cmd/connectomestats.cpp index 39c035cbcc..76fbbb4fe0 100644 --- a/cmd/connectomestats.cpp +++ b/cmd/connectomestats.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/dcmedit.cpp b/cmd/dcmedit.cpp index a467c18152..c98bac62a4 100644 --- a/cmd/dcmedit.cpp +++ b/cmd/dcmedit.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/dcminfo.cpp b/cmd/dcminfo.cpp index 77e2f02d3f..d3734bc310 100644 --- a/cmd/dcminfo.cpp +++ b/cmd/dcminfo.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/dirflip.cpp b/cmd/dirflip.cpp index 97bd2694ad..8354e68862 100644 --- a/cmd/dirflip.cpp +++ b/cmd/dirflip.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/dirgen.cpp b/cmd/dirgen.cpp index 94880ed015..826b5ed9c9 100644 --- a/cmd/dirgen.cpp +++ b/cmd/dirgen.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/dirmerge.cpp b/cmd/dirmerge.cpp index 9ed929db21..35154cf428 100644 --- a/cmd/dirmerge.cpp +++ b/cmd/dirmerge.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/dirorder.cpp b/cmd/dirorder.cpp index 95ec7e6f1d..76bc1c47c0 100644 --- a/cmd/dirorder.cpp +++ b/cmd/dirorder.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/dirsplit.cpp b/cmd/dirsplit.cpp index 7407b342cc..9c151298b0 100644 --- a/cmd/dirsplit.cpp +++ b/cmd/dirsplit.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/dirstat.cpp b/cmd/dirstat.cpp index 6084910fcb..9da312c96f 100644 --- a/cmd/dirstat.cpp +++ b/cmd/dirstat.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/dwi2adc.cpp b/cmd/dwi2adc.cpp index 3854467a82..3aa4cf2a89 100644 --- a/cmd/dwi2adc.cpp +++ b/cmd/dwi2adc.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/dwi2fod.cpp b/cmd/dwi2fod.cpp index 280d82bec5..325096947b 100644 --- a/cmd/dwi2fod.cpp +++ b/cmd/dwi2fod.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/dwi2mask.cpp b/cmd/dwi2mask.cpp index 466f62c5ad..dcc237739b 100644 --- a/cmd/dwi2mask.cpp +++ b/cmd/dwi2mask.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/dwi2tensor.cpp b/cmd/dwi2tensor.cpp index c814732552..43f4e9b1f2 100644 --- a/cmd/dwi2tensor.cpp +++ b/cmd/dwi2tensor.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/dwidenoise.cpp b/cmd/dwidenoise.cpp index 486b599f1b..6234fba2ff 100644 --- a/cmd/dwidenoise.cpp +++ b/cmd/dwidenoise.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/dwiextract.cpp b/cmd/dwiextract.cpp index 2b3d38891d..3031e4b67f 100644 --- a/cmd/dwiextract.cpp +++ b/cmd/dwiextract.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/fixel2peaks.cpp b/cmd/fixel2peaks.cpp index cf62dc1b97..b749bd028f 100644 --- a/cmd/fixel2peaks.cpp +++ b/cmd/fixel2peaks.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/fixel2sh.cpp b/cmd/fixel2sh.cpp index b08fbff046..32c622c31b 100644 --- a/cmd/fixel2sh.cpp +++ b/cmd/fixel2sh.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/fixel2tsf.cpp b/cmd/fixel2tsf.cpp index 153dc5b0eb..6efb2ee9d6 100644 --- a/cmd/fixel2tsf.cpp +++ b/cmd/fixel2tsf.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/fixel2voxel.cpp b/cmd/fixel2voxel.cpp index 98d38864d6..21160706c6 100644 --- a/cmd/fixel2voxel.cpp +++ b/cmd/fixel2voxel.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/fixelcfestats.cpp b/cmd/fixelcfestats.cpp index 7566983125..b7b0d88731 100644 --- a/cmd/fixelcfestats.cpp +++ b/cmd/fixelcfestats.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/fixelconnectivity.cpp b/cmd/fixelconnectivity.cpp index 1f4b87d777..a7e16286d6 100644 --- a/cmd/fixelconnectivity.cpp +++ b/cmd/fixelconnectivity.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/fixelconvert.cpp b/cmd/fixelconvert.cpp index 9a59639f22..a683b5fe45 100644 --- a/cmd/fixelconvert.cpp +++ b/cmd/fixelconvert.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/fixelcorrespondence.cpp b/cmd/fixelcorrespondence.cpp index 4f64b81a64..2ae594778e 100644 --- a/cmd/fixelcorrespondence.cpp +++ b/cmd/fixelcorrespondence.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/fixelcrop.cpp b/cmd/fixelcrop.cpp index c31ec5c2d3..7835a55fcf 100644 --- a/cmd/fixelcrop.cpp +++ b/cmd/fixelcrop.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/fixelfilter.cpp b/cmd/fixelfilter.cpp index 95cbb0144d..2a2123ad40 100644 --- a/cmd/fixelfilter.cpp +++ b/cmd/fixelfilter.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/fixelreorient.cpp b/cmd/fixelreorient.cpp index 629ab109d9..cbf72e19e0 100644 --- a/cmd/fixelreorient.cpp +++ b/cmd/fixelreorient.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/fod2dec.cpp b/cmd/fod2dec.cpp index c5cf137106..8696b333e5 100644 --- a/cmd/fod2dec.cpp +++ b/cmd/fod2dec.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/fod2fixel.cpp b/cmd/fod2fixel.cpp index cfdc70a581..b1f73eab5b 100644 --- a/cmd/fod2fixel.cpp +++ b/cmd/fod2fixel.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/label2colour.cpp b/cmd/label2colour.cpp index 02d1604917..c251a08b53 100644 --- a/cmd/label2colour.cpp +++ b/cmd/label2colour.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/label2mesh.cpp b/cmd/label2mesh.cpp index ce1e6971fc..d4f46e1d37 100644 --- a/cmd/label2mesh.cpp +++ b/cmd/label2mesh.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/labelconvert.cpp b/cmd/labelconvert.cpp index fe77f5bd18..4330415b70 100644 --- a/cmd/labelconvert.cpp +++ b/cmd/labelconvert.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/labelstats.cpp b/cmd/labelstats.cpp index d1321f325a..3cde24a8ef 100644 --- a/cmd/labelstats.cpp +++ b/cmd/labelstats.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/maskdump.cpp b/cmd/maskdump.cpp index 53a61269bc..a45bed35c0 100644 --- a/cmd/maskdump.cpp +++ b/cmd/maskdump.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/maskfilter.cpp b/cmd/maskfilter.cpp index 879723f069..8c10eddccf 100644 --- a/cmd/maskfilter.cpp +++ b/cmd/maskfilter.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/mesh2voxel.cpp b/cmd/mesh2voxel.cpp index 309f9f184e..066d770f88 100644 --- a/cmd/mesh2voxel.cpp +++ b/cmd/mesh2voxel.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/meshconvert.cpp b/cmd/meshconvert.cpp index 3398ddfc59..6980382fc4 100644 --- a/cmd/meshconvert.cpp +++ b/cmd/meshconvert.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/meshfilter.cpp b/cmd/meshfilter.cpp index 544654da8f..d3023ae0b4 100644 --- a/cmd/meshfilter.cpp +++ b/cmd/meshfilter.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/mraverageheader.cpp b/cmd/mraverageheader.cpp index 95af867a76..c01ed51785 100644 --- a/cmd/mraverageheader.cpp +++ b/cmd/mraverageheader.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/mrcalc.cpp b/cmd/mrcalc.cpp index c7a7950861..d8dbfb4a7d 100644 --- a/cmd/mrcalc.cpp +++ b/cmd/mrcalc.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/mrcat.cpp b/cmd/mrcat.cpp index 8c8a5c88a1..42e0ee5586 100644 --- a/cmd/mrcat.cpp +++ b/cmd/mrcat.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/mrcentroid.cpp b/cmd/mrcentroid.cpp index 06252f2da8..559475fd0f 100644 --- a/cmd/mrcentroid.cpp +++ b/cmd/mrcentroid.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/mrcheckerboardmask.cpp b/cmd/mrcheckerboardmask.cpp index 0c438e249f..c90433ca60 100644 --- a/cmd/mrcheckerboardmask.cpp +++ b/cmd/mrcheckerboardmask.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/mrclusterstats.cpp b/cmd/mrclusterstats.cpp index 41614745f1..9a514ea012 100644 --- a/cmd/mrclusterstats.cpp +++ b/cmd/mrclusterstats.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/mrcolour.cpp b/cmd/mrcolour.cpp index 3dcf26587a..0316495ccf 100644 --- a/cmd/mrcolour.cpp +++ b/cmd/mrcolour.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/mrconvert.cpp b/cmd/mrconvert.cpp index 0525545965..089ba2ca43 100644 --- a/cmd/mrconvert.cpp +++ b/cmd/mrconvert.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/mrdegibbs.cpp b/cmd/mrdegibbs.cpp index a260173650..72af039959 100644 --- a/cmd/mrdegibbs.cpp +++ b/cmd/mrdegibbs.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this @@ -20,6 +20,7 @@ #include "command.h" #include "image.h" #include "progressbar.h" +#include "types.h" #include "algo/threaded_loop.h" #include @@ -208,15 +209,15 @@ class ComputeSlice const int numlines = eig.cols(); shifted.resize (n, 2*nsh+1); - int shifts [2*nsh+1]; + vector shifts(2*nsh+1); shifts[0] = 0; for (int j = 0; j < nsh; j++) { shifts[j+1] = j+1; shifts[1+nsh+j] = -(j+1); } - double TV1arr[2*nsh+1]; - double TV2arr[2*nsh+1]; + vector TV1arr(2*nsh+1); + vector TV2arr(2*nsh+1); for (int k = 0; k < numlines; k++) { shifted.col(0) = eig.col(k); diff --git a/cmd/mrdump.cpp b/cmd/mrdump.cpp index f2cb4ec646..67bd716fa8 100644 --- a/cmd/mrdump.cpp +++ b/cmd/mrdump.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/mredit.cpp b/cmd/mredit.cpp index 6bde31d640..ca5b385273 100644 --- a/cmd/mredit.cpp +++ b/cmd/mredit.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/mrfilter.cpp b/cmd/mrfilter.cpp index 3eb03b2a59..c8fd8f1c21 100644 --- a/cmd/mrfilter.cpp +++ b/cmd/mrfilter.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/mrgrid.cpp b/cmd/mrgrid.cpp index 21c3f34de0..6c2183d5e3 100644 --- a/cmd/mrgrid.cpp +++ b/cmd/mrgrid.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/mrhistmatch.cpp b/cmd/mrhistmatch.cpp index babae0d812..9f9f1de243 100644 --- a/cmd/mrhistmatch.cpp +++ b/cmd/mrhistmatch.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/mrhistogram.cpp b/cmd/mrhistogram.cpp index 5333943109..51c9d30034 100644 --- a/cmd/mrhistogram.cpp +++ b/cmd/mrhistogram.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/mrinfo.cpp b/cmd/mrinfo.cpp index 6daa025bfd..8e0f8c66cd 100644 --- a/cmd/mrinfo.cpp +++ b/cmd/mrinfo.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/mrmath.cpp b/cmd/mrmath.cpp index 4597225703..c1fb5d9758 100644 --- a/cmd/mrmath.cpp +++ b/cmd/mrmath.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/mrmetric.cpp b/cmd/mrmetric.cpp index 9257e39eb9..087f70ede7 100644 --- a/cmd/mrmetric.cpp +++ b/cmd/mrmetric.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/mrregister.cpp b/cmd/mrregister.cpp index 21d8577beb..31f0d11dd2 100644 --- a/cmd/mrregister.cpp +++ b/cmd/mrregister.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/mrstats.cpp b/cmd/mrstats.cpp index 24084241d8..5ec54cfe21 100644 --- a/cmd/mrstats.cpp +++ b/cmd/mrstats.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/mrthreshold.cpp b/cmd/mrthreshold.cpp index 209d6dba79..345d087d9e 100644 --- a/cmd/mrthreshold.cpp +++ b/cmd/mrthreshold.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/mrtransform.cpp b/cmd/mrtransform.cpp index 8fdfb4a285..ae4b522aee 100644 --- a/cmd/mrtransform.cpp +++ b/cmd/mrtransform.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/mrview.cpp b/cmd/mrview.cpp index 2d5f26a1f9..2c2e32cd5f 100644 --- a/cmd/mrview.cpp +++ b/cmd/mrview.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/mtnormalise.cpp b/cmd/mtnormalise.cpp index 79dbab59d6..13f73f34f9 100644 --- a/cmd/mtnormalise.cpp +++ b/cmd/mtnormalise.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/peaks2amp.cpp b/cmd/peaks2amp.cpp index d7e0ef40c4..93d5fc0ce9 100644 --- a/cmd/peaks2amp.cpp +++ b/cmd/peaks2amp.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/peaks2fixel.cpp b/cmd/peaks2fixel.cpp index cddb9821c5..4dea90780a 100644 --- a/cmd/peaks2fixel.cpp +++ b/cmd/peaks2fixel.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/sh2amp.cpp b/cmd/sh2amp.cpp index 33ef5ffeec..27ee8d2074 100644 --- a/cmd/sh2amp.cpp +++ b/cmd/sh2amp.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/sh2peaks.cpp b/cmd/sh2peaks.cpp index 4846b6647c..d76c7bd3d9 100644 --- a/cmd/sh2peaks.cpp +++ b/cmd/sh2peaks.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/sh2power.cpp b/cmd/sh2power.cpp index 1204852d5c..a71100c18f 100644 --- a/cmd/sh2power.cpp +++ b/cmd/sh2power.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/sh2response.cpp b/cmd/sh2response.cpp index 1bb9e2c202..ad04479910 100644 --- a/cmd/sh2response.cpp +++ b/cmd/sh2response.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/shbasis.cpp b/cmd/shbasis.cpp index 7be92baed9..bfc97a1f4e 100644 --- a/cmd/shbasis.cpp +++ b/cmd/shbasis.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/shconv.cpp b/cmd/shconv.cpp index 7d8c0c2196..0939e0a7c6 100644 --- a/cmd/shconv.cpp +++ b/cmd/shconv.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/shview.cpp b/cmd/shview.cpp index 7e996d941d..21c2839f8d 100644 --- a/cmd/shview.cpp +++ b/cmd/shview.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/tck2connectome.cpp b/cmd/tck2connectome.cpp index 62cd57227b..2ad1c358d1 100644 --- a/cmd/tck2connectome.cpp +++ b/cmd/tck2connectome.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/tck2fixel.cpp b/cmd/tck2fixel.cpp index 58df89d0eb..2e8ce20aee 100644 --- a/cmd/tck2fixel.cpp +++ b/cmd/tck2fixel.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/tckconvert.cpp b/cmd/tckconvert.cpp index a5520fc99c..61451ca004 100644 --- a/cmd/tckconvert.cpp +++ b/cmd/tckconvert.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/tckdfc.cpp b/cmd/tckdfc.cpp index d476aae113..1ec170105c 100644 --- a/cmd/tckdfc.cpp +++ b/cmd/tckdfc.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/tckedit.cpp b/cmd/tckedit.cpp index 70114c089b..5d8f2691ac 100644 --- a/cmd/tckedit.cpp +++ b/cmd/tckedit.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/tckgen.cpp b/cmd/tckgen.cpp index 55a5097e50..fb56fb93d0 100644 --- a/cmd/tckgen.cpp +++ b/cmd/tckgen.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/tckglobal.cpp b/cmd/tckglobal.cpp index 7c4f4e560e..939c567fe3 100644 --- a/cmd/tckglobal.cpp +++ b/cmd/tckglobal.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/tckinfo.cpp b/cmd/tckinfo.cpp index cdcc592398..641c668abd 100644 --- a/cmd/tckinfo.cpp +++ b/cmd/tckinfo.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/tckmap.cpp b/cmd/tckmap.cpp index f85645c2ff..711ca114fb 100644 --- a/cmd/tckmap.cpp +++ b/cmd/tckmap.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/tckresample.cpp b/cmd/tckresample.cpp index e644be1287..60c5c0856e 100644 --- a/cmd/tckresample.cpp +++ b/cmd/tckresample.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/tcksample.cpp b/cmd/tcksample.cpp index 01e3375e18..5ce5085e3a 100644 --- a/cmd/tcksample.cpp +++ b/cmd/tcksample.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/tcksift.cpp b/cmd/tcksift.cpp index 6881390bcf..75ddaef4dc 100644 --- a/cmd/tcksift.cpp +++ b/cmd/tcksift.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/tcksift2.cpp b/cmd/tcksift2.cpp index 702ac7a6fa..46a73bdf62 100644 --- a/cmd/tcksift2.cpp +++ b/cmd/tcksift2.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/tckstats.cpp b/cmd/tckstats.cpp index 5cd49124cf..9d4dc1ae0d 100644 --- a/cmd/tckstats.cpp +++ b/cmd/tckstats.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/tcktransform.cpp b/cmd/tcktransform.cpp index bc18c818e9..cb165f6af4 100644 --- a/cmd/tcktransform.cpp +++ b/cmd/tcktransform.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/tensor2metric.cpp b/cmd/tensor2metric.cpp index 2171e5803b..a04973a60b 100644 --- a/cmd/tensor2metric.cpp +++ b/cmd/tensor2metric.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/transformcalc.cpp b/cmd/transformcalc.cpp index 095a5c355e..9bdfcf6287 100644 --- a/cmd/transformcalc.cpp +++ b/cmd/transformcalc.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/transformcompose.cpp b/cmd/transformcompose.cpp index 4a63e95d9c..7502db2cb2 100644 --- a/cmd/transformcompose.cpp +++ b/cmd/transformcompose.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/transformconvert.cpp b/cmd/transformconvert.cpp index 1281316709..9d4289fd71 100644 --- a/cmd/transformconvert.cpp +++ b/cmd/transformconvert.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/tsfdivide.cpp b/cmd/tsfdivide.cpp index 3b79bd1d8f..1c08d22234 100644 --- a/cmd/tsfdivide.cpp +++ b/cmd/tsfdivide.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/tsfinfo.cpp b/cmd/tsfinfo.cpp index 20acbe3beb..dd12e1d6d2 100644 --- a/cmd/tsfinfo.cpp +++ b/cmd/tsfinfo.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/tsfmult.cpp b/cmd/tsfmult.cpp index 0830289675..546074c9d0 100644 --- a/cmd/tsfmult.cpp +++ b/cmd/tsfmult.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/tsfsmooth.cpp b/cmd/tsfsmooth.cpp index 2bf2cfe4d7..dbd288d136 100644 --- a/cmd/tsfsmooth.cpp +++ b/cmd/tsfsmooth.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/tsfthreshold.cpp b/cmd/tsfthreshold.cpp index b239abd86a..e7dfad5b94 100644 --- a/cmd/tsfthreshold.cpp +++ b/cmd/tsfthreshold.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/tsfvalidate.cpp b/cmd/tsfvalidate.cpp index 8f69863cba..fbb015dc45 100644 --- a/cmd/tsfvalidate.cpp +++ b/cmd/tsfvalidate.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/vectorstats.cpp b/cmd/vectorstats.cpp index 9546eed62d..fa34754f2a 100644 --- a/cmd/vectorstats.cpp +++ b/cmd/vectorstats.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/voxel2fixel.cpp b/cmd/voxel2fixel.cpp index 0bdbfef424..24ffd9e31c 100644 --- a/cmd/voxel2fixel.cpp +++ b/cmd/voxel2fixel.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/voxel2mesh.cpp b/cmd/voxel2mesh.cpp index e42c18abf6..cd9b5e4dba 100644 --- a/cmd/voxel2mesh.cpp +++ b/cmd/voxel2mesh.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/warp2metric.cpp b/cmd/warp2metric.cpp index 3832db88ba..47547f3a63 100644 --- a/cmd/warp2metric.cpp +++ b/cmd/warp2metric.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/warpconvert.cpp b/cmd/warpconvert.cpp index 13fed2e739..285710347d 100644 --- a/cmd/warpconvert.cpp +++ b/cmd/warpconvert.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/warpcorrect.cpp b/cmd/warpcorrect.cpp index 2bdfbe5f2e..36be989c1e 100644 --- a/cmd/warpcorrect.cpp +++ b/cmd/warpcorrect.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/warpinit.cpp b/cmd/warpinit.cpp index 227de32628..3011950612 100644 --- a/cmd/warpinit.cpp +++ b/cmd/warpinit.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/warpinvert.cpp b/cmd/warpinvert.cpp index bb538166cb..b2e74394fd 100644 --- a/cmd/warpinvert.cpp +++ b/cmd/warpinvert.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/configure b/configure index 9c5d6abe40..c42d5c31cf 100755 --- a/configure +++ b/configure @@ -1,6 +1,6 @@ #!/usr/bin/env python -# Copyright (c) 2008-2024 the MRtrix3 contributors. +# Copyright (c) 2008-2025 the MRtrix3 contributors. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this @@ -606,7 +606,7 @@ def get_flags (default=None, env=None, pkg_config_flags=None): -def compile_test (name, cflags, ldflags, code, on_success='ok', on_failure='not found'): +def compile_test (name, cflags, ldflags, code, on_success='ok', on_failure='not found'): #pylint: disable=too-many-positional-arguments """Tests whether the code given compiles, links, and runs. This returns True if successful, and False for any type of failure. It will @@ -635,7 +635,7 @@ def compile_test (name, cflags, ldflags, code, on_success='ok', on_failure='not -def compile_check (full_name, name, cflags, ldflags, code, cflags_env=None, cflags_hint=None, ldflags_env=None, ldflags_hint=None, on_success='ok'): +def compile_check (full_name, name, cflags, ldflags, code, cflags_env=None, cflags_hint=None, ldflags_env=None, ldflags_hint=None, on_success='ok'): #pylint: disable=too-many-positional-arguments """Checks whether the code given compiles, links, and runs. This is intended to check for required dependencies, and will cause @@ -730,7 +730,8 @@ elif system == 'darwin': ld_lib_flags += [ '-dynamiclib', '-install_name', '@rpath/LIBNAME' ] runpath = '-Wl,-rpath,@loader_path/' lib_suffix = '.dylib' - +else: + assert False, 'Unknown OS' diff --git a/core/adapter/base.h b/core/adapter/base.h index cd33700749..f35aade787 100644 --- a/core/adapter/base.h +++ b/core/adapter/base.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/adapter/extract.h b/core/adapter/extract.h index 1f55816569..8840fb2e3e 100644 --- a/core/adapter/extract.h +++ b/core/adapter/extract.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/adapter/gaussian1D.h b/core/adapter/gaussian1D.h index a6e00a786d..673e270587 100644 --- a/core/adapter/gaussian1D.h +++ b/core/adapter/gaussian1D.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/adapter/gradient1D.h b/core/adapter/gradient1D.h index 6fa7e7740c..9fbe22d9a6 100644 --- a/core/adapter/gradient1D.h +++ b/core/adapter/gradient1D.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/adapter/gradient3D.h b/core/adapter/gradient3D.h index 1ea11628a4..698968b133 100644 --- a/core/adapter/gradient3D.h +++ b/core/adapter/gradient3D.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/adapter/jacobian.h b/core/adapter/jacobian.h index 331725d533..4824223eef 100644 --- a/core/adapter/jacobian.h +++ b/core/adapter/jacobian.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/adapter/median.h b/core/adapter/median.h index 39be1de635..e994bee53c 100644 --- a/core/adapter/median.h +++ b/core/adapter/median.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/adapter/neighbourhood3D.h b/core/adapter/neighbourhood3D.h index b2b7f35650..6e29ca5aa1 100644 --- a/core/adapter/neighbourhood3D.h +++ b/core/adapter/neighbourhood3D.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/adapter/normalise3D.h b/core/adapter/normalise3D.h index ec2a505551..8273f66bc6 100644 --- a/core/adapter/normalise3D.h +++ b/core/adapter/normalise3D.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/adapter/permute_axes.h b/core/adapter/permute_axes.h index fe640f18fa..d796fd85d8 100644 --- a/core/adapter/permute_axes.h +++ b/core/adapter/permute_axes.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/adapter/regrid.h b/core/adapter/regrid.h index e636a05b29..caedee6a1f 100644 --- a/core/adapter/regrid.h +++ b/core/adapter/regrid.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/adapter/replicate.h b/core/adapter/replicate.h index 7efc9af02e..5472662b0d 100644 --- a/core/adapter/replicate.h +++ b/core/adapter/replicate.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/adapter/reslice.cpp b/core/adapter/reslice.cpp index 23d8e3337c..4fcff9162b 100644 --- a/core/adapter/reslice.cpp +++ b/core/adapter/reslice.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/adapter/reslice.h b/core/adapter/reslice.h index 1c666d5a0d..b9e3269a45 100644 --- a/core/adapter/reslice.h +++ b/core/adapter/reslice.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/adapter/subset.h b/core/adapter/subset.h index bb35768168..dbf40a40aa 100644 --- a/core/adapter/subset.h +++ b/core/adapter/subset.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/adapter/warp.h b/core/adapter/warp.h index ec5bd68407..f09fc0bd24 100644 --- a/core/adapter/warp.h +++ b/core/adapter/warp.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/algo/copy.h b/core/algo/copy.h index c5a53c37ea..714b49c9dd 100644 --- a/core/algo/copy.h +++ b/core/algo/copy.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/algo/histogram.cpp b/core/algo/histogram.cpp index 3c2faf6108..8f9eea94ea 100644 --- a/core/algo/histogram.cpp +++ b/core/algo/histogram.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/algo/histogram.h b/core/algo/histogram.h index 0879ecc7f0..9876649035 100644 --- a/core/algo/histogram.h +++ b/core/algo/histogram.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/algo/iterator.h b/core/algo/iterator.h index bddd1d1bb3..797b8e5666 100644 --- a/core/algo/iterator.h +++ b/core/algo/iterator.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/algo/loop.h b/core/algo/loop.h index 76076dbc9b..6cf79c1dd4 100644 --- a/core/algo/loop.h +++ b/core/algo/loop.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/algo/min_max.h b/core/algo/min_max.h index e5b370bb38..346e86fac3 100644 --- a/core/algo/min_max.h +++ b/core/algo/min_max.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/algo/neighbourhooditerator.h b/core/algo/neighbourhooditerator.h index 2d18034fc5..516d908d31 100644 --- a/core/algo/neighbourhooditerator.h +++ b/core/algo/neighbourhooditerator.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/algo/random_loop.h b/core/algo/random_loop.h index e78ae310d5..5eb45e2e7d 100644 --- a/core/algo/random_loop.h +++ b/core/algo/random_loop.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/algo/random_threaded_loop.h b/core/algo/random_threaded_loop.h index ee4e448efc..a9a823add1 100644 --- a/core/algo/random_threaded_loop.h +++ b/core/algo/random_threaded_loop.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/algo/stochastic_threaded_loop.h b/core/algo/stochastic_threaded_loop.h index b6bbb204f2..84535af4ee 100644 --- a/core/algo/stochastic_threaded_loop.h +++ b/core/algo/stochastic_threaded_loop.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/algo/threaded_copy.h b/core/algo/threaded_copy.h index c0c004dc89..646290d34b 100644 --- a/core/algo/threaded_copy.h +++ b/core/algo/threaded_copy.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/algo/threaded_loop.h b/core/algo/threaded_loop.h index 5b771b12f7..c2a12ac5c3 100644 --- a/core/algo/threaded_loop.h +++ b/core/algo/threaded_loop.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/app.cpp b/core/app.cpp index 5561a04d00..e5035db799 100644 --- a/core/app.cpp +++ b/core/app.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this @@ -72,7 +72,7 @@ namespace MR const char* AUTHOR = nullptr; const char* COPYRIGHT = - "Copyright (c) 2008-2024 the MRtrix3 contributors.\n" + "Copyright (c) 2008-2025 the MRtrix3 contributors.\n" "\n" "This Source Code Form is subject to the terms of the Mozilla Public\n" "License, v. 2.0. If a copy of the MPL was not distributed with this\n" diff --git a/core/app.h b/core/app.h index 24c6f963e8..ff821def8c 100644 --- a/core/app.h +++ b/core/app.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/apply.h b/core/apply.h index 237f5155de..c6e3522f79 100644 --- a/core/apply.h +++ b/core/apply.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/axes.cpp b/core/axes.cpp index cbba1fde0d..1d0d614551 100644 --- a/core/axes.cpp +++ b/core/axes.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/axes.h b/core/axes.h index b1e6fedd61..6f1902852b 100644 --- a/core/axes.h +++ b/core/axes.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/cmdline_option.h b/core/cmdline_option.h index 812e3c1b8a..35cd26a0b4 100644 --- a/core/cmdline_option.h +++ b/core/cmdline_option.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/command.h b/core/command.h index 74796f71b5..e20c1a387e 100644 --- a/core/command.h +++ b/core/command.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/datatype.cpp b/core/datatype.cpp index 8efea628c3..bd128c2950 100644 --- a/core/datatype.cpp +++ b/core/datatype.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/datatype.h b/core/datatype.h index fc4056184e..bb5efe2563 100644 --- a/core/datatype.h +++ b/core/datatype.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/debug.h b/core/debug.h index a73946615c..f98f53af33 100644 --- a/core/debug.h +++ b/core/debug.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/dwi/gradient.cpp b/core/dwi/gradient.cpp index a34c4651a9..e8650112ec 100644 --- a/core/dwi/gradient.cpp +++ b/core/dwi/gradient.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/dwi/gradient.h b/core/dwi/gradient.h index 5bc30509fd..818fb872fa 100644 --- a/core/dwi/gradient.h +++ b/core/dwi/gradient.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/dwi/shells.cpp b/core/dwi/shells.cpp index 1898d551fa..ac3a9bb984 100644 --- a/core/dwi/shells.cpp +++ b/core/dwi/shells.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/dwi/shells.h b/core/dwi/shells.h index 8edf4669ea..eac36aaf68 100644 --- a/core/dwi/shells.h +++ b/core/dwi/shells.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/eigen_plugins/array.h b/core/eigen_plugins/array.h index 5704fa2cb5..e9d0d75ec5 100644 --- a/core/eigen_plugins/array.h +++ b/core/eigen_plugins/array.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/eigen_plugins/dense_base.h b/core/eigen_plugins/dense_base.h index f257aead50..5137263d96 100644 --- a/core/eigen_plugins/dense_base.h +++ b/core/eigen_plugins/dense_base.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/eigen_plugins/matrix.h b/core/eigen_plugins/matrix.h index 3cd915a0d0..a8b080aecc 100644 --- a/core/eigen_plugins/matrix.h +++ b/core/eigen_plugins/matrix.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/exception.cpp b/core/exception.cpp index 6fdb6cdc6a..55f5e95270 100644 --- a/core/exception.cpp +++ b/core/exception.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/exception.h b/core/exception.h index ea9b0737b0..b3d02dbb03 100644 --- a/core/exception.h +++ b/core/exception.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/file/config.cpp b/core/file/config.cpp index 7e1b767318..d767209bb4 100644 --- a/core/file/config.cpp +++ b/core/file/config.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/file/config.h b/core/file/config.h index 81bf463293..bc6c7124c3 100644 --- a/core/file/config.h +++ b/core/file/config.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/file/copy.h b/core/file/copy.h index 2ef790a6c0..84e0d1862f 100644 --- a/core/file/copy.h +++ b/core/file/copy.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/file/dicom/csa_entry.h b/core/file/dicom/csa_entry.h index 43160d4722..d206cd6875 100644 --- a/core/file/dicom/csa_entry.h +++ b/core/file/dicom/csa_entry.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/file/dicom/definitions.h b/core/file/dicom/definitions.h index 7b4c21ec46..228a8fcc36 100644 --- a/core/file/dicom/definitions.h +++ b/core/file/dicom/definitions.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/file/dicom/dict.cpp b/core/file/dicom/dict.cpp index 350ddfcd7d..01607d3bcb 100644 --- a/core/file/dicom/dict.cpp +++ b/core/file/dicom/dict.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/file/dicom/element.cpp b/core/file/dicom/element.cpp index 5aff3b351a..48af2f930e 100644 --- a/core/file/dicom/element.cpp +++ b/core/file/dicom/element.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/file/dicom/element.h b/core/file/dicom/element.h index 7512bc0a4f..b37300d4d5 100644 --- a/core/file/dicom/element.h +++ b/core/file/dicom/element.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/file/dicom/image.cpp b/core/file/dicom/image.cpp index 4d3b8226f4..0267b2f84e 100644 --- a/core/file/dicom/image.cpp +++ b/core/file/dicom/image.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/file/dicom/image.h b/core/file/dicom/image.h index 786ad20e4a..bd1c862aac 100644 --- a/core/file/dicom/image.h +++ b/core/file/dicom/image.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/file/dicom/mapper.cpp b/core/file/dicom/mapper.cpp index b277425291..b7fe265489 100644 --- a/core/file/dicom/mapper.cpp +++ b/core/file/dicom/mapper.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/file/dicom/mapper.h b/core/file/dicom/mapper.h index 6d9d2b443f..731cba8195 100644 --- a/core/file/dicom/mapper.h +++ b/core/file/dicom/mapper.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/file/dicom/patient.cpp b/core/file/dicom/patient.cpp index 20b8efb7f2..083194d683 100644 --- a/core/file/dicom/patient.cpp +++ b/core/file/dicom/patient.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/file/dicom/patient.h b/core/file/dicom/patient.h index e5aa5afc31..dec18cc6a1 100644 --- a/core/file/dicom/patient.h +++ b/core/file/dicom/patient.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/file/dicom/quick_scan.cpp b/core/file/dicom/quick_scan.cpp index 26bccc9675..6583bfdf4e 100644 --- a/core/file/dicom/quick_scan.cpp +++ b/core/file/dicom/quick_scan.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/file/dicom/quick_scan.h b/core/file/dicom/quick_scan.h index 8a81d2bf71..7fd541c9d2 100644 --- a/core/file/dicom/quick_scan.h +++ b/core/file/dicom/quick_scan.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/file/dicom/select_cmdline.cpp b/core/file/dicom/select_cmdline.cpp index dc2f6dc819..cc815d07fd 100644 --- a/core/file/dicom/select_cmdline.cpp +++ b/core/file/dicom/select_cmdline.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/file/dicom/series.cpp b/core/file/dicom/series.cpp index 86c868b572..eeb2eaa89a 100644 --- a/core/file/dicom/series.cpp +++ b/core/file/dicom/series.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/file/dicom/series.h b/core/file/dicom/series.h index 3fabc88a07..b0e5e3cecc 100644 --- a/core/file/dicom/series.h +++ b/core/file/dicom/series.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/file/dicom/study.cpp b/core/file/dicom/study.cpp index e40effbce9..3ccd42883a 100644 --- a/core/file/dicom/study.cpp +++ b/core/file/dicom/study.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/file/dicom/study.h b/core/file/dicom/study.h index a04bf494ec..7cf6f562b6 100644 --- a/core/file/dicom/study.h +++ b/core/file/dicom/study.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/file/dicom/tree.cpp b/core/file/dicom/tree.cpp index cf193fd958..9c53cf812c 100644 --- a/core/file/dicom/tree.cpp +++ b/core/file/dicom/tree.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/file/dicom/tree.h b/core/file/dicom/tree.h index c6aa640f05..4278dc2792 100644 --- a/core/file/dicom/tree.h +++ b/core/file/dicom/tree.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/file/entry.h b/core/file/entry.h index 316aad9633..3af0ea56ea 100644 --- a/core/file/entry.h +++ b/core/file/entry.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/file/gz.h b/core/file/gz.h index 585ac18c51..f852a6e8d0 100644 --- a/core/file/gz.h +++ b/core/file/gz.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/file/json_utils.cpp b/core/file/json_utils.cpp index c862f51c62..89d7e4f339 100644 --- a/core/file/json_utils.cpp +++ b/core/file/json_utils.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/file/json_utils.h b/core/file/json_utils.h index c0dd03b132..2adaad3be7 100644 --- a/core/file/json_utils.h +++ b/core/file/json_utils.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/file/key_value.cpp b/core/file/key_value.cpp index 090646bcd8..0191db1819 100644 --- a/core/file/key_value.cpp +++ b/core/file/key_value.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/file/key_value.h b/core/file/key_value.h index 6209f3b7a1..9de8f930c0 100644 --- a/core/file/key_value.h +++ b/core/file/key_value.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/file/mgh.cpp b/core/file/mgh.cpp index 5f1bd3a543..6a09d43ca1 100644 --- a/core/file/mgh.cpp +++ b/core/file/mgh.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/file/mgh.h b/core/file/mgh.h index 2291d91642..37de204f11 100644 --- a/core/file/mgh.h +++ b/core/file/mgh.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this @@ -21,6 +21,7 @@ #include "header.h" #include "raw.h" +#include "types.h" #include "file/gz.h" #include "file/nifti_utils.h" @@ -378,7 +379,7 @@ namespace MR const int64_t fend = in.tellg(); const int64_t empty_space_len = len - (fend - fstart); if (empty_space_len > 0) { - char buffer[empty_space_len]; + VLA(buffer, char, empty_space_len); in.read (buffer, empty_space_len); } @@ -806,7 +807,7 @@ namespace MR const int64_t fend = out.tellp(); const int64_t extra_space_len = len - (fend - fstart); if (extra_space_len > 0) { - char buffer[extra_space_len]; + VLA(buffer, char, extra_space_len); memset (buffer, 0x00, extra_space_len); out.write (buffer, extra_space_len); } diff --git a/core/file/mmap.cpp b/core/file/mmap.cpp index dd29a0efaf..cfdff3f780 100644 --- a/core/file/mmap.cpp +++ b/core/file/mmap.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/file/mmap.h b/core/file/mmap.h index e5c3216d78..bfdbac426d 100644 --- a/core/file/mmap.h +++ b/core/file/mmap.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/file/name_parser.cpp b/core/file/name_parser.cpp index 6da7dc59be..b6fedfa3c4 100644 --- a/core/file/name_parser.cpp +++ b/core/file/name_parser.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/file/name_parser.h b/core/file/name_parser.h index 97a8450b09..4eab83c10d 100644 --- a/core/file/name_parser.h +++ b/core/file/name_parser.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/file/nifti2.h b/core/file/nifti2.h index ddd821c46d..eea222693f 100644 --- a/core/file/nifti2.h +++ b/core/file/nifti2.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/file/nifti_utils.cpp b/core/file/nifti_utils.cpp index ad07bcdce0..6eebcd9ebd 100644 --- a/core/file/nifti_utils.cpp +++ b/core/file/nifti_utils.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/file/nifti_utils.h b/core/file/nifti_utils.h index e8b04179f7..25de06225f 100644 --- a/core/file/nifti_utils.h +++ b/core/file/nifti_utils.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/file/ofstream.cpp b/core/file/ofstream.cpp index f32388ecc3..915bc74809 100644 --- a/core/file/ofstream.cpp +++ b/core/file/ofstream.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/file/ofstream.h b/core/file/ofstream.h index a8b38f83ea..a24acdd06e 100644 --- a/core/file/ofstream.h +++ b/core/file/ofstream.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/file/path.h b/core/file/path.h index cacceb2666..4a611f80c6 100644 --- a/core/file/path.h +++ b/core/file/path.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/file/png.cpp b/core/file/png.cpp index 933caf45c2..8332c583f8 100644 --- a/core/file/png.cpp +++ b/core/file/png.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this @@ -347,7 +347,7 @@ namespace MR if (data_type == DataType::UInt8 || data_type == DataType::UInt16BE) { finish (data); } else { - uint8_t scratch[row_bytes * height]; + VLA(scratch, uint8_t, row_bytes * height); // Convert from "data" into "scratch" // This may include changes to fundamental type, changes to bit depth, changes to endianness uint8_t* in_ptr = data, *out_ptr = scratch; diff --git a/core/file/png.h b/core/file/png.h index e6c1eff582..0c04626741 100644 --- a/core/file/png.h +++ b/core/file/png.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/file/tiff.cpp b/core/file/tiff.cpp index 18234a92c6..289ce3da85 100644 --- a/core/file/tiff.cpp +++ b/core/file/tiff.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/file/tiff.h b/core/file/tiff.h index c8378f2031..8d8b02f885 100644 --- a/core/file/tiff.h +++ b/core/file/tiff.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/file/utils.h b/core/file/utils.h index a19cdeaa8b..d0ed0c8dce 100644 --- a/core/file/utils.h +++ b/core/file/utils.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/filter/base.h b/core/filter/base.h index d8c03f11d6..4783021fcc 100644 --- a/core/filter/base.h +++ b/core/filter/base.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/filter/connected_components.cpp b/core/filter/connected_components.cpp index cdd009a6b1..1853da952f 100644 --- a/core/filter/connected_components.cpp +++ b/core/filter/connected_components.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/filter/connected_components.h b/core/filter/connected_components.h index 7adfcd1678..9d884f6d70 100644 --- a/core/filter/connected_components.h +++ b/core/filter/connected_components.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/filter/dilate.h b/core/filter/dilate.h index 1551df0fa5..bb26a10d6c 100644 --- a/core/filter/dilate.h +++ b/core/filter/dilate.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/filter/dwi_brain_mask.h b/core/filter/dwi_brain_mask.h index b04799ed4a..24a7c0a2a2 100644 --- a/core/filter/dwi_brain_mask.h +++ b/core/filter/dwi_brain_mask.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/filter/erode.h b/core/filter/erode.h index 316d79f794..5754f6193c 100644 --- a/core/filter/erode.h +++ b/core/filter/erode.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/filter/fft.h b/core/filter/fft.h index a58942926f..c5fe7bb5aa 100644 --- a/core/filter/fft.h +++ b/core/filter/fft.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/filter/gradient.h b/core/filter/gradient.h index 59d0d6bb47..6fe81305fe 100644 --- a/core/filter/gradient.h +++ b/core/filter/gradient.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/filter/mask_clean.h b/core/filter/mask_clean.h index 1070beddb0..6e47669e4e 100644 --- a/core/filter/mask_clean.h +++ b/core/filter/mask_clean.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/filter/median.h b/core/filter/median.h index 1b198c7505..5f1196fada 100644 --- a/core/filter/median.h +++ b/core/filter/median.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/filter/normalise.h b/core/filter/normalise.h index 1c03f5bb70..5fe6ad5f1b 100644 --- a/core/filter/normalise.h +++ b/core/filter/normalise.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/filter/optimal_threshold.h b/core/filter/optimal_threshold.h index a7e065065d..00f664ea08 100644 --- a/core/filter/optimal_threshold.h +++ b/core/filter/optimal_threshold.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/filter/resize.h b/core/filter/resize.h index a08673dc03..a1248bbfd6 100644 --- a/core/filter/resize.h +++ b/core/filter/resize.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/filter/reslice.h b/core/filter/reslice.h index 2c69c9e619..d499eeb708 100644 --- a/core/filter/reslice.h +++ b/core/filter/reslice.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/filter/smooth.h b/core/filter/smooth.h index f2cb9d4beb..1b655b4e93 100644 --- a/core/filter/smooth.h +++ b/core/filter/smooth.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/filter/warp.h b/core/filter/warp.h index f72208a6c9..f39aa0da2e 100644 --- a/core/filter/warp.h +++ b/core/filter/warp.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/filter/zclean.h b/core/filter/zclean.h index 02844a0745..1a3a8eb48b 100644 --- a/core/filter/zclean.h +++ b/core/filter/zclean.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/fixel/helpers.h b/core/fixel/helpers.h index 6fdc931c1c..746408e918 100644 --- a/core/fixel/helpers.h +++ b/core/fixel/helpers.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/fixel/keys.h b/core/fixel/keys.h index 75175a6944..615f4ebc42 100644 --- a/core/fixel/keys.h +++ b/core/fixel/keys.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/fixel/legacy/fixel_metric.h b/core/fixel/legacy/fixel_metric.h index e38800c278..a5ac493024 100644 --- a/core/fixel/legacy/fixel_metric.h +++ b/core/fixel/legacy/fixel_metric.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/fixel/legacy/image.h b/core/fixel/legacy/image.h index 08b88652b3..f1401e0213 100644 --- a/core/fixel/legacy/image.h +++ b/core/fixel/legacy/image.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/fixel/legacy/keys.h b/core/fixel/legacy/keys.h index af5993b1c3..a9541af6ca 100644 --- a/core/fixel/legacy/keys.h +++ b/core/fixel/legacy/keys.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/fixel/loop.h b/core/fixel/loop.h index 4fe09d8bcc..582d093d13 100644 --- a/core/fixel/loop.h +++ b/core/fixel/loop.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/fixel/types.h b/core/fixel/types.h index e94e54c97d..60a9de7706 100644 --- a/core/fixel/types.h +++ b/core/fixel/types.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/formats/dicom.cpp b/core/formats/dicom.cpp index 3f678897b0..a5ed1e8eaa 100644 --- a/core/formats/dicom.cpp +++ b/core/formats/dicom.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/formats/list.cpp b/core/formats/list.cpp index a0b49e2790..ad0219060c 100644 --- a/core/formats/list.cpp +++ b/core/formats/list.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/formats/list.h b/core/formats/list.h index 740e715043..71dd5962bf 100644 --- a/core/formats/list.h +++ b/core/formats/list.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/formats/mgh.cpp b/core/formats/mgh.cpp index df28f7b165..289f5afea6 100644 --- a/core/formats/mgh.cpp +++ b/core/formats/mgh.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/formats/mgz.cpp b/core/formats/mgz.cpp index cc0fdd4ae0..fc0f049815 100644 --- a/core/formats/mgz.cpp +++ b/core/formats/mgz.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/formats/mri.cpp b/core/formats/mri.cpp index 7df4e1dec8..2d300668b0 100644 --- a/core/formats/mri.cpp +++ b/core/formats/mri.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/formats/mrtrix.cpp b/core/formats/mrtrix.cpp index 793a1afbe6..e609b54c0b 100644 --- a/core/formats/mrtrix.cpp +++ b/core/formats/mrtrix.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/formats/mrtrix_gz.cpp b/core/formats/mrtrix_gz.cpp index e45fcdb496..5e420b77d9 100644 --- a/core/formats/mrtrix_gz.cpp +++ b/core/formats/mrtrix_gz.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/formats/mrtrix_sparse_legacy.cpp b/core/formats/mrtrix_sparse_legacy.cpp index 7c869b56e3..d5ecda9fa1 100644 --- a/core/formats/mrtrix_sparse_legacy.cpp +++ b/core/formats/mrtrix_sparse_legacy.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/formats/mrtrix_utils.cpp b/core/formats/mrtrix_utils.cpp index 96b2df8b04..d06e024704 100644 --- a/core/formats/mrtrix_utils.cpp +++ b/core/formats/mrtrix_utils.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/formats/mrtrix_utils.h b/core/formats/mrtrix_utils.h index 26081cbe22..865a94f118 100644 --- a/core/formats/mrtrix_utils.h +++ b/core/formats/mrtrix_utils.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/formats/nifti1.cpp b/core/formats/nifti1.cpp index b809be0350..dd1094a852 100644 --- a/core/formats/nifti1.cpp +++ b/core/formats/nifti1.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/formats/nifti1_gz.cpp b/core/formats/nifti1_gz.cpp index d3b857feec..bcbbefec2d 100644 --- a/core/formats/nifti1_gz.cpp +++ b/core/formats/nifti1_gz.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/formats/nifti2.cpp b/core/formats/nifti2.cpp index 5acf524a2c..dde6527a3e 100644 --- a/core/formats/nifti2.cpp +++ b/core/formats/nifti2.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/formats/nifti2_gz.cpp b/core/formats/nifti2_gz.cpp index bb6eb08968..09d10a1166 100644 --- a/core/formats/nifti2_gz.cpp +++ b/core/formats/nifti2_gz.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/formats/par.cpp b/core/formats/par.cpp index 6c522befc9..f4f9610b76 100644 --- a/core/formats/par.cpp +++ b/core/formats/par.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/formats/pipe.cpp b/core/formats/pipe.cpp index 1d4029b307..85ea4a2bda 100644 --- a/core/formats/pipe.cpp +++ b/core/formats/pipe.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/formats/png.cpp b/core/formats/png.cpp index e1cddf98ab..18b4b09c3a 100644 --- a/core/formats/png.cpp +++ b/core/formats/png.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/formats/ram.cpp b/core/formats/ram.cpp index 93f57a3ddf..990d35e7c6 100644 --- a/core/formats/ram.cpp +++ b/core/formats/ram.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/formats/tiff.cpp b/core/formats/tiff.cpp index da516d0bdf..db3074a543 100644 --- a/core/formats/tiff.cpp +++ b/core/formats/tiff.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/formats/xds.cpp b/core/formats/xds.cpp index 772d4112ce..1044dd72a1 100644 --- a/core/formats/xds.cpp +++ b/core/formats/xds.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/header.cpp b/core/header.cpp index 802db4a37b..a76d87a0fe 100644 --- a/core/header.cpp +++ b/core/header.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/header.h b/core/header.h index d7b6882d5e..f27ca20e65 100644 --- a/core/header.h +++ b/core/header.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/image.h b/core/image.h index 3dbb3aab6a..4691261cc2 100644 --- a/core/image.h +++ b/core/image.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/image_diff.h b/core/image_diff.h index 730314bf71..0575eec0c9 100644 --- a/core/image_diff.h +++ b/core/image_diff.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/image_helpers.h b/core/image_helpers.h index 97eb4303f0..e64295d7cd 100644 --- a/core/image_helpers.h +++ b/core/image_helpers.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/image_io/base.cpp b/core/image_io/base.cpp index fb6a15705a..4f4487bc0c 100644 --- a/core/image_io/base.cpp +++ b/core/image_io/base.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/image_io/base.h b/core/image_io/base.h index bc24c5ecbb..a7ab137caf 100644 --- a/core/image_io/base.h +++ b/core/image_io/base.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/image_io/default.cpp b/core/image_io/default.cpp index 1e9c57794d..a8eb663369 100644 --- a/core/image_io/default.cpp +++ b/core/image_io/default.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/image_io/default.h b/core/image_io/default.h index e470921fb8..4bb4eb3814 100644 --- a/core/image_io/default.h +++ b/core/image_io/default.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/image_io/fetch_store.cpp b/core/image_io/fetch_store.cpp index d22cccbe3e..1d0264d845 100644 --- a/core/image_io/fetch_store.cpp +++ b/core/image_io/fetch_store.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/image_io/fetch_store.h b/core/image_io/fetch_store.h index bc14fbcfa8..d80da7e20d 100644 --- a/core/image_io/fetch_store.h +++ b/core/image_io/fetch_store.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/image_io/gz.cpp b/core/image_io/gz.cpp index 424b7f280e..3ebafcbb8a 100644 --- a/core/image_io/gz.cpp +++ b/core/image_io/gz.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/image_io/gz.h b/core/image_io/gz.h index 9fc61de206..6b27a4c02e 100644 --- a/core/image_io/gz.h +++ b/core/image_io/gz.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/image_io/mosaic.cpp b/core/image_io/mosaic.cpp index ef8060a3c4..d0c653938a 100644 --- a/core/image_io/mosaic.cpp +++ b/core/image_io/mosaic.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/image_io/mosaic.h b/core/image_io/mosaic.h index 4a70b0796c..27396b1a44 100644 --- a/core/image_io/mosaic.h +++ b/core/image_io/mosaic.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/image_io/pipe.cpp b/core/image_io/pipe.cpp index b7ca2d9eff..af9e8501d4 100644 --- a/core/image_io/pipe.cpp +++ b/core/image_io/pipe.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/image_io/pipe.h b/core/image_io/pipe.h index 60adc893ad..9146a6655a 100644 --- a/core/image_io/pipe.h +++ b/core/image_io/pipe.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/image_io/png.cpp b/core/image_io/png.cpp index 7f142f18de..dde6f25965 100644 --- a/core/image_io/png.cpp +++ b/core/image_io/png.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/image_io/png.h b/core/image_io/png.h index 321cf20eea..85b8d7bd0d 100644 --- a/core/image_io/png.h +++ b/core/image_io/png.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/image_io/ram.cpp b/core/image_io/ram.cpp index 609d6d2766..ec65d1bcdf 100644 --- a/core/image_io/ram.cpp +++ b/core/image_io/ram.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/image_io/ram.h b/core/image_io/ram.h index f69ad05856..963518b2a6 100644 --- a/core/image_io/ram.h +++ b/core/image_io/ram.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/image_io/scratch.cpp b/core/image_io/scratch.cpp index 8939a9e31e..d7b5bfc5db 100644 --- a/core/image_io/scratch.cpp +++ b/core/image_io/scratch.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/image_io/scratch.h b/core/image_io/scratch.h index e324dad410..04ca1dff2c 100644 --- a/core/image_io/scratch.h +++ b/core/image_io/scratch.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/image_io/sparse.cpp b/core/image_io/sparse.cpp index e125c407e3..1367506a43 100644 --- a/core/image_io/sparse.cpp +++ b/core/image_io/sparse.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/image_io/sparse.h b/core/image_io/sparse.h index 7c7f97f9b3..6f7a00a79a 100644 --- a/core/image_io/sparse.h +++ b/core/image_io/sparse.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/image_io/tiff.cpp b/core/image_io/tiff.cpp index 7eaacb35a4..ea8c0df68f 100644 --- a/core/image_io/tiff.cpp +++ b/core/image_io/tiff.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/image_io/tiff.h b/core/image_io/tiff.h index e906213025..d4479905ee 100644 --- a/core/image_io/tiff.h +++ b/core/image_io/tiff.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/image_io/variable_scaling.cpp b/core/image_io/variable_scaling.cpp index 36d30d59c1..f4fa615fec 100644 --- a/core/image_io/variable_scaling.cpp +++ b/core/image_io/variable_scaling.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/image_io/variable_scaling.h b/core/image_io/variable_scaling.h index 88451b0abd..007a8673d7 100644 --- a/core/image_io/variable_scaling.h +++ b/core/image_io/variable_scaling.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/interp/base.h b/core/interp/base.h index 849110a282..eca2699c3c 100644 --- a/core/interp/base.h +++ b/core/interp/base.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/interp/cubic.h b/core/interp/cubic.h index c78d6d5695..ebaf1bd420 100644 --- a/core/interp/cubic.h +++ b/core/interp/cubic.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/interp/linear.h b/core/interp/linear.h index d68c3e0538..151974c755 100644 --- a/core/interp/linear.h +++ b/core/interp/linear.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/interp/masked.h b/core/interp/masked.h index af4b061d7a..1e2b5825c5 100644 --- a/core/interp/masked.h +++ b/core/interp/masked.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/interp/nearest.h b/core/interp/nearest.h index e11f9a33dc..54efdadcfd 100644 --- a/core/interp/nearest.h +++ b/core/interp/nearest.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/interp/sinc.h b/core/interp/sinc.h index 20dc07ea4e..f386d6d95d 100644 --- a/core/interp/sinc.h +++ b/core/interp/sinc.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/math/SH.cpp b/core/math/SH.cpp index 40df83814e..c9330b6bd1 100644 --- a/core/math/SH.cpp +++ b/core/math/SH.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/math/SH.h b/core/math/SH.h index 0da7087981..dc8bc96b87 100644 --- a/core/math/SH.h +++ b/core/math/SH.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/math/Sn_scale_estimator.h b/core/math/Sn_scale_estimator.h index e3e6f3280b..f9c0f28086 100644 --- a/core/math/Sn_scale_estimator.h +++ b/core/math/Sn_scale_estimator.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/math/ZSH.h b/core/math/ZSH.h index a0f320b029..d0af9cf490 100644 --- a/core/math/ZSH.h +++ b/core/math/ZSH.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/math/average_space.cpp b/core/math/average_space.cpp index 64a2320a74..48d10cb5aa 100644 --- a/core/math/average_space.cpp +++ b/core/math/average_space.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/math/average_space.h b/core/math/average_space.h index a44881d7d0..ef8cf7c0e3 100644 --- a/core/math/average_space.h +++ b/core/math/average_space.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/math/bessel.cpp b/core/math/bessel.cpp index 3a5a158871..58fee9befe 100644 --- a/core/math/bessel.cpp +++ b/core/math/bessel.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/math/bessel.h b/core/math/bessel.h index 1e598506f4..7d6643a1e6 100644 --- a/core/math/bessel.h +++ b/core/math/bessel.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/math/betainc.cpp b/core/math/betainc.cpp index bf3f2a6fff..3c29058115 100644 --- a/core/math/betainc.cpp +++ b/core/math/betainc.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/math/betainc.h b/core/math/betainc.h index 5bc6c2f9c0..505b2d1346 100644 --- a/core/math/betainc.h +++ b/core/math/betainc.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/math/cauchy.h b/core/math/cauchy.h index 0263ffa1b5..41355527ea 100644 --- a/core/math/cauchy.h +++ b/core/math/cauchy.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/math/chebyshev.h b/core/math/chebyshev.h index 3dd57a1727..5bfd39fb28 100644 --- a/core/math/chebyshev.h +++ b/core/math/chebyshev.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/math/check_gradient.h b/core/math/check_gradient.h index 0232e1bfd9..e45c8b7035 100644 --- a/core/math/check_gradient.h +++ b/core/math/check_gradient.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/math/condition_number.h b/core/math/condition_number.h index 8211c71b5b..ae1fe615e7 100644 --- a/core/math/condition_number.h +++ b/core/math/condition_number.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/math/constrained_least_squares.h b/core/math/constrained_least_squares.h index a0937e775d..2e8ed5cb96 100644 --- a/core/math/constrained_least_squares.h +++ b/core/math/constrained_least_squares.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/math/cubic_spline.h b/core/math/cubic_spline.h index 3f203d9f5f..8db3e2a67a 100644 --- a/core/math/cubic_spline.h +++ b/core/math/cubic_spline.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/math/erfinv.cpp b/core/math/erfinv.cpp index 2ebda56996..6c9c5f89ec 100644 --- a/core/math/erfinv.cpp +++ b/core/math/erfinv.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/math/erfinv.h b/core/math/erfinv.h index 0f5e0d1951..5e818fcaa4 100644 --- a/core/math/erfinv.h +++ b/core/math/erfinv.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/math/factorial.h b/core/math/factorial.h index f565b2f342..825366f712 100644 --- a/core/math/factorial.h +++ b/core/math/factorial.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/math/gaussian.h b/core/math/gaussian.h index 2e0efd2e93..ebd7271d35 100644 --- a/core/math/gaussian.h +++ b/core/math/gaussian.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/math/golden_section_search.h b/core/math/golden_section_search.h index 15a91469b4..48109e3738 100644 --- a/core/math/golden_section_search.h +++ b/core/math/golden_section_search.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/math/gradient_descent.h b/core/math/gradient_descent.h index a8a83cf86f..825db9c649 100644 --- a/core/math/gradient_descent.h +++ b/core/math/gradient_descent.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/math/gradient_descent_bb.h b/core/math/gradient_descent_bb.h index 7ab4c06ba3..4b21f1e583 100644 --- a/core/math/gradient_descent_bb.h +++ b/core/math/gradient_descent_bb.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/math/hermite.h b/core/math/hermite.h index c02cd4b9e7..6b1ac70957 100644 --- a/core/math/hermite.h +++ b/core/math/hermite.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/math/least_squares.h b/core/math/least_squares.h index b4e14fbb4b..e8fcd9698e 100644 --- a/core/math/least_squares.h +++ b/core/math/least_squares.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/math/legendre.h b/core/math/legendre.h index 4c7d809f90..01106cbdd2 100644 --- a/core/math/legendre.h +++ b/core/math/legendre.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/math/math.h b/core/math/math.h index 6f19e5ed08..ed24a06808 100644 --- a/core/math/math.h +++ b/core/math/math.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/math/median.h b/core/math/median.h index cfce78c82b..4c6464e91e 100644 --- a/core/math/median.h +++ b/core/math/median.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/math/polynomial.h b/core/math/polynomial.h index 682873b7e5..22774d4b3f 100644 --- a/core/math/polynomial.h +++ b/core/math/polynomial.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/math/quadratic_line_search.h b/core/math/quadratic_line_search.h index d56cb200fb..fc577d2d32 100644 --- a/core/math/quadratic_line_search.h +++ b/core/math/quadratic_line_search.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/math/rician.h b/core/math/rician.h index 8a18c29eff..aec23fc91b 100644 --- a/core/math/rician.h +++ b/core/math/rician.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/math/rng.h b/core/math/rng.h index f5a4b6b7bc..5b280b46a9 100644 --- a/core/math/rng.h +++ b/core/math/rng.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/math/sech.h b/core/math/sech.h index 9301787324..ae4810130c 100644 --- a/core/math/sech.h +++ b/core/math/sech.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/math/sinc.h b/core/math/sinc.h index a5e8ec4155..7471d2df18 100644 --- a/core/math/sinc.h +++ b/core/math/sinc.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/math/sphere.h b/core/math/sphere.h index 2167c4c35b..62bbc8f1ad 100644 --- a/core/math/sphere.h +++ b/core/math/sphere.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/math/stats/fwe.cpp b/core/math/stats/fwe.cpp index 5c35f65b9b..823461f309 100644 --- a/core/math/stats/fwe.cpp +++ b/core/math/stats/fwe.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/math/stats/fwe.h b/core/math/stats/fwe.h index b799c26297..eafcd2a64b 100644 --- a/core/math/stats/fwe.h +++ b/core/math/stats/fwe.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/math/stats/glm.cpp b/core/math/stats/glm.cpp index 953f10a7e7..71ea0b4bde 100644 --- a/core/math/stats/glm.cpp +++ b/core/math/stats/glm.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/math/stats/glm.h b/core/math/stats/glm.h index ed8b0a1cb2..41b1f2137c 100644 --- a/core/math/stats/glm.h +++ b/core/math/stats/glm.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/math/stats/import.cpp b/core/math/stats/import.cpp index f98e74debb..3ccf5e3873 100644 --- a/core/math/stats/import.cpp +++ b/core/math/stats/import.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/math/stats/import.h b/core/math/stats/import.h index debea9bb88..aaa43882fc 100644 --- a/core/math/stats/import.h +++ b/core/math/stats/import.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/math/stats/shuffle.cpp b/core/math/stats/shuffle.cpp index e6406cd9f9..ef9b347a03 100644 --- a/core/math/stats/shuffle.cpp +++ b/core/math/stats/shuffle.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/math/stats/shuffle.h b/core/math/stats/shuffle.h index 4affd184da..d6dbe3b0a0 100644 --- a/core/math/stats/shuffle.h +++ b/core/math/stats/shuffle.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/math/stats/typedefs.h b/core/math/stats/typedefs.h index 4ee3a5ba03..c770394014 100644 --- a/core/math/stats/typedefs.h +++ b/core/math/stats/typedefs.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/math/welch_satterthwaite.h b/core/math/welch_satterthwaite.h index 7a5ce066d0..4e1eaaeb93 100644 --- a/core/math/welch_satterthwaite.h +++ b/core/math/welch_satterthwaite.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/math/zstatistic.cpp b/core/math/zstatistic.cpp index dacea45d1e..406333608a 100644 --- a/core/math/zstatistic.cpp +++ b/core/math/zstatistic.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/math/zstatistic.h b/core/math/zstatistic.h index 0cd61e48bb..cae1d89975 100644 --- a/core/math/zstatistic.h +++ b/core/math/zstatistic.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/memory.h b/core/memory.h index 9fd32ad98b..1e95280f2e 100644 --- a/core/memory.h +++ b/core/memory.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/misc/bitset.cpp b/core/misc/bitset.cpp index cd4dc13bbe..79d746cb74 100644 --- a/core/misc/bitset.cpp +++ b/core/misc/bitset.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/misc/bitset.h b/core/misc/bitset.h index e6a933681c..05e37207fc 100644 --- a/core/misc/bitset.h +++ b/core/misc/bitset.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/misc/voxel2vector.h b/core/misc/voxel2vector.h index 5205e7a038..9338953d71 100644 --- a/core/misc/voxel2vector.h +++ b/core/misc/voxel2vector.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/mrtrix.cpp b/core/mrtrix.cpp index c48631636d..d66661967f 100644 --- a/core/mrtrix.cpp +++ b/core/mrtrix.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/mrtrix.h b/core/mrtrix.h index 4b7970f3c3..ccd18a2afe 100644 --- a/core/mrtrix.h +++ b/core/mrtrix.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/ordered_thread_queue.h b/core/ordered_thread_queue.h index 24b859dab6..f10ff5b794 100644 --- a/core/ordered_thread_queue.h +++ b/core/ordered_thread_queue.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/phase_encoding.cpp b/core/phase_encoding.cpp index 8aff16ce4c..f4da805ee9 100644 --- a/core/phase_encoding.cpp +++ b/core/phase_encoding.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/phase_encoding.h b/core/phase_encoding.h index bbabeaaadf..110e36d64b 100644 --- a/core/phase_encoding.h +++ b/core/phase_encoding.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/progressbar.cpp b/core/progressbar.cpp index f9bff0ac7d..06235a1a68 100644 --- a/core/progressbar.cpp +++ b/core/progressbar.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/progressbar.h b/core/progressbar.h index 2bb64aeee8..c63718139a 100644 --- a/core/progressbar.h +++ b/core/progressbar.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/raw.h b/core/raw.h index d0954cb0fa..474254d03f 100644 --- a/core/raw.h +++ b/core/raw.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/signal_handler.cpp b/core/signal_handler.cpp index f6a5cebb56..ff89061b33 100644 --- a/core/signal_handler.cpp +++ b/core/signal_handler.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/signal_handler.h b/core/signal_handler.h index 0d7f0a4817..7b06b70651 100644 --- a/core/signal_handler.h +++ b/core/signal_handler.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/signals.h b/core/signals.h index fb7bacfe61..7d048b8065 100644 --- a/core/signals.h +++ b/core/signals.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/stats.cpp b/core/stats.cpp index ed02c9faae..c467a28ef6 100644 --- a/core/stats.cpp +++ b/core/stats.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/stats.h b/core/stats.h index 6757c206d5..803a861d21 100644 --- a/core/stats.h +++ b/core/stats.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/stride.cpp b/core/stride.cpp index e13d2dcdb9..b425fdd241 100644 --- a/core/stride.cpp +++ b/core/stride.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/stride.h b/core/stride.h index b1352d6cea..4cc238d253 100644 --- a/core/stride.h +++ b/core/stride.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/thread.cpp b/core/thread.cpp index 081195ccbd..b0d604faac 100644 --- a/core/thread.cpp +++ b/core/thread.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/thread.h b/core/thread.h index 0a28fd2cd9..f0f7a8acbd 100644 --- a/core/thread.h +++ b/core/thread.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/thread_queue.h b/core/thread_queue.h index 5b32887b45..1a0e9fcb10 100644 --- a/core/thread_queue.h +++ b/core/thread_queue.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/timer.h b/core/timer.h index a6131890c8..0e638a7aba 100644 --- a/core/timer.h +++ b/core/timer.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/transform.h b/core/transform.h index d221f23a70..4a0832a3ae 100644 --- a/core/transform.h +++ b/core/transform.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/types.h b/core/types.h index 04a6daae64..ba39a6fd7d 100644 --- a/core/types.h +++ b/core/types.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/format_config_options b/docs/format_config_options index 77a5b8a5ba..32a4d985ad 100755 --- a/docs/format_config_options +++ b/docs/format_config_options @@ -1,6 +1,6 @@ #!/usr/bin/env python -# Copyright (c) 2008-2024 the MRtrix3 contributors. +# Copyright (c) 2008-2025 the MRtrix3 contributors. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/format_environment_variables b/docs/format_environment_variables index fd5c6ec737..79e4b7d06a 100755 --- a/docs/format_environment_variables +++ b/docs/format_environment_variables @@ -1,6 +1,6 @@ #!/usr/bin/env python -# Copyright (c) 2008-2024 the MRtrix3 contributors. +# Copyright (c) 2008-2025 the MRtrix3 contributors. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/generate_user_docs.sh b/docs/generate_user_docs.sh index 6e03dd26e3..3a009f0d6f 100755 --- a/docs/generate_user_docs.sh +++ b/docs/generate_user_docs.sh @@ -1,6 +1,6 @@ #!/bin/bash -# Copyright (c) 2008-2024 the MRtrix3 contributors. +# Copyright (c) 2008-2025 the MRtrix3 contributors. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/5tt2gmwmi.rst b/docs/reference/commands/5tt2gmwmi.rst index cf8b72472a..d36634dbfe 100644 --- a/docs/reference/commands/5tt2gmwmi.rst +++ b/docs/reference/commands/5tt2gmwmi.rst @@ -55,7 +55,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Robert E. Smith (robert.smith@florey.edu.au) -**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2025 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/5tt2vis.rst b/docs/reference/commands/5tt2vis.rst index b859ce80d7..5efafff289 100644 --- a/docs/reference/commands/5tt2vis.rst +++ b/docs/reference/commands/5tt2vis.rst @@ -63,7 +63,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Robert E. Smith (robert.smith@florey.edu.au) -**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2025 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/5ttcheck.rst b/docs/reference/commands/5ttcheck.rst index 0dd260e495..2c6ed8b914 100644 --- a/docs/reference/commands/5ttcheck.rst +++ b/docs/reference/commands/5ttcheck.rst @@ -52,7 +52,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Robert E. Smith (robert.smith@florey.edu.au) -**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2025 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/5ttedit.rst b/docs/reference/commands/5ttedit.rst index 5382a3aeb6..34b908ac2e 100644 --- a/docs/reference/commands/5ttedit.rst +++ b/docs/reference/commands/5ttedit.rst @@ -63,7 +63,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Robert E. Smith (robert.smith@florey.edu.au) -**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2025 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/5ttgen.rst b/docs/reference/commands/5ttgen.rst index 664161daac..e0d4bbf4f4 100644 --- a/docs/reference/commands/5ttgen.rst +++ b/docs/reference/commands/5ttgen.rst @@ -75,7 +75,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Robert E. Smith (robert.smith@florey.edu.au) -**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2025 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this @@ -166,7 +166,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Robert E. Smith (robert.smith@florey.edu.au) -**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2025 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this @@ -269,7 +269,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Robert E. Smith (robert.smith@florey.edu.au) -**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2025 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this @@ -355,7 +355,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Matteo Mancini (m.mancini@ucl.ac.uk) -**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2025 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this @@ -461,7 +461,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Robert E. Smith (robert.smith@florey.edu.au) -**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2025 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/afdconnectivity.rst b/docs/reference/commands/afdconnectivity.rst index 723d709289..2d627cd637 100644 --- a/docs/reference/commands/afdconnectivity.rst +++ b/docs/reference/commands/afdconnectivity.rst @@ -74,7 +74,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** David Raffelt (david.raffelt@florey.edu.au) and Robert E. Smith (robert.smith@florey.edu.au) -**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2025 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/amp2response.rst b/docs/reference/commands/amp2response.rst index 09fe107f01..a08fcb0b31 100644 --- a/docs/reference/commands/amp2response.rst +++ b/docs/reference/commands/amp2response.rst @@ -76,7 +76,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Robert E. Smith (robert.smith@florey.edu.au) and J-Donald Tournier (jdtournier@gmail.com) -**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2025 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/amp2sh.rst b/docs/reference/commands/amp2sh.rst index 7f7caa3077..54fd77d347 100644 --- a/docs/reference/commands/amp2sh.rst +++ b/docs/reference/commands/amp2sh.rst @@ -87,7 +87,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** J-Donald Tournier (jdtournier@gmail.com) -**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2025 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/connectome2tck.rst b/docs/reference/commands/connectome2tck.rst index a4f46e431a..b64678f68d 100644 --- a/docs/reference/commands/connectome2tck.rst +++ b/docs/reference/commands/connectome2tck.rst @@ -118,7 +118,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Robert E. Smith (robert.smith@florey.edu.au) -**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2025 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/connectomeedit.rst b/docs/reference/commands/connectomeedit.rst index 7c88ef74f0..316b2d481b 100644 --- a/docs/reference/commands/connectomeedit.rst +++ b/docs/reference/commands/connectomeedit.rst @@ -52,7 +52,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Matteo Frigo (matteo.frigo@inria.fr) -**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2025 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/connectomestats.rst b/docs/reference/commands/connectomestats.rst index 36da5ff50e..5de67f9b35 100644 --- a/docs/reference/commands/connectomestats.rst +++ b/docs/reference/commands/connectomestats.rst @@ -126,7 +126,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Robert E. Smith (robert.smith@florey.edu.au) -**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2025 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/dcmedit.rst b/docs/reference/commands/dcmedit.rst index 1145008cc1..7aee5b8e01 100644 --- a/docs/reference/commands/dcmedit.rst +++ b/docs/reference/commands/dcmedit.rst @@ -66,7 +66,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** J-Donald Tournier (jdtournier@gmail.com) -**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2025 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/dcminfo.rst b/docs/reference/commands/dcminfo.rst index b8df64b2f9..7731ee13ca 100644 --- a/docs/reference/commands/dcminfo.rst +++ b/docs/reference/commands/dcminfo.rst @@ -58,7 +58,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** J-Donald Tournier (jdtournier@gmail.com) -**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2025 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/dirflip.rst b/docs/reference/commands/dirflip.rst index 107dd266ea..9a44f539d9 100644 --- a/docs/reference/commands/dirflip.rst +++ b/docs/reference/commands/dirflip.rst @@ -60,7 +60,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** J-Donald Tournier (jdtournier@gmail.com) -**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2025 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/dirgen.rst b/docs/reference/commands/dirgen.rst index 9327ac1cfc..f87006b2f8 100644 --- a/docs/reference/commands/dirgen.rst +++ b/docs/reference/commands/dirgen.rst @@ -70,7 +70,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** J-Donald Tournier (jdtournier@gmail.com) -**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2025 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/dirmerge.rst b/docs/reference/commands/dirmerge.rst index 05666ab9a3..c3a5b3a406 100644 --- a/docs/reference/commands/dirmerge.rst +++ b/docs/reference/commands/dirmerge.rst @@ -54,7 +54,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** J-Donald Tournier (jdtournier@gmail.com) -**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2025 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/dirorder.rst b/docs/reference/commands/dirorder.rst index 1f196073e2..66a8b25345 100644 --- a/docs/reference/commands/dirorder.rst +++ b/docs/reference/commands/dirorder.rst @@ -58,7 +58,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** J-Donald Tournier (jdtournier@gmail.com) -**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2025 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/dirsplit.rst b/docs/reference/commands/dirsplit.rst index e1a2aded62..acfe67e035 100644 --- a/docs/reference/commands/dirsplit.rst +++ b/docs/reference/commands/dirsplit.rst @@ -55,7 +55,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** J-Donald Tournier (jdtournier@gmail.com) -**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2025 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/dirstat.rst b/docs/reference/commands/dirstat.rst index 36aaa9bde4..0f5c7cdf2d 100644 --- a/docs/reference/commands/dirstat.rst +++ b/docs/reference/commands/dirstat.rst @@ -111,7 +111,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** J-Donald Tournier (jdtournier@gmail.com) -**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2025 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/dwi2adc.rst b/docs/reference/commands/dwi2adc.rst index d2d7f09312..200f122d27 100644 --- a/docs/reference/commands/dwi2adc.rst +++ b/docs/reference/commands/dwi2adc.rst @@ -58,7 +58,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** J-Donald Tournier (jdtournier@gmail.com) -**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2025 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/dwi2fod.rst b/docs/reference/commands/dwi2fod.rst index 65b8526723..592a38a32e 100644 --- a/docs/reference/commands/dwi2fod.rst +++ b/docs/reference/commands/dwi2fod.rst @@ -130,7 +130,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** J-Donald Tournier (jdtournier@gmail.com) and Ben Jeurissen (ben.jeurissen@uantwerpen.be) -**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2025 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/dwi2mask.rst b/docs/reference/commands/dwi2mask.rst index 33b215d280..4c89b40727 100644 --- a/docs/reference/commands/dwi2mask.rst +++ b/docs/reference/commands/dwi2mask.rst @@ -69,7 +69,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** David Raffelt (david.raffelt@florey.edu.au), Thijs Dhollander (thijs.dhollander@gmail.com) and Ben Jeurissen (ben.jeurissen@uantwerpen.be) -**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2025 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/dwi2response.rst b/docs/reference/commands/dwi2response.rst index 2266e2f8c2..e48c2eae6f 100644 --- a/docs/reference/commands/dwi2response.rst +++ b/docs/reference/commands/dwi2response.rst @@ -84,7 +84,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Robert E. Smith (robert.smith@florey.edu.au) and Thijs Dhollander (thijs.dhollander@gmail.com) -**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2025 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this @@ -205,7 +205,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Thijs Dhollander (thijs.dhollander@gmail.com) -**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2025 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this @@ -311,7 +311,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Robert E. Smith (robert.smith@florey.edu.au) -**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2025 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this @@ -412,7 +412,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Robert E. Smith (robert.smith@florey.edu.au) -**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2025 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this @@ -525,7 +525,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Robert E. Smith (robert.smith@florey.edu.au) -**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2025 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this @@ -631,7 +631,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Robert E. Smith (robert.smith@florey.edu.au) -**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2025 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this @@ -739,7 +739,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Robert E. Smith (robert.smith@florey.edu.au) -**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2025 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/dwi2tensor.rst b/docs/reference/commands/dwi2tensor.rst index 0a9e8fa4de..8e7c40c48b 100644 --- a/docs/reference/commands/dwi2tensor.rst +++ b/docs/reference/commands/dwi2tensor.rst @@ -96,7 +96,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Ben Jeurissen (ben.jeurissen@uantwerpen.be) -**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2025 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/dwibiascorrect.rst b/docs/reference/commands/dwibiascorrect.rst index 097197ded0..682701dac5 100644 --- a/docs/reference/commands/dwibiascorrect.rst +++ b/docs/reference/commands/dwibiascorrect.rst @@ -73,7 +73,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Robert E. Smith (robert.smith@florey.edu.au) -**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2025 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this @@ -175,7 +175,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Robert E. Smith (robert.smith@florey.edu.au) -**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2025 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this @@ -275,7 +275,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Robert E. Smith (robert.smith@florey.edu.au) -**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2025 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/dwicat.rst b/docs/reference/commands/dwicat.rst index e1b9ef3a84..17cd674794 100644 --- a/docs/reference/commands/dwicat.rst +++ b/docs/reference/commands/dwicat.rst @@ -67,7 +67,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Lena Dorfschmidt (ld548@cam.ac.uk) and Jakub Vohryzek (jakub.vohryzek@queens.ox.ac.uk) and Robert E. Smith (robert.smith@florey.edu.au) -**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2025 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/dwiextract.rst b/docs/reference/commands/dwiextract.rst index d044b0fa6a..5de14d892a 100644 --- a/docs/reference/commands/dwiextract.rst +++ b/docs/reference/commands/dwiextract.rst @@ -103,7 +103,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** David Raffelt (david.raffelt@florey.edu.au) and Thijs Dhollander (thijs.dhollander@gmail.com) and Robert E. Smith (robert.smith@florey.edu.au) -**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2025 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/dwifslpreproc.rst b/docs/reference/commands/dwifslpreproc.rst index 9a91cfb273..7349813012 100644 --- a/docs/reference/commands/dwifslpreproc.rst +++ b/docs/reference/commands/dwifslpreproc.rst @@ -159,7 +159,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Robert E. Smith (robert.smith@florey.edu.au) -**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2025 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/dwigradcheck.rst b/docs/reference/commands/dwigradcheck.rst index 95227ce488..4e226b9a11 100644 --- a/docs/reference/commands/dwigradcheck.rst +++ b/docs/reference/commands/dwigradcheck.rst @@ -84,7 +84,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Robert E. Smith (robert.smith@florey.edu.au) -**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2025 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/dwinormalise.rst b/docs/reference/commands/dwinormalise.rst index 5f78530fe8..79ed65fdeb 100644 --- a/docs/reference/commands/dwinormalise.rst +++ b/docs/reference/commands/dwinormalise.rst @@ -64,7 +64,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Robert E. Smith (robert.smith@florey.edu.au) -**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2025 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this @@ -153,7 +153,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** David Raffelt (david.raffelt@florey.edu.au) -**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2025 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this @@ -242,7 +242,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Robert E. Smith (robert.smith@florey.edu.au) and David Raffelt (david.raffelt@florey.edu.au) -**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2025 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/dwishellmath.rst b/docs/reference/commands/dwishellmath.rst index 209d6916d0..9128e882a0 100644 --- a/docs/reference/commands/dwishellmath.rst +++ b/docs/reference/commands/dwishellmath.rst @@ -80,7 +80,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Daan Christiaens (daan.christiaens@kcl.ac.uk) -**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2025 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/fixel2peaks.rst b/docs/reference/commands/fixel2peaks.rst index 4a8630739f..c8b8c61d0c 100644 --- a/docs/reference/commands/fixel2peaks.rst +++ b/docs/reference/commands/fixel2peaks.rst @@ -60,7 +60,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Robert E. Smith (robert.smith@florey.edu.au) -**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2025 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/fixel2sh.rst b/docs/reference/commands/fixel2sh.rst index 4bacc10185..398c40561b 100644 --- a/docs/reference/commands/fixel2sh.rst +++ b/docs/reference/commands/fixel2sh.rst @@ -61,7 +61,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Robert E. Smith (robert.smith@florey.edu.au) & David Raffelt (david.raffelt@florey.edu.au) -**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2025 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/fixel2tsf.rst b/docs/reference/commands/fixel2tsf.rst index 3f18273390..88d8656cbc 100644 --- a/docs/reference/commands/fixel2tsf.rst +++ b/docs/reference/commands/fixel2tsf.rst @@ -59,7 +59,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** David Raffelt (david.raffelt@florey.edu.au) -**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2025 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/fixel2voxel.rst b/docs/reference/commands/fixel2voxel.rst index 34894f2730..e4be214e7d 100644 --- a/docs/reference/commands/fixel2voxel.rst +++ b/docs/reference/commands/fixel2voxel.rst @@ -78,7 +78,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Robert E. Smith (robert.smith@florey.edu.au) & David Raffelt (david.raffelt@florey.edu.au) -**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2025 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/fixelcfestats.rst b/docs/reference/commands/fixelcfestats.rst index d9b68cb85a..a9d1ba1d51 100644 --- a/docs/reference/commands/fixelcfestats.rst +++ b/docs/reference/commands/fixelcfestats.rst @@ -123,7 +123,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** David Raffelt (david.raffelt@florey.edu.au) and Robert E. Smith (robert.smith@florey.edu.au) -**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2025 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/fixelconnectivity.rst b/docs/reference/commands/fixelconnectivity.rst index 4ce0e5ed7f..7ce760a1b2 100644 --- a/docs/reference/commands/fixelconnectivity.rst +++ b/docs/reference/commands/fixelconnectivity.rst @@ -66,7 +66,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Robert E. Smith (robert.smith@florey.edu.au) -**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2025 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/fixelconvert.rst b/docs/reference/commands/fixelconvert.rst index 65bc5c388d..d0982f2114 100644 --- a/docs/reference/commands/fixelconvert.rst +++ b/docs/reference/commands/fixelconvert.rst @@ -90,7 +90,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** David Raffelt (david.raffelt@florey.edu.au) and Robert E. Smith (robert.smith@florey.edu.au) -**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2025 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/fixelcorrespondence.rst b/docs/reference/commands/fixelcorrespondence.rst index 920a6a0d46..47ae5346e3 100644 --- a/docs/reference/commands/fixelcorrespondence.rst +++ b/docs/reference/commands/fixelcorrespondence.rst @@ -60,7 +60,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** David Raffelt (david.raffelt@florey.edu.au) -**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2025 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/fixelcrop.rst b/docs/reference/commands/fixelcrop.rst index debc7b79ec..b11c85821f 100644 --- a/docs/reference/commands/fixelcrop.rst +++ b/docs/reference/commands/fixelcrop.rst @@ -57,7 +57,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** David Raffelt (david.raffelt@florey.edu.au) & Rami Tabarra (rami.tabarra@florey.edu.au) -**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2025 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/fixelfilter.rst b/docs/reference/commands/fixelfilter.rst index 5276349159..cc480a8ae0 100644 --- a/docs/reference/commands/fixelfilter.rst +++ b/docs/reference/commands/fixelfilter.rst @@ -75,7 +75,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Robert E. Smith (robert.smith@florey.edu.au) -**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2025 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/fixelreorient.rst b/docs/reference/commands/fixelreorient.rst index 670c9610bd..50430cfd2f 100644 --- a/docs/reference/commands/fixelreorient.rst +++ b/docs/reference/commands/fixelreorient.rst @@ -57,7 +57,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** David Raffelt (david.raffelt@florey.edu.au) -**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2025 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/fod2fixel.rst b/docs/reference/commands/fod2fixel.rst index 5f8799a2b9..49f413666f 100644 --- a/docs/reference/commands/fod2fixel.rst +++ b/docs/reference/commands/fod2fixel.rst @@ -88,7 +88,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Robert E. Smith (robert.smith@florey.edu.au) -**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2025 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/for_each.rst b/docs/reference/commands/for_each.rst index f1949ecb02..ae10c047be 100644 --- a/docs/reference/commands/for_each.rst +++ b/docs/reference/commands/for_each.rst @@ -113,7 +113,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Robert E. Smith (robert.smith@florey.edu.au) and David Raffelt (david.raffelt@florey.edu.au) -**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2025 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/label2colour.rst b/docs/reference/commands/label2colour.rst index f9c5fd672c..1edbc99278 100644 --- a/docs/reference/commands/label2colour.rst +++ b/docs/reference/commands/label2colour.rst @@ -58,7 +58,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Robert E. Smith (robert.smith@florey.edu.au) -**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2025 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/label2mesh.rst b/docs/reference/commands/label2mesh.rst index e75600dede..bcf090979d 100644 --- a/docs/reference/commands/label2mesh.rst +++ b/docs/reference/commands/label2mesh.rst @@ -53,7 +53,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Robert E. Smith (robert.smith@florey.edu.au) -**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2025 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/labelconvert.rst b/docs/reference/commands/labelconvert.rst index 8d2b4da4ac..1971871c4a 100644 --- a/docs/reference/commands/labelconvert.rst +++ b/docs/reference/commands/labelconvert.rst @@ -69,7 +69,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Robert E. Smith (robert.smith@florey.edu.au) -**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2025 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/labelsgmfix.rst b/docs/reference/commands/labelsgmfix.rst index 19d68b9cc8..6bc0a516a5 100644 --- a/docs/reference/commands/labelsgmfix.rst +++ b/docs/reference/commands/labelsgmfix.rst @@ -72,7 +72,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Robert E. Smith (robert.smith@florey.edu.au) -**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2025 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/labelstats.rst b/docs/reference/commands/labelstats.rst index 1c1df1aa6d..1c92ba78dc 100644 --- a/docs/reference/commands/labelstats.rst +++ b/docs/reference/commands/labelstats.rst @@ -54,7 +54,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Robert E. Smith (robert.smith@florey.edu.au) -**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2025 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/maskdump.rst b/docs/reference/commands/maskdump.rst index db7b50b70d..ade59aa92c 100644 --- a/docs/reference/commands/maskdump.rst +++ b/docs/reference/commands/maskdump.rst @@ -56,7 +56,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Robert E. Smith (robert.smith@florey.edu.au) -**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2025 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/maskfilter.rst b/docs/reference/commands/maskfilter.rst index f92c4c4a7b..e56283a670 100644 --- a/docs/reference/commands/maskfilter.rst +++ b/docs/reference/commands/maskfilter.rst @@ -88,7 +88,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Robert E. Smith (robert.smith@florey.edu.au), David Raffelt (david.raffelt@florey.edu.au), Thijs Dhollander (thijs.dhollander@gmail.com) and J-Donald Tournier (jdtournier@gmail.com) -**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2025 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/mesh2voxel.rst b/docs/reference/commands/mesh2voxel.rst index 1c2c10b4a5..6b45207662 100644 --- a/docs/reference/commands/mesh2voxel.rst +++ b/docs/reference/commands/mesh2voxel.rst @@ -54,7 +54,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Robert E. Smith (robert.smith@florey.edu.au) -**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2025 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/meshconvert.rst b/docs/reference/commands/meshconvert.rst index 70c089349a..a65808976b 100644 --- a/docs/reference/commands/meshconvert.rst +++ b/docs/reference/commands/meshconvert.rst @@ -55,7 +55,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Robert E. Smith (robert.smith@florey.edu.au) -**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2025 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/meshfilter.rst b/docs/reference/commands/meshfilter.rst index e4af06d468..99522daccf 100644 --- a/docs/reference/commands/meshfilter.rst +++ b/docs/reference/commands/meshfilter.rst @@ -73,7 +73,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Robert E. Smith (robert.smith@florey.edu.au) -**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2025 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/mraverageheader.rst b/docs/reference/commands/mraverageheader.rst index 137f0b73b6..6bbe8ae3fa 100644 --- a/docs/reference/commands/mraverageheader.rst +++ b/docs/reference/commands/mraverageheader.rst @@ -62,7 +62,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Maximilian Pietsch (maximilian.pietsch@kcl.ac.uk) -**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2025 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/mrcalc.rst b/docs/reference/commands/mrcalc.rst index 3ae00b2d3c..7e1f38c92f 100644 --- a/docs/reference/commands/mrcalc.rst +++ b/docs/reference/commands/mrcalc.rst @@ -224,7 +224,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** J-Donald Tournier (jdtournier@gmail.com) -**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2025 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/mrcat.rst b/docs/reference/commands/mrcat.rst index 8d53807a4c..ff400e6758 100644 --- a/docs/reference/commands/mrcat.rst +++ b/docs/reference/commands/mrcat.rst @@ -68,7 +68,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** J-Donald Tournier (jdtournier@gmail.com) and Robert E. Smith (robert.smith@florey.edu.au) -**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2025 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/mrcentroid.rst b/docs/reference/commands/mrcentroid.rst index 1f5f2f89cf..acb2038194 100644 --- a/docs/reference/commands/mrcentroid.rst +++ b/docs/reference/commands/mrcentroid.rst @@ -54,7 +54,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Robert E. Smith (robert.smith@florey.edu.au) -**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2025 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/mrcheckerboardmask.rst b/docs/reference/commands/mrcheckerboardmask.rst index 703e62b3df..11bcf5292a 100644 --- a/docs/reference/commands/mrcheckerboardmask.rst +++ b/docs/reference/commands/mrcheckerboardmask.rst @@ -57,7 +57,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Max Pietsch (maximilian.pietsch@kcl.ac.uk) -**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2025 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/mrclusterstats.rst b/docs/reference/commands/mrclusterstats.rst index ace64da552..cbda289e04 100644 --- a/docs/reference/commands/mrclusterstats.rst +++ b/docs/reference/commands/mrclusterstats.rst @@ -117,7 +117,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** David Raffelt (david.raffelt@florey.edu.au) -**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2025 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/mrcolour.rst b/docs/reference/commands/mrcolour.rst index 315b23dfa2..401ff4adf4 100644 --- a/docs/reference/commands/mrcolour.rst +++ b/docs/reference/commands/mrcolour.rst @@ -65,7 +65,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Robert E. Smith (robert.smith@florey.edu.au) -**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2025 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/mrconvert.rst b/docs/reference/commands/mrconvert.rst index 7abb038b05..d9540a88bb 100644 --- a/docs/reference/commands/mrconvert.rst +++ b/docs/reference/commands/mrconvert.rst @@ -188,7 +188,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** J-Donald Tournier (jdtournier@gmail.com) and Robert E. Smith (robert.smith@florey.edu.au) -**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2025 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/mrdegibbs.rst b/docs/reference/commands/mrdegibbs.rst index c60b65ee22..4e4e7fdc20 100644 --- a/docs/reference/commands/mrdegibbs.rst +++ b/docs/reference/commands/mrdegibbs.rst @@ -77,7 +77,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Ben Jeurissen (ben.jeurissen@uantwerpen.be) & J-Donald Tournier (jdtournier@gmail.com) -**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2025 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/mrdump.rst b/docs/reference/commands/mrdump.rst index 441c379981..41c2939a1d 100644 --- a/docs/reference/commands/mrdump.rst +++ b/docs/reference/commands/mrdump.rst @@ -58,7 +58,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Robert E. Smith (robert.smith@florey.edu.au) -**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2025 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/mredit.rst b/docs/reference/commands/mredit.rst index 7be2f4c57a..6ac4f0ba48 100644 --- a/docs/reference/commands/mredit.rst +++ b/docs/reference/commands/mredit.rst @@ -64,7 +64,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Robert E. Smith (robert.smith@florey.edu.au) -**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2025 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/mrfilter.rst b/docs/reference/commands/mrfilter.rst index 678a320cca..224b102d5a 100644 --- a/docs/reference/commands/mrfilter.rst +++ b/docs/reference/commands/mrfilter.rst @@ -118,7 +118,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Robert E. Smith (robert.smith@florey.edu.au), David Raffelt (david.raffelt@florey.edu.au) and J-Donald Tournier (jdtournier@gmail.com) -**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2025 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/mrgrid.rst b/docs/reference/commands/mrgrid.rst index f6209c5c63..f2ad3d7dec 100644 --- a/docs/reference/commands/mrgrid.rst +++ b/docs/reference/commands/mrgrid.rst @@ -129,7 +129,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Max Pietsch (maximilian.pietsch@kcl.ac.uk) & David Raffelt (david.raffelt@florey.edu.au) & Robert E. Smith (robert.smith@florey.edu.au) -**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2025 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/mrhistmatch.rst b/docs/reference/commands/mrhistmatch.rst index efff525dab..19b5938550 100644 --- a/docs/reference/commands/mrhistmatch.rst +++ b/docs/reference/commands/mrhistmatch.rst @@ -68,7 +68,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Robert E. Smith (robert.smith@florey.edu.au) -**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2025 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/mrhistogram.rst b/docs/reference/commands/mrhistogram.rst index 5cf2de9553..9d8f1c07f0 100644 --- a/docs/reference/commands/mrhistogram.rst +++ b/docs/reference/commands/mrhistogram.rst @@ -67,7 +67,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Robert E. Smith (robert.smith@florey.edu.au) -**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2025 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/mrinfo.rst b/docs/reference/commands/mrinfo.rst index fb44cebd39..b540d125be 100644 --- a/docs/reference/commands/mrinfo.rst +++ b/docs/reference/commands/mrinfo.rst @@ -132,7 +132,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** J-Donald Tournier (jdtournier@gmail.com) and Robert E. Smith (robert.smith@florey.edu.au) -**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2025 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/mrmath.rst b/docs/reference/commands/mrmath.rst index 423e6291e1..1e69607112 100644 --- a/docs/reference/commands/mrmath.rst +++ b/docs/reference/commands/mrmath.rst @@ -85,7 +85,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** J-Donald Tournier (jdtournier@gmail.com) -**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2025 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/mrmetric.rst b/docs/reference/commands/mrmetric.rst index bb3b953b11..efee9bdcf7 100644 --- a/docs/reference/commands/mrmetric.rst +++ b/docs/reference/commands/mrmetric.rst @@ -70,7 +70,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** David Raffelt (david.raffelt@florey.edu.au) and Max Pietsch (maximilian.pietsch@kcl.ac.uk) -**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2025 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/mrregister.rst b/docs/reference/commands/mrregister.rst index 8cd70e4c67..da2cc3d751 100644 --- a/docs/reference/commands/mrregister.rst +++ b/docs/reference/commands/mrregister.rst @@ -217,7 +217,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** David Raffelt (david.raffelt@florey.edu.au) & Max Pietsch (maximilian.pietsch@kcl.ac.uk) -**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2025 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/mrstats.rst b/docs/reference/commands/mrstats.rst index b48d2fdbec..cf18af7e82 100644 --- a/docs/reference/commands/mrstats.rst +++ b/docs/reference/commands/mrstats.rst @@ -64,7 +64,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** J-Donald Tournier (jdtournier@gmail.com) -**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2025 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/mrthreshold.rst b/docs/reference/commands/mrthreshold.rst index 51424d808c..9fc0226008 100644 --- a/docs/reference/commands/mrthreshold.rst +++ b/docs/reference/commands/mrthreshold.rst @@ -102,7 +102,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Robert E. Smith (robert.smith@florey.edu.au) and J-Donald Tournier (jdtournier@gmail.com) -**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2025 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/mrtransform.rst b/docs/reference/commands/mrtransform.rst index d314fab563..e78bb58f73 100644 --- a/docs/reference/commands/mrtransform.rst +++ b/docs/reference/commands/mrtransform.rst @@ -147,7 +147,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** J-Donald Tournier (jdtournier@gmail.com) and David Raffelt (david.raffelt@florey.edu.au) and Max Pietsch (maximilian.pietsch@kcl.ac.uk) -**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2025 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/mrtrix_cleanup.rst b/docs/reference/commands/mrtrix_cleanup.rst index 4e8288aa05..9374339ab2 100644 --- a/docs/reference/commands/mrtrix_cleanup.rst +++ b/docs/reference/commands/mrtrix_cleanup.rst @@ -72,7 +72,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Robert E. Smith (robert.smith@florey.edu.au) -**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2025 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/mrview.rst b/docs/reference/commands/mrview.rst index f6dbb8ae7e..6ab3c6912c 100644 --- a/docs/reference/commands/mrview.rst +++ b/docs/reference/commands/mrview.rst @@ -218,7 +218,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** J-Donald Tournier (jdtournier@gmail.com), Dave Raffelt (david.raffelt@florey.edu.au), Robert E. Smith (robert.smith@florey.edu.au), Rami Tabbara (rami.tabbara@florey.edu.au), Max Pietsch (maximilian.pietsch@kcl.ac.uk), Thijs Dhollander (thijs.dhollander@gmail.com) -**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2025 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/mtnormalise.rst b/docs/reference/commands/mtnormalise.rst index 3f38db0c7a..29ff944e84 100644 --- a/docs/reference/commands/mtnormalise.rst +++ b/docs/reference/commands/mtnormalise.rst @@ -89,7 +89,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Thijs Dhollander (thijs.dhollander@gmail.com), Rami Tabbara (rami.tabbara@florey.edu.au), David Raffelt (david.raffelt@florey.edu.au), Jonas Rosnarho-Tornstrand (jonas.rosnarho-tornstrand@kcl.ac.uk) and J-Donald Tournier (jdtournier@gmail.com) -**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2025 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/peaks2amp.rst b/docs/reference/commands/peaks2amp.rst index 5df868f18b..9dd02a0465 100644 --- a/docs/reference/commands/peaks2amp.rst +++ b/docs/reference/commands/peaks2amp.rst @@ -51,7 +51,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** J-Donald Tournier (jdtournier@gmail.com) -**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2025 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/peaks2fixel.rst b/docs/reference/commands/peaks2fixel.rst index 56ca8d1591..c6632c8ec3 100644 --- a/docs/reference/commands/peaks2fixel.rst +++ b/docs/reference/commands/peaks2fixel.rst @@ -53,7 +53,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Robert E. Smith (robert.smith@florey.edu.au) -**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2025 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/population_template.rst b/docs/reference/commands/population_template.rst index 478f157baa..d8cd714ca6 100644 --- a/docs/reference/commands/population_template.rst +++ b/docs/reference/commands/population_template.rst @@ -141,7 +141,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** David Raffelt (david.raffelt@florey.edu.au) & Max Pietsch (maximilian.pietsch@kcl.ac.uk) & Thijs Dhollander (thijs.dhollander@gmail.com) -**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2025 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/responsemean.rst b/docs/reference/commands/responsemean.rst index 105498c804..1d5f4bfc76 100644 --- a/docs/reference/commands/responsemean.rst +++ b/docs/reference/commands/responsemean.rst @@ -71,7 +71,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Robert E. Smith (robert.smith@florey.edu.au) and David Raffelt (david.raffelt@florey.edu.au) -**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2025 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/sh2amp.rst b/docs/reference/commands/sh2amp.rst index ad98bbbb2b..4bc26213ad 100644 --- a/docs/reference/commands/sh2amp.rst +++ b/docs/reference/commands/sh2amp.rst @@ -89,7 +89,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** David Raffelt (david.raffelt@florey.edu.au) and J-Donald Tournier (jdtournier@gmail.com) -**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2025 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/sh2peaks.rst b/docs/reference/commands/sh2peaks.rst index 057838613a..b491316dd9 100644 --- a/docs/reference/commands/sh2peaks.rst +++ b/docs/reference/commands/sh2peaks.rst @@ -75,7 +75,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** J-Donald Tournier (jdtournier@gmail.com) -**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2025 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/sh2power.rst b/docs/reference/commands/sh2power.rst index 2702e0fa03..fd9aac3f7c 100644 --- a/docs/reference/commands/sh2power.rst +++ b/docs/reference/commands/sh2power.rst @@ -61,7 +61,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** J-Donald Tournier (jdtournier@gmail.com) -**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2025 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/sh2response.rst b/docs/reference/commands/sh2response.rst index 9b6fc2ab49..d047d8fccf 100644 --- a/docs/reference/commands/sh2response.rst +++ b/docs/reference/commands/sh2response.rst @@ -63,7 +63,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** J-Donald Tournier (jdtournier@gmail.com) -**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2025 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/shbasis.rst b/docs/reference/commands/shbasis.rst index 6a22a5b091..3d9b12adb2 100644 --- a/docs/reference/commands/shbasis.rst +++ b/docs/reference/commands/shbasis.rst @@ -64,7 +64,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Robert E. Smith (robert.smith@florey.edu.au) -**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2025 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/shconv.rst b/docs/reference/commands/shconv.rst index 85907b0cf1..f7151274ae 100644 --- a/docs/reference/commands/shconv.rst +++ b/docs/reference/commands/shconv.rst @@ -76,7 +76,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** David Raffelt (david.raffelt@florey.edu.au) and J-Donald Tournier (jdtournier@gmail.com) -**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2025 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/shview.rst b/docs/reference/commands/shview.rst index 446066db03..a8156eaa3e 100644 --- a/docs/reference/commands/shview.rst +++ b/docs/reference/commands/shview.rst @@ -52,7 +52,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** J-Donald Tournier (jdtournier@gmail.com) -**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2025 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/tck2connectome.rst b/docs/reference/commands/tck2connectome.rst index 409dc2eb95..123c6172f7 100644 --- a/docs/reference/commands/tck2connectome.rst +++ b/docs/reference/commands/tck2connectome.rst @@ -127,7 +127,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Robert E. Smith (robert.smith@florey.edu.au) -**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2025 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/tck2fixel.rst b/docs/reference/commands/tck2fixel.rst index c5b5e44667..551c67265c 100644 --- a/docs/reference/commands/tck2fixel.rst +++ b/docs/reference/commands/tck2fixel.rst @@ -55,7 +55,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** David Raffelt (david.raffelt@florey.edu.au) -**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2025 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/tckconvert.rst b/docs/reference/commands/tckconvert.rst index 98fee12e1f..2f00580298 100644 --- a/docs/reference/commands/tckconvert.rst +++ b/docs/reference/commands/tckconvert.rst @@ -94,7 +94,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Daan Christiaens (daan.christiaens@kcl.ac.uk), J-Donald Tournier (jdtournier@gmail.com), Philip Broser (philip.broser@me.com), Daniel Blezek (daniel.blezek@gmail.com). -**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2025 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/tckdfc.rst b/docs/reference/commands/tckdfc.rst index fd9b3c6fd5..1c54aef823 100644 --- a/docs/reference/commands/tckdfc.rst +++ b/docs/reference/commands/tckdfc.rst @@ -91,7 +91,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Robert E. Smith (robert.smith@florey.edu.au) -**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2025 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/tckedit.rst b/docs/reference/commands/tckedit.rst index 5f0800bb00..3f8307144e 100644 --- a/docs/reference/commands/tckedit.rst +++ b/docs/reference/commands/tckedit.rst @@ -129,7 +129,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Robert E. Smith (robert.smith@florey.edu.au) -**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2025 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/tckgen.rst b/docs/reference/commands/tckgen.rst index 97b1092a37..140bd314a2 100644 --- a/docs/reference/commands/tckgen.rst +++ b/docs/reference/commands/tckgen.rst @@ -203,7 +203,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** J-Donald Tournier (jdtournier@gmail.com) and Robert E. Smith (robert.smith@florey.edu.au) -**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2025 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/tckinfo.rst b/docs/reference/commands/tckinfo.rst index d0286bd136..a7a979283b 100644 --- a/docs/reference/commands/tckinfo.rst +++ b/docs/reference/commands/tckinfo.rst @@ -52,7 +52,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** J-Donald Tournier (jdtournier@gmail.com) -**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2025 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/tckmap.rst b/docs/reference/commands/tckmap.rst index a1a0d62d2b..15b0e804f1 100644 --- a/docs/reference/commands/tckmap.rst +++ b/docs/reference/commands/tckmap.rst @@ -130,7 +130,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Robert E. Smith (robert.smith@florey.edu.au) and J-Donald Tournier (jdtournier@gmail.com) -**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2025 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/tckresample.rst b/docs/reference/commands/tckresample.rst index 4f7effcf51..fed4759aa9 100644 --- a/docs/reference/commands/tckresample.rst +++ b/docs/reference/commands/tckresample.rst @@ -75,7 +75,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Robert E. Smith (robert.smith@florey.edu.au) and J-Donald Tournier (jdtournier@gmail.com) -**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2025 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/tcksample.rst b/docs/reference/commands/tcksample.rst index 3fe24c5d71..d681341801 100644 --- a/docs/reference/commands/tcksample.rst +++ b/docs/reference/commands/tcksample.rst @@ -67,7 +67,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Robert E. Smith (robert.smith@florey.edu.au) -**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2025 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/tcksift.rst b/docs/reference/commands/tcksift.rst index fe1dc6e276..6b160e9ff5 100644 --- a/docs/reference/commands/tcksift.rst +++ b/docs/reference/commands/tcksift.rst @@ -99,7 +99,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Robert E. Smith (robert.smith@florey.edu.au) -**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2025 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/tcksift2.rst b/docs/reference/commands/tcksift2.rst index 9f7353350b..adfc2a0619 100644 --- a/docs/reference/commands/tcksift2.rst +++ b/docs/reference/commands/tcksift2.rst @@ -118,7 +118,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Robert E. Smith (robert.smith@florey.edu.au) -**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2025 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/tckstats.rst b/docs/reference/commands/tckstats.rst index 0f25066d18..81fdc8ffa5 100644 --- a/docs/reference/commands/tckstats.rst +++ b/docs/reference/commands/tckstats.rst @@ -60,7 +60,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Robert E. Smith (robert.smith@florey.edu.au) -**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2025 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/tcktransform.rst b/docs/reference/commands/tcktransform.rst index 327c91572c..fd92f679b1 100644 --- a/docs/reference/commands/tcktransform.rst +++ b/docs/reference/commands/tcktransform.rst @@ -52,7 +52,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** J-Donald Tournier (jdtournier@gmail.com) -**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2025 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/tensor2metric.rst b/docs/reference/commands/tensor2metric.rst index 1463d59dd0..6ce219f7b3 100644 --- a/docs/reference/commands/tensor2metric.rst +++ b/docs/reference/commands/tensor2metric.rst @@ -78,7 +78,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Thijs Dhollander (thijs.dhollander@gmail.com) & Ben Jeurissen (ben.jeurissen@uantwerpen.be) & J-Donald Tournier (jdtournier@gmail.com) -**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2025 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/transformcalc.rst b/docs/reference/commands/transformcalc.rst index 54b9acbcc8..5d2f2b5482 100644 --- a/docs/reference/commands/transformcalc.rst +++ b/docs/reference/commands/transformcalc.rst @@ -93,7 +93,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Max Pietsch (maximilian.pietsch@kcl.ac.uk) -**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2025 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/transformcompose.rst b/docs/reference/commands/transformcompose.rst index f97ba589f8..2366fda805 100644 --- a/docs/reference/commands/transformcompose.rst +++ b/docs/reference/commands/transformcompose.rst @@ -62,7 +62,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** David Raffelt (david.raffelt@florey.edu.au) -**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2025 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/transformconvert.rst b/docs/reference/commands/transformconvert.rst index 97a9822b05..2fcc27a0b5 100644 --- a/docs/reference/commands/transformconvert.rst +++ b/docs/reference/commands/transformconvert.rst @@ -71,7 +71,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Max Pietsch (maximilian.pietsch@kcl.ac.uk) -**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2025 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/tsfdivide.rst b/docs/reference/commands/tsfdivide.rst index 5b1c6ecd91..991fd4319f 100644 --- a/docs/reference/commands/tsfdivide.rst +++ b/docs/reference/commands/tsfdivide.rst @@ -52,7 +52,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** David Raffelt (david.raffelt@florey.edu.au) -**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2025 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/tsfinfo.rst b/docs/reference/commands/tsfinfo.rst index 37bb5ef914..efe8ff7167 100644 --- a/docs/reference/commands/tsfinfo.rst +++ b/docs/reference/commands/tsfinfo.rst @@ -54,7 +54,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** David Raffelt (david.raffelt@florey.edu.au) -**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2025 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/tsfmult.rst b/docs/reference/commands/tsfmult.rst index d889112d56..fd2cc1fca3 100644 --- a/docs/reference/commands/tsfmult.rst +++ b/docs/reference/commands/tsfmult.rst @@ -52,7 +52,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** David Raffelt (david.raffelt@florey.edu.au) -**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2025 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/tsfsmooth.rst b/docs/reference/commands/tsfsmooth.rst index 7c7dcd2481..aeb893f0e7 100644 --- a/docs/reference/commands/tsfsmooth.rst +++ b/docs/reference/commands/tsfsmooth.rst @@ -53,7 +53,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** David Raffelt (david.raffelt@florey.edu.au) -**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2025 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/tsfthreshold.rst b/docs/reference/commands/tsfthreshold.rst index bf25d3c4c0..ab2916567b 100644 --- a/docs/reference/commands/tsfthreshold.rst +++ b/docs/reference/commands/tsfthreshold.rst @@ -54,7 +54,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** David Raffelt (david.raffelt@florey.edu.au) -**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2025 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/tsfvalidate.rst b/docs/reference/commands/tsfvalidate.rst index c119443b72..17bf22a0be 100644 --- a/docs/reference/commands/tsfvalidate.rst +++ b/docs/reference/commands/tsfvalidate.rst @@ -51,7 +51,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Robert E. Smith (robert.smith@florey.edu.au) -**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2025 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/vectorstats.rst b/docs/reference/commands/vectorstats.rst index 7ee3d1b74a..b17aeaab6e 100644 --- a/docs/reference/commands/vectorstats.rst +++ b/docs/reference/commands/vectorstats.rst @@ -88,7 +88,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Robert E. Smith (robert.smith@florey.edu.au) -**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2025 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/voxel2fixel.rst b/docs/reference/commands/voxel2fixel.rst index 17f741ce54..61fdd18ccf 100644 --- a/docs/reference/commands/voxel2fixel.rst +++ b/docs/reference/commands/voxel2fixel.rst @@ -58,7 +58,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** David Raffelt (david.raffelt@florey.edu.au) -**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2025 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/voxel2mesh.rst b/docs/reference/commands/voxel2mesh.rst index bfee5ab96a..49a0e657eb 100644 --- a/docs/reference/commands/voxel2mesh.rst +++ b/docs/reference/commands/voxel2mesh.rst @@ -62,7 +62,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Robert E. Smith (robert.smith@florey.edu.au) -**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2025 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/warp2metric.rst b/docs/reference/commands/warp2metric.rst index be746ff2e2..50e20128d5 100644 --- a/docs/reference/commands/warp2metric.rst +++ b/docs/reference/commands/warp2metric.rst @@ -58,7 +58,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** David Raffelt (david.raffelt@florey.edu.au) -**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2025 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/warpconvert.rst b/docs/reference/commands/warpconvert.rst index c407f7f183..684228f83c 100644 --- a/docs/reference/commands/warpconvert.rst +++ b/docs/reference/commands/warpconvert.rst @@ -63,7 +63,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** David Raffelt (david.raffelt@florey.edu.au) -**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2025 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/warpcorrect.rst b/docs/reference/commands/warpcorrect.rst index 6a22d3f036..7c559963a5 100644 --- a/docs/reference/commands/warpcorrect.rst +++ b/docs/reference/commands/warpcorrect.rst @@ -60,7 +60,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** David Raffelt (david.raffelt@florey.edu.au) & Max Pietsch (mail@maxpietsch.com) -**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2025 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/warpinit.rst b/docs/reference/commands/warpinit.rst index b3c52aecb1..69e1bd163b 100644 --- a/docs/reference/commands/warpinit.rst +++ b/docs/reference/commands/warpinit.rst @@ -62,7 +62,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** J-Donald Tournier (jdtournier@gmail.com) -**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2025 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/warpinvert.rst b/docs/reference/commands/warpinvert.rst index ff702d0157..abdaba29b2 100644 --- a/docs/reference/commands/warpinvert.rst +++ b/docs/reference/commands/warpinvert.rst @@ -60,7 +60,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Robert E. Smith (robert.smith@florey.edu.au) and David Raffelt (david.raffelt@florey.edu.au) -**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2025 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/doxygen b/doxygen index 045dff655f..a3e5dad247 100755 --- a/doxygen +++ b/doxygen @@ -1,6 +1,6 @@ #!/bin/sh -# Copyright (c) 2008-2024 the MRtrix3 contributors. +# Copyright (c) 2008-2025 the MRtrix3 contributors. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/generate_bash_completion.py b/generate_bash_completion.py index 65f5a95388..9e427b8691 100755 --- a/generate_bash_completion.py +++ b/generate_bash_completion.py @@ -1,6 +1,6 @@ #!/usr/bin/env python -# Copyright (c) 2008-2024 the MRtrix3 contributors. +# Copyright (c) 2008-2025 the MRtrix3 contributors. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/install_mime_types.sh b/install_mime_types.sh index db039d2946..7969774fe4 100755 --- a/install_mime_types.sh +++ b/install_mime_types.sh @@ -1,6 +1,6 @@ #!/bin/bash -# Copyright (c) 2008-2024 the MRtrix3 contributors. +# Copyright (c) 2008-2025 the MRtrix3 contributors. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/lib/mrtrix3/_5ttgen/freesurfer.py b/lib/mrtrix3/_5ttgen/freesurfer.py index 28e22f6355..0b68d083d3 100644 --- a/lib/mrtrix3/_5ttgen/freesurfer.py +++ b/lib/mrtrix3/_5ttgen/freesurfer.py @@ -1,4 +1,4 @@ -# Copyright (c) 2008-2024 the MRtrix3 contributors. +# Copyright (c) 2008-2025 the MRtrix3 contributors. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/lib/mrtrix3/_5ttgen/fsl.py b/lib/mrtrix3/_5ttgen/fsl.py index 8411150bab..a027d0f8ae 100644 --- a/lib/mrtrix3/_5ttgen/fsl.py +++ b/lib/mrtrix3/_5ttgen/fsl.py @@ -1,4 +1,4 @@ -# Copyright (c) 2008-2024 the MRtrix3 contributors. +# Copyright (c) 2008-2025 the MRtrix3 contributors. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this @@ -14,7 +14,10 @@ # For more details, see http://www.mrtrix.org/. import math, os -from distutils.spawn import find_executable +try: + from shutil import which as find_executable +except ImportError: + from distutils.spawn import find_executable # pylint: disable=deprecated-module from mrtrix3 import MRtrixError from mrtrix3 import app, fsl, image, path, run, utils diff --git a/lib/mrtrix3/_5ttgen/gif.py b/lib/mrtrix3/_5ttgen/gif.py index 35cebc7c2a..00f71bb1f0 100644 --- a/lib/mrtrix3/_5ttgen/gif.py +++ b/lib/mrtrix3/_5ttgen/gif.py @@ -1,4 +1,4 @@ -# Copyright (c) 2008-2024 the MRtrix3 contributors. +# Copyright (c) 2008-2025 the MRtrix3 contributors. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/lib/mrtrix3/_5ttgen/hsvs.py b/lib/mrtrix3/_5ttgen/hsvs.py index 8b0407cabc..54818efaa8 100644 --- a/lib/mrtrix3/_5ttgen/hsvs.py +++ b/lib/mrtrix3/_5ttgen/hsvs.py @@ -1,4 +1,4 @@ -# Copyright (c) 2008-2024 the MRtrix3 contributors. +# Copyright (c) 2008-2025 the MRtrix3 contributors. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this @@ -19,7 +19,10 @@ import glob, os, re -from distutils.spawn import find_executable +try: + from shutil import which as find_executable +except ImportError: + from distutils.spawn import find_executable # pylint: disable=deprecated-module from mrtrix3 import MRtrixError from mrtrix3 import app, fsl, image, path, run diff --git a/lib/mrtrix3/__init__.py b/lib/mrtrix3/__init__.py index e3ca97e6c7..310c063cac 100644 --- a/lib/mrtrix3/__init__.py +++ b/lib/mrtrix3/__init__.py @@ -1,4 +1,4 @@ -# Copyright (c) 2008-2024 the MRtrix3 contributors. +# Copyright (c) 2008-2025 the MRtrix3 contributors. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this @@ -21,7 +21,7 @@ try: from shlex import quote except ImportError: - from pipes import quote + from pipes import quote #pylint: disable=deprecated-module from mrtrix3._version import __version__ diff --git a/lib/mrtrix3/algorithm.py b/lib/mrtrix3/algorithm.py index dcc8bc5bba..bf01fe8276 100644 --- a/lib/mrtrix3/algorithm.py +++ b/lib/mrtrix3/algorithm.py @@ -1,4 +1,4 @@ -# Copyright (c) 2008-2024 the MRtrix3 contributors. +# Copyright (c) 2008-2025 the MRtrix3 contributors. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/lib/mrtrix3/app.py b/lib/mrtrix3/app.py index 7a49483c0a..348dd11564 100644 --- a/lib/mrtrix3/app.py +++ b/lib/mrtrix3/app.py @@ -1,4 +1,4 @@ -# Copyright (c) 2008-2024 the MRtrix3 contributors. +# Copyright (c) 2008-2025 the MRtrix3 contributors. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this @@ -59,7 +59,7 @@ _DEFAULT_COPYRIGHT = \ -'''Copyright (c) 2008-2024 the MRtrix3 contributors. +'''Copyright (c) 2008-2025 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this @@ -293,8 +293,7 @@ def make_scratch_dir(): #pylint: disable=unused-variable if CONTINUE_OPTION: debug('Skipping scratch directory creation due to use of -continue option') return - if SCRATCH_DIR: - raise Exception('Cannot use multiple scratch directories') + assert not SCRATCH_DIR, 'Cannot use multiple scratch directories' if hasattr(ARGS, 'scratch') and ARGS.scratch: dir_path = os.path.abspath(ARGS.scratch) else: @@ -320,8 +319,7 @@ def make_scratch_dir(): #pylint: disable=unused-variable def goto_scratch_dir(): #pylint: disable=unused-variable - if not SCRATCH_DIR: - raise Exception('No scratch directory location set') + assert SCRATCH_DIR, 'No scratch directory location set' if VERBOSITY: console('Changing to scratch directory (' + SCRATCH_DIR + ')') os.chdir(SCRATCH_DIR) @@ -632,15 +630,13 @@ def set_copyright(self, text): #pylint: disable=unused-variable # Mutually exclusive options need to be added before the command-line input is parsed def flag_mutually_exclusive_options(self, options, required=False): #pylint: disable=unused-variable - if not isinstance(options, list) or not isinstance(options[0], utils.STRING_TYPES): - raise Exception('Parser.flagMutuallyExclusiveOptions() only accepts a list of strings') + assert isinstance(options, list) and isinstance(options[0], utils.STRING_TYPES), \ + 'Parser.flagMutuallyExclusiveOptions() only accepts a list of strings' self._mutually_exclusive_option_groups.append( (options, required) ) def parse_args(self): - if not self._author: - raise Exception('Script author MUST be set in script\'s usage() function') - if not self._synopsis: - raise Exception('Script synopsis MUST be set in script\'s usage() function') + assert self._author, 'Script author MUST be set in script\'s usage() function' + assert self._synopsis, 'Script synopsis MUST be set in script\'s usage() function' if '-version' in sys.argv: self.print_version() sys.exit(0) diff --git a/lib/mrtrix3/dwi2response/dhollander.py b/lib/mrtrix3/dwi2response/dhollander.py index 15082bb0b1..9a7817a6af 100644 --- a/lib/mrtrix3/dwi2response/dhollander.py +++ b/lib/mrtrix3/dwi2response/dhollander.py @@ -1,4 +1,4 @@ -# Copyright (c) 2008-2024 the MRtrix3 contributors. +# Copyright (c) 2008-2025 the MRtrix3 contributors. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/lib/mrtrix3/dwi2response/fa.py b/lib/mrtrix3/dwi2response/fa.py index 68074548ec..4488dd0f35 100644 --- a/lib/mrtrix3/dwi2response/fa.py +++ b/lib/mrtrix3/dwi2response/fa.py @@ -1,4 +1,4 @@ -# Copyright (c) 2008-2024 the MRtrix3 contributors. +# Copyright (c) 2008-2025 the MRtrix3 contributors. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/lib/mrtrix3/dwi2response/manual.py b/lib/mrtrix3/dwi2response/manual.py index c8b8ec22b1..65f8d32dc8 100644 --- a/lib/mrtrix3/dwi2response/manual.py +++ b/lib/mrtrix3/dwi2response/manual.py @@ -1,4 +1,4 @@ -# Copyright (c) 2008-2024 the MRtrix3 contributors. +# Copyright (c) 2008-2025 the MRtrix3 contributors. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/lib/mrtrix3/dwi2response/msmt_5tt.py b/lib/mrtrix3/dwi2response/msmt_5tt.py index 1d5c070b20..c07ec94e76 100644 --- a/lib/mrtrix3/dwi2response/msmt_5tt.py +++ b/lib/mrtrix3/dwi2response/msmt_5tt.py @@ -1,4 +1,4 @@ -# Copyright (c) 2008-2024 the MRtrix3 contributors. +# Copyright (c) 2008-2025 the MRtrix3 contributors. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/lib/mrtrix3/dwi2response/tax.py b/lib/mrtrix3/dwi2response/tax.py index 0bc0d08405..fa90fc1d0d 100644 --- a/lib/mrtrix3/dwi2response/tax.py +++ b/lib/mrtrix3/dwi2response/tax.py @@ -1,4 +1,4 @@ -# Copyright (c) 2008-2024 the MRtrix3 contributors. +# Copyright (c) 2008-2025 the MRtrix3 contributors. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/lib/mrtrix3/dwi2response/tournier.py b/lib/mrtrix3/dwi2response/tournier.py index 42cf77d7e0..69ecdcc82f 100644 --- a/lib/mrtrix3/dwi2response/tournier.py +++ b/lib/mrtrix3/dwi2response/tournier.py @@ -1,4 +1,4 @@ -# Copyright (c) 2008-2024 the MRtrix3 contributors. +# Copyright (c) 2008-2025 the MRtrix3 contributors. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/lib/mrtrix3/dwibiascorrect/ants.py b/lib/mrtrix3/dwibiascorrect/ants.py index 7483f3e5bc..66e4490d26 100644 --- a/lib/mrtrix3/dwibiascorrect/ants.py +++ b/lib/mrtrix3/dwibiascorrect/ants.py @@ -1,4 +1,4 @@ -# Copyright (c) 2008-2024 the MRtrix3 contributors. +# Copyright (c) 2008-2025 the MRtrix3 contributors. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this @@ -16,7 +16,10 @@ # note: deal with these warnings properly when we drop support for Python 2: # pylint: disable=consider-using-f-string -from distutils.spawn import find_executable +try: + from shutil import which as find_executable +except ImportError: + from distutils.spawn import find_executable # pylint: disable=deprecated-module from mrtrix3 import MRtrixError from mrtrix3 import app, path, run diff --git a/lib/mrtrix3/dwibiascorrect/fsl.py b/lib/mrtrix3/dwibiascorrect/fsl.py index 9f8c652270..9b4e3e92e9 100644 --- a/lib/mrtrix3/dwibiascorrect/fsl.py +++ b/lib/mrtrix3/dwibiascorrect/fsl.py @@ -1,4 +1,4 @@ -# Copyright (c) 2008-2024 the MRtrix3 contributors. +# Copyright (c) 2008-2025 the MRtrix3 contributors. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/lib/mrtrix3/dwinormalise/group.py b/lib/mrtrix3/dwinormalise/group.py index c77fef523d..65832b4349 100644 --- a/lib/mrtrix3/dwinormalise/group.py +++ b/lib/mrtrix3/dwinormalise/group.py @@ -1,4 +1,4 @@ -# Copyright (c) 2008-2024 the MRtrix3 contributors. +# Copyright (c) 2008-2025 the MRtrix3 contributors. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/lib/mrtrix3/dwinormalise/individual.py b/lib/mrtrix3/dwinormalise/individual.py index 0ed0342756..1ba632ecb7 100644 --- a/lib/mrtrix3/dwinormalise/individual.py +++ b/lib/mrtrix3/dwinormalise/individual.py @@ -1,4 +1,4 @@ -# Copyright (c) 2008-2024 the MRtrix3 contributors. +# Copyright (c) 2008-2025 the MRtrix3 contributors. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/lib/mrtrix3/fsl.py b/lib/mrtrix3/fsl.py index f7a0739f52..019f3fecd6 100644 --- a/lib/mrtrix3/fsl.py +++ b/lib/mrtrix3/fsl.py @@ -1,4 +1,4 @@ -# Copyright (c) 2008-2024 the MRtrix3 contributors. +# Copyright (c) 2008-2025 the MRtrix3 contributors. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this @@ -14,7 +14,10 @@ # For more details, see http://www.mrtrix.org/. import os -from distutils.spawn import find_executable +try: + from shutil import which as find_executable +except ImportError: + from distutils.spawn import find_executable # pylint: disable=deprecated-module from mrtrix3 import MRtrixError diff --git a/lib/mrtrix3/image.py b/lib/mrtrix3/image.py index b6d0287690..2a621a02c2 100644 --- a/lib/mrtrix3/image.py +++ b/lib/mrtrix3/image.py @@ -1,4 +1,4 @@ -# Copyright (c) 2008-2024 the MRtrix3 contributors. +# Copyright (c) 2008-2025 the MRtrix3 contributors. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/lib/mrtrix3/matrix.py b/lib/mrtrix3/matrix.py index 0aa648d6ba..2494a04167 100644 --- a/lib/mrtrix3/matrix.py +++ b/lib/mrtrix3/matrix.py @@ -1,4 +1,4 @@ -# Copyright (c) 2008-2024 the MRtrix3 contributors. +# Copyright (c) 2008-2025 the MRtrix3 contributors. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/lib/mrtrix3/path.py b/lib/mrtrix3/path.py index 53c7e8a8cf..3bdbd47adb 100644 --- a/lib/mrtrix3/path.py +++ b/lib/mrtrix3/path.py @@ -1,4 +1,4 @@ -# Copyright (c) 2008-2024 the MRtrix3 contributors. +# Copyright (c) 2008-2025 the MRtrix3 contributors. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this @@ -26,12 +26,12 @@ try: from shlex import quote except ImportError: - from pipes import quote + from pipes import quote #pylint: disable=deprecated-module # Distutils removed in 3.12, but shutil.which not available in 2.7 try: from shutil import which as find_executable except ImportError: - from distutils.spawn import find_executable + from distutils.spawn import find_executable # pylint: disable=deprecated-module from mrtrix3 import CONFIG from mrtrix3.utils import STRING_TYPES diff --git a/lib/mrtrix3/phaseencoding.py b/lib/mrtrix3/phaseencoding.py index ed373a99b8..8e2ddc7769 100644 --- a/lib/mrtrix3/phaseencoding.py +++ b/lib/mrtrix3/phaseencoding.py @@ -1,4 +1,4 @@ -# Copyright (c) 2008-2024 the MRtrix3 contributors. +# Copyright (c) 2008-2025 the MRtrix3 contributors. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this @@ -32,7 +32,7 @@ def direction(string): #pylint: disable=unused-variable pe_axis = abs(int(string)) if pe_axis > 2: raise MRtrixError('When specified as a number, phase encode axis must be either 0, 1 or 2 (positive or negative)') - reverse = (string.contains('-')) # Allow -0 + reverse = string.contains('-') # Allow -0 pe_dir = [0,0,0] if reverse: pe_dir[pe_axis] = -1 diff --git a/lib/mrtrix3/run.py b/lib/mrtrix3/run.py index f2b7bc2f0e..5ab594e1b1 100644 --- a/lib/mrtrix3/run.py +++ b/lib/mrtrix3/run.py @@ -1,4 +1,4 @@ -# Copyright (c) 2008-2024 the MRtrix3 contributors. +# Copyright (c) 2008-2025 the MRtrix3 contributors. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this @@ -24,7 +24,7 @@ try: from shutil import which as find_executable except ImportError: - from distutils.spawn import find_executable + from distutils.spawn import find_executable # pylint: disable=deprecated-module IOStream = collections.namedtuple('IOStream', 'handle filename') diff --git a/lib/mrtrix3/sh.py b/lib/mrtrix3/sh.py index a981624321..bd3e92dd18 100644 --- a/lib/mrtrix3/sh.py +++ b/lib/mrtrix3/sh.py @@ -1,4 +1,4 @@ -# Copyright (c) 2008-2024 the MRtrix3 contributors. +# Copyright (c) 2008-2025 the MRtrix3 contributors. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/lib/mrtrix3/utils.py b/lib/mrtrix3/utils.py index 055ed6a4e6..58c6aec5b3 100644 --- a/lib/mrtrix3/utils.py +++ b/lib/mrtrix3/utils.py @@ -1,4 +1,4 @@ -# Copyright (c) 2008-2024 the MRtrix3 contributors. +# Copyright (c) 2008-2025 the MRtrix3 contributors. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/matlab/private/add_field.m b/matlab/private/add_field.m index e1818afb2c..c58028b7f3 100644 --- a/matlab/private/add_field.m +++ b/matlab/private/add_field.m @@ -1,4 +1,4 @@ -% Copyright (c) 2008-2024 the MRtrix3 contributors. +% Copyright (c) 2008-2025 the MRtrix3 contributors. % % This Source Code Form is subject to the terms of the Mozilla Public % License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/matlab/read_mrtrix.m b/matlab/read_mrtrix.m index 3d0ab74490..5cf28b6bbe 100644 --- a/matlab/read_mrtrix.m +++ b/matlab/read_mrtrix.m @@ -1,4 +1,4 @@ -% Copyright (c) 2008-2024 the MRtrix3 contributors. +% Copyright (c) 2008-2025 the MRtrix3 contributors. % % This Source Code Form is subject to the terms of the Mozilla Public % License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/matlab/read_mrtrix_tracks.m b/matlab/read_mrtrix_tracks.m index 1c7f33b313..cd009c647b 100644 --- a/matlab/read_mrtrix_tracks.m +++ b/matlab/read_mrtrix_tracks.m @@ -1,4 +1,4 @@ -% Copyright (c) 2008-2024 the MRtrix3 contributors. +% Copyright (c) 2008-2025 the MRtrix3 contributors. % % This Source Code Form is subject to the terms of the Mozilla Public % License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/matlab/read_mrtrix_tsf.m b/matlab/read_mrtrix_tsf.m index 37c9fd1d2a..29105efa73 100644 --- a/matlab/read_mrtrix_tsf.m +++ b/matlab/read_mrtrix_tsf.m @@ -1,4 +1,4 @@ -% Copyright (c) 2008-2024 the MRtrix3 contributors. +% Copyright (c) 2008-2025 the MRtrix3 contributors. % % This Source Code Form is subject to the terms of the Mozilla Public % License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/matlab/write_mrtrix.m b/matlab/write_mrtrix.m index 0178e55a43..a12667ca16 100644 --- a/matlab/write_mrtrix.m +++ b/matlab/write_mrtrix.m @@ -1,4 +1,4 @@ -% Copyright (c) 2008-2024 the MRtrix3 contributors. +% Copyright (c) 2008-2025 the MRtrix3 contributors. % % This Source Code Form is subject to the terms of the Mozilla Public % License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/matlab/write_mrtrix_tracks.m b/matlab/write_mrtrix_tracks.m index e45d899e70..bbd3d75986 100644 --- a/matlab/write_mrtrix_tracks.m +++ b/matlab/write_mrtrix_tracks.m @@ -1,4 +1,4 @@ -% Copyright (c) 2008-2024 the MRtrix3 contributors. +% Copyright (c) 2008-2025 the MRtrix3 contributors. % % This Source Code Form is subject to the terms of the Mozilla Public % License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/matlab/write_mrtrix_tsf.m b/matlab/write_mrtrix_tsf.m index bd22f9a67a..f7a0079198 100644 --- a/matlab/write_mrtrix_tsf.m +++ b/matlab/write_mrtrix_tsf.m @@ -1,4 +1,4 @@ -% Copyright (c) 2008-2024 the MRtrix3 contributors. +% Copyright (c) 2008-2025 the MRtrix3 contributors. % % This Source Code Form is subject to the terms of the Mozilla Public % License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/mrview.desktop b/mrview.desktop index f029ca4dc0..e1fc508aa6 100644 --- a/mrview.desktop +++ b/mrview.desktop @@ -1,6 +1,6 @@ #!/usr/bin/env xdg-open -# Copyright (c) 2008-2024 the MRtrix3 contributors. +# Copyright (c) 2008-2025 the MRtrix3 contributors. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/package_mrtrix b/package_mrtrix index f09ee8f722..38de013e26 100755 --- a/package_mrtrix +++ b/package_mrtrix @@ -1,6 +1,6 @@ #!/bin/bash -# Copyright (c) 2008-2024 the MRtrix3 contributors. +# Copyright (c) 2008-2025 the MRtrix3 contributors. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/run_pylint b/run_pylint index 8d62ca4cee..e8581c68aa 100755 --- a/run_pylint +++ b/run_pylint @@ -1,6 +1,6 @@ #!/bin/bash -# Copyright (c) 2008-2024 the MRtrix3 contributors. +# Copyright (c) 2008-2025 the MRtrix3 contributors. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/run_tests b/run_tests index 1a555ceb60..3fb7af950f 100755 --- a/run_tests +++ b/run_tests @@ -1,6 +1,6 @@ #!/bin/bash -# Copyright (c) 2008-2024 the MRtrix3 contributors. +# Copyright (c) 2008-2025 the MRtrix3 contributors. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/set_path b/set_path index 76c7f23ef9..0dfc059592 100755 --- a/set_path +++ b/set_path @@ -1,6 +1,6 @@ #!/usr/bin/env python -# Copyright (c) 2008-2024 the MRtrix3 contributors. +# Copyright (c) 2008-2025 the MRtrix3 contributors. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/share/mrtrix3/_5ttgen/FreeSurfer2ACT.txt b/share/mrtrix3/_5ttgen/FreeSurfer2ACT.txt index 5d0e9ca9fb..a27f948e70 100644 --- a/share/mrtrix3/_5ttgen/FreeSurfer2ACT.txt +++ b/share/mrtrix3/_5ttgen/FreeSurfer2ACT.txt @@ -1,4 +1,4 @@ -# Copyright (c) 2008-2024 the MRtrix3 contributors. +# Copyright (c) 2008-2025 the MRtrix3 contributors. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/share/mrtrix3/_5ttgen/FreeSurfer2ACT_sgm_amyg_hipp.txt b/share/mrtrix3/_5ttgen/FreeSurfer2ACT_sgm_amyg_hipp.txt index 0aa6d1bf43..a3c1686f55 100644 --- a/share/mrtrix3/_5ttgen/FreeSurfer2ACT_sgm_amyg_hipp.txt +++ b/share/mrtrix3/_5ttgen/FreeSurfer2ACT_sgm_amyg_hipp.txt @@ -1,4 +1,4 @@ -# Copyright (c) 2008-2024 the MRtrix3 contributors. +# Copyright (c) 2008-2025 the MRtrix3 contributors. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/share/mrtrix3/_5ttgen/hsvs/AmygSubfields.txt b/share/mrtrix3/_5ttgen/hsvs/AmygSubfields.txt index c557294be8..3ff6a23a02 100644 --- a/share/mrtrix3/_5ttgen/hsvs/AmygSubfields.txt +++ b/share/mrtrix3/_5ttgen/hsvs/AmygSubfields.txt @@ -1,4 +1,4 @@ -# Copyright (c) 2008-2024 the MRtrix3 contributors. +# Copyright (c) 2008-2025 the MRtrix3 contributors. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/share/mrtrix3/_5ttgen/hsvs/HippSubfields.txt b/share/mrtrix3/_5ttgen/hsvs/HippSubfields.txt index bcc500748e..c2b05c7e5f 100644 --- a/share/mrtrix3/_5ttgen/hsvs/HippSubfields.txt +++ b/share/mrtrix3/_5ttgen/hsvs/HippSubfields.txt @@ -1,4 +1,4 @@ -# Copyright (c) 2008-2024 the MRtrix3 contributors. +# Copyright (c) 2008-2025 the MRtrix3 contributors. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/share/mrtrix3/labelconvert/aal.txt b/share/mrtrix3/labelconvert/aal.txt index e412130d52..1746a3d167 100644 --- a/share/mrtrix3/labelconvert/aal.txt +++ b/share/mrtrix3/labelconvert/aal.txt @@ -1,4 +1,4 @@ -# Copyright (c) 2008-2024 the MRtrix3 contributors. +# Copyright (c) 2008-2025 the MRtrix3 contributors. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/share/mrtrix3/labelconvert/aal2.txt b/share/mrtrix3/labelconvert/aal2.txt index e34b62af5f..ad72a41960 100644 --- a/share/mrtrix3/labelconvert/aal2.txt +++ b/share/mrtrix3/labelconvert/aal2.txt @@ -1,4 +1,4 @@ -# Copyright (c) 2008-2024 the MRtrix3 contributors. +# Copyright (c) 2008-2025 the MRtrix3 contributors. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/share/mrtrix3/labelconvert/fs2lobes_cinginc_convert.txt b/share/mrtrix3/labelconvert/fs2lobes_cinginc_convert.txt index d4ebf64e37..5e039ead88 100644 --- a/share/mrtrix3/labelconvert/fs2lobes_cinginc_convert.txt +++ b/share/mrtrix3/labelconvert/fs2lobes_cinginc_convert.txt @@ -1,4 +1,4 @@ -# Copyright (c) 2008-2024 the MRtrix3 contributors. +# Copyright (c) 2008-2025 the MRtrix3 contributors. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/share/mrtrix3/labelconvert/fs2lobes_cinginc_labels.txt b/share/mrtrix3/labelconvert/fs2lobes_cinginc_labels.txt index 752468da97..4fe7fb3656 100644 --- a/share/mrtrix3/labelconvert/fs2lobes_cinginc_labels.txt +++ b/share/mrtrix3/labelconvert/fs2lobes_cinginc_labels.txt @@ -1,4 +1,4 @@ -# Copyright (c) 2008-2024 the MRtrix3 contributors. +# Copyright (c) 2008-2025 the MRtrix3 contributors. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/share/mrtrix3/labelconvert/fs2lobes_cingsep_convert.txt b/share/mrtrix3/labelconvert/fs2lobes_cingsep_convert.txt index 397cb981ba..ee6c9acc5f 100644 --- a/share/mrtrix3/labelconvert/fs2lobes_cingsep_convert.txt +++ b/share/mrtrix3/labelconvert/fs2lobes_cingsep_convert.txt @@ -1,4 +1,4 @@ -# Copyright (c) 2008-2024 the MRtrix3 contributors. +# Copyright (c) 2008-2025 the MRtrix3 contributors. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/share/mrtrix3/labelconvert/fs2lobes_cingsep_labels.txt b/share/mrtrix3/labelconvert/fs2lobes_cingsep_labels.txt index a6fd8d5f51..455b0943a1 100644 --- a/share/mrtrix3/labelconvert/fs2lobes_cingsep_labels.txt +++ b/share/mrtrix3/labelconvert/fs2lobes_cingsep_labels.txt @@ -1,4 +1,4 @@ -# Copyright (c) 2008-2024 the MRtrix3 contributors. +# Copyright (c) 2008-2025 the MRtrix3 contributors. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/share/mrtrix3/labelconvert/fs_a2009s.txt b/share/mrtrix3/labelconvert/fs_a2009s.txt index 34fd2c2591..f8ff10806d 100644 --- a/share/mrtrix3/labelconvert/fs_a2009s.txt +++ b/share/mrtrix3/labelconvert/fs_a2009s.txt @@ -1,4 +1,4 @@ -# Copyright (c) 2008-2024 the MRtrix3 contributors. +# Copyright (c) 2008-2025 the MRtrix3 contributors. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/share/mrtrix3/labelconvert/fs_default.txt b/share/mrtrix3/labelconvert/fs_default.txt index 8ea6173d00..048a75effc 100644 --- a/share/mrtrix3/labelconvert/fs_default.txt +++ b/share/mrtrix3/labelconvert/fs_default.txt @@ -1,4 +1,4 @@ -# Copyright (c) 2008-2024 the MRtrix3 contributors. +# Copyright (c) 2008-2025 the MRtrix3 contributors. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/share/mrtrix3/labelconvert/hcpmmp1_ordered.txt b/share/mrtrix3/labelconvert/hcpmmp1_ordered.txt index df6381a8fa..a23347f2f8 100644 --- a/share/mrtrix3/labelconvert/hcpmmp1_ordered.txt +++ b/share/mrtrix3/labelconvert/hcpmmp1_ordered.txt @@ -1,4 +1,4 @@ -# Copyright (c) 2008-2024 the MRtrix3 contributors. +# Copyright (c) 2008-2025 the MRtrix3 contributors. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/share/mrtrix3/labelconvert/hcpmmp1_original.txt b/share/mrtrix3/labelconvert/hcpmmp1_original.txt index be2f778515..5910da27fb 100644 --- a/share/mrtrix3/labelconvert/hcpmmp1_original.txt +++ b/share/mrtrix3/labelconvert/hcpmmp1_original.txt @@ -1,4 +1,4 @@ -# Copyright (c) 2008-2024 the MRtrix3 contributors. +# Copyright (c) 2008-2025 the MRtrix3 contributors. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/share/mrtrix3/labelconvert/lpba40.txt b/share/mrtrix3/labelconvert/lpba40.txt index 04491ca150..0a6f0acc3d 100644 --- a/share/mrtrix3/labelconvert/lpba40.txt +++ b/share/mrtrix3/labelconvert/lpba40.txt @@ -1,4 +1,4 @@ -# Copyright (c) 2008-2024 the MRtrix3 contributors. +# Copyright (c) 2008-2025 the MRtrix3 contributors. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/share/mrtrix3/labelsgmfix/FreeSurferSGM.txt b/share/mrtrix3/labelsgmfix/FreeSurferSGM.txt index fe73fa32b3..964f197344 100644 --- a/share/mrtrix3/labelsgmfix/FreeSurferSGM.txt +++ b/share/mrtrix3/labelsgmfix/FreeSurferSGM.txt @@ -1,4 +1,4 @@ -# Copyright (c) 2008-2024 the MRtrix3 contributors. +# Copyright (c) 2008-2025 the MRtrix3 contributors. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/colourmap.cpp b/src/colourmap.cpp index 43c85065df..a3747553d9 100644 --- a/src/colourmap.cpp +++ b/src/colourmap.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/colourmap.h b/src/colourmap.h index 52381ac9df..b25a53e3a4 100644 --- a/src/colourmap.h +++ b/src/colourmap.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/connectome/connectome.cpp b/src/connectome/connectome.cpp index 356dcc747a..fd9bc32d0a 100644 --- a/src/connectome/connectome.cpp +++ b/src/connectome/connectome.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/connectome/connectome.h b/src/connectome/connectome.h index 9d35f9af2a..490bc9bf4d 100644 --- a/src/connectome/connectome.h +++ b/src/connectome/connectome.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/connectome/enhance.cpp b/src/connectome/enhance.cpp index df88f7279b..fe75642950 100644 --- a/src/connectome/enhance.cpp +++ b/src/connectome/enhance.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/connectome/enhance.h b/src/connectome/enhance.h index 56b3fe8d2d..9861c489ad 100644 --- a/src/connectome/enhance.h +++ b/src/connectome/enhance.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/connectome/lut.cpp b/src/connectome/lut.cpp index b6ff91ab85..50cb4a3b48 100644 --- a/src/connectome/lut.cpp +++ b/src/connectome/lut.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/connectome/lut.h b/src/connectome/lut.h index f0c85413fa..74d815e928 100644 --- a/src/connectome/lut.h +++ b/src/connectome/lut.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/connectome/mat2vec.h b/src/connectome/mat2vec.h index 928d312180..988b4ed5f1 100644 --- a/src/connectome/mat2vec.h +++ b/src/connectome/mat2vec.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/bootstrap.h b/src/dwi/bootstrap.h index 5dbd23efcd..bb2867cdb7 100644 --- a/src/dwi/bootstrap.h +++ b/src/dwi/bootstrap.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/directions/file.cpp b/src/dwi/directions/file.cpp index e409327aaa..4bc1b85c58 100644 --- a/src/dwi/directions/file.cpp +++ b/src/dwi/directions/file.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/directions/file.h b/src/dwi/directions/file.h index 899c0c17e3..2ff482555b 100644 --- a/src/dwi/directions/file.h +++ b/src/dwi/directions/file.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/directions/mask.cpp b/src/dwi/directions/mask.cpp index c081a98385..7807b1f64b 100644 --- a/src/dwi/directions/mask.cpp +++ b/src/dwi/directions/mask.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/directions/mask.h b/src/dwi/directions/mask.h index 2fc7632dcd..e587e031dd 100644 --- a/src/dwi/directions/mask.h +++ b/src/dwi/directions/mask.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/directions/predefined.cpp b/src/dwi/directions/predefined.cpp index 53567d05f3..045a7c699b 100644 --- a/src/dwi/directions/predefined.cpp +++ b/src/dwi/directions/predefined.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/directions/predefined.h b/src/dwi/directions/predefined.h index 3b8a183306..b9a8921088 100644 --- a/src/dwi/directions/predefined.h +++ b/src/dwi/directions/predefined.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/directions/set.cpp b/src/dwi/directions/set.cpp index 0ddfc028c9..61dfa63b86 100644 --- a/src/dwi/directions/set.cpp +++ b/src/dwi/directions/set.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/directions/set.h b/src/dwi/directions/set.h index 6e31ac2f69..10874669ae 100644 --- a/src/dwi/directions/set.h +++ b/src/dwi/directions/set.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/fixel_map.h b/src/dwi/fixel_map.h index 741ff2ffd3..8c8ddee762 100644 --- a/src/dwi/fixel_map.h +++ b/src/dwi/fixel_map.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/fmls.cpp b/src/dwi/fmls.cpp index da15791dda..79b3bf266a 100644 --- a/src/dwi/fmls.cpp +++ b/src/dwi/fmls.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/fmls.h b/src/dwi/fmls.h index cb31e64f45..c70b560d3e 100644 --- a/src/dwi/fmls.h +++ b/src/dwi/fmls.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/noise_estimator.h b/src/dwi/noise_estimator.h index 635d2460b5..729161b855 100644 --- a/src/dwi/noise_estimator.h +++ b/src/dwi/noise_estimator.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/sdeconv/csd.cpp b/src/dwi/sdeconv/csd.cpp index 8785741a29..eae9df238a 100644 --- a/src/dwi/sdeconv/csd.cpp +++ b/src/dwi/sdeconv/csd.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/sdeconv/csd.h b/src/dwi/sdeconv/csd.h index a9f930e2ea..19b12f3d6f 100644 --- a/src/dwi/sdeconv/csd.h +++ b/src/dwi/sdeconv/csd.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/sdeconv/msmt_csd.cpp b/src/dwi/sdeconv/msmt_csd.cpp index f5e52f2343..4f36a946aa 100644 --- a/src/dwi/sdeconv/msmt_csd.cpp +++ b/src/dwi/sdeconv/msmt_csd.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/sdeconv/msmt_csd.h b/src/dwi/sdeconv/msmt_csd.h index 3719c899e8..394d35742d 100644 --- a/src/dwi/sdeconv/msmt_csd.h +++ b/src/dwi/sdeconv/msmt_csd.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tensor.h b/src/dwi/tensor.h index a9f0c6db5d..d617193f80 100644 --- a/src/dwi/tensor.h +++ b/src/dwi/tensor.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/ACT/act.cpp b/src/dwi/tractography/ACT/act.cpp index 13e6f08d5b..6a426bcce8 100644 --- a/src/dwi/tractography/ACT/act.cpp +++ b/src/dwi/tractography/ACT/act.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/ACT/act.h b/src/dwi/tractography/ACT/act.h index 124933f469..6902cd4450 100644 --- a/src/dwi/tractography/ACT/act.h +++ b/src/dwi/tractography/ACT/act.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/ACT/gmwmi.cpp b/src/dwi/tractography/ACT/gmwmi.cpp index 6fbccfd062..20cfe710d8 100644 --- a/src/dwi/tractography/ACT/gmwmi.cpp +++ b/src/dwi/tractography/ACT/gmwmi.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/ACT/gmwmi.h b/src/dwi/tractography/ACT/gmwmi.h index 28a49937da..6a938d0fe2 100644 --- a/src/dwi/tractography/ACT/gmwmi.h +++ b/src/dwi/tractography/ACT/gmwmi.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/ACT/method.h b/src/dwi/tractography/ACT/method.h index 25c277caad..94a05b0ea3 100644 --- a/src/dwi/tractography/ACT/method.h +++ b/src/dwi/tractography/ACT/method.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/ACT/shared.h b/src/dwi/tractography/ACT/shared.h index 1d2594132f..ba29a1b7d5 100644 --- a/src/dwi/tractography/ACT/shared.h +++ b/src/dwi/tractography/ACT/shared.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/ACT/tissues.h b/src/dwi/tractography/ACT/tissues.h index fab775ade3..4beb45cb2c 100644 --- a/src/dwi/tractography/ACT/tissues.h +++ b/src/dwi/tractography/ACT/tissues.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/GT/energy.h b/src/dwi/tractography/GT/energy.h index 3df79088a5..0d7fcd90dc 100644 --- a/src/dwi/tractography/GT/energy.h +++ b/src/dwi/tractography/GT/energy.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/GT/externalenergy.cpp b/src/dwi/tractography/GT/externalenergy.cpp index 6014d56a27..f5d5424132 100644 --- a/src/dwi/tractography/GT/externalenergy.cpp +++ b/src/dwi/tractography/GT/externalenergy.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/GT/externalenergy.h b/src/dwi/tractography/GT/externalenergy.h index 332c005d3a..70ac8bb741 100644 --- a/src/dwi/tractography/GT/externalenergy.h +++ b/src/dwi/tractography/GT/externalenergy.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/GT/gt.cpp b/src/dwi/tractography/GT/gt.cpp index dd675e5c02..957fe0c331 100644 --- a/src/dwi/tractography/GT/gt.cpp +++ b/src/dwi/tractography/GT/gt.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/GT/gt.h b/src/dwi/tractography/GT/gt.h index 3e223e08a4..5f9af4ba79 100644 --- a/src/dwi/tractography/GT/gt.h +++ b/src/dwi/tractography/GT/gt.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/GT/internalenergy.cpp b/src/dwi/tractography/GT/internalenergy.cpp index 19db31a604..f52288d2bc 100644 --- a/src/dwi/tractography/GT/internalenergy.cpp +++ b/src/dwi/tractography/GT/internalenergy.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/GT/internalenergy.h b/src/dwi/tractography/GT/internalenergy.h index 94659920f8..6c81189283 100644 --- a/src/dwi/tractography/GT/internalenergy.h +++ b/src/dwi/tractography/GT/internalenergy.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/GT/mhsampler.cpp b/src/dwi/tractography/GT/mhsampler.cpp index a53b52ede7..9a342516de 100644 --- a/src/dwi/tractography/GT/mhsampler.cpp +++ b/src/dwi/tractography/GT/mhsampler.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/GT/mhsampler.h b/src/dwi/tractography/GT/mhsampler.h index 4d58713b3a..f79de46ede 100644 --- a/src/dwi/tractography/GT/mhsampler.h +++ b/src/dwi/tractography/GT/mhsampler.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/GT/particle.cpp b/src/dwi/tractography/GT/particle.cpp index 3e187f133b..84409ce9e9 100644 --- a/src/dwi/tractography/GT/particle.cpp +++ b/src/dwi/tractography/GT/particle.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/GT/particle.h b/src/dwi/tractography/GT/particle.h index e681c64f49..eb6e733d76 100644 --- a/src/dwi/tractography/GT/particle.h +++ b/src/dwi/tractography/GT/particle.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/GT/particlegrid.cpp b/src/dwi/tractography/GT/particlegrid.cpp index fb2b8018eb..c2f2fd329c 100644 --- a/src/dwi/tractography/GT/particlegrid.cpp +++ b/src/dwi/tractography/GT/particlegrid.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/GT/particlegrid.h b/src/dwi/tractography/GT/particlegrid.h index d0e86bb8e5..fc8f4df867 100644 --- a/src/dwi/tractography/GT/particlegrid.h +++ b/src/dwi/tractography/GT/particlegrid.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/GT/particlepool.h b/src/dwi/tractography/GT/particlepool.h index 1ece3444af..e58c6f3fdd 100644 --- a/src/dwi/tractography/GT/particlepool.h +++ b/src/dwi/tractography/GT/particlepool.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/GT/spatiallock.h b/src/dwi/tractography/GT/spatiallock.h index 71c3cc44d7..7046e8cb2b 100644 --- a/src/dwi/tractography/GT/spatiallock.h +++ b/src/dwi/tractography/GT/spatiallock.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/SIFT/fixel.h b/src/dwi/tractography/SIFT/fixel.h index b3eaa81939..15ade40333 100644 --- a/src/dwi/tractography/SIFT/fixel.h +++ b/src/dwi/tractography/SIFT/fixel.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/SIFT/gradient_sort.cpp b/src/dwi/tractography/SIFT/gradient_sort.cpp index 6dcf910621..ffb63262d5 100644 --- a/src/dwi/tractography/SIFT/gradient_sort.cpp +++ b/src/dwi/tractography/SIFT/gradient_sort.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/SIFT/gradient_sort.h b/src/dwi/tractography/SIFT/gradient_sort.h index 93d4b1b82c..1e631ea574 100644 --- a/src/dwi/tractography/SIFT/gradient_sort.h +++ b/src/dwi/tractography/SIFT/gradient_sort.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/SIFT/model.h b/src/dwi/tractography/SIFT/model.h index 009a378a89..5085aa5c42 100644 --- a/src/dwi/tractography/SIFT/model.h +++ b/src/dwi/tractography/SIFT/model.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/SIFT/model_base.h b/src/dwi/tractography/SIFT/model_base.h index 5235f66df0..4d9e7a6f7a 100644 --- a/src/dwi/tractography/SIFT/model_base.h +++ b/src/dwi/tractography/SIFT/model_base.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/SIFT/output.h b/src/dwi/tractography/SIFT/output.h index ef362a7e91..eb1db92142 100644 --- a/src/dwi/tractography/SIFT/output.h +++ b/src/dwi/tractography/SIFT/output.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/SIFT/proc_mask.cpp b/src/dwi/tractography/SIFT/proc_mask.cpp index 0d54c27994..a82ba1414e 100644 --- a/src/dwi/tractography/SIFT/proc_mask.cpp +++ b/src/dwi/tractography/SIFT/proc_mask.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/SIFT/proc_mask.h b/src/dwi/tractography/SIFT/proc_mask.h index 44d4d55a67..4d229ab92e 100644 --- a/src/dwi/tractography/SIFT/proc_mask.h +++ b/src/dwi/tractography/SIFT/proc_mask.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/SIFT/sift.cpp b/src/dwi/tractography/SIFT/sift.cpp index 96aeeeeb7a..455fb4bc7d 100644 --- a/src/dwi/tractography/SIFT/sift.cpp +++ b/src/dwi/tractography/SIFT/sift.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/SIFT/sift.h b/src/dwi/tractography/SIFT/sift.h index 555e99a001..d672e9aa93 100644 --- a/src/dwi/tractography/SIFT/sift.h +++ b/src/dwi/tractography/SIFT/sift.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/SIFT/sifter.cpp b/src/dwi/tractography/SIFT/sifter.cpp index a6aa54ada4..3a6ef92e96 100644 --- a/src/dwi/tractography/SIFT/sifter.cpp +++ b/src/dwi/tractography/SIFT/sifter.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/SIFT/sifter.h b/src/dwi/tractography/SIFT/sifter.h index c5fbce9c3f..25b8d6da00 100644 --- a/src/dwi/tractography/SIFT/sifter.h +++ b/src/dwi/tractography/SIFT/sifter.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/SIFT/track_contribution.cpp b/src/dwi/tractography/SIFT/track_contribution.cpp index b9aa2b1819..0b96495da6 100644 --- a/src/dwi/tractography/SIFT/track_contribution.cpp +++ b/src/dwi/tractography/SIFT/track_contribution.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/SIFT/track_contribution.h b/src/dwi/tractography/SIFT/track_contribution.h index 49e338707f..b990fea4dc 100644 --- a/src/dwi/tractography/SIFT/track_contribution.h +++ b/src/dwi/tractography/SIFT/track_contribution.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/SIFT/track_index_range.cpp b/src/dwi/tractography/SIFT/track_index_range.cpp index d161402b5f..9e926456c5 100644 --- a/src/dwi/tractography/SIFT/track_index_range.cpp +++ b/src/dwi/tractography/SIFT/track_index_range.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/SIFT/track_index_range.h b/src/dwi/tractography/SIFT/track_index_range.h index 15a974b397..2bc10e5954 100644 --- a/src/dwi/tractography/SIFT/track_index_range.h +++ b/src/dwi/tractography/SIFT/track_index_range.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/SIFT/types.h b/src/dwi/tractography/SIFT/types.h index d01bcadc68..1d37b00ae2 100644 --- a/src/dwi/tractography/SIFT/types.h +++ b/src/dwi/tractography/SIFT/types.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/SIFT2/coeff_optimiser.cpp b/src/dwi/tractography/SIFT2/coeff_optimiser.cpp index de167c19ec..63c79ebf14 100644 --- a/src/dwi/tractography/SIFT2/coeff_optimiser.cpp +++ b/src/dwi/tractography/SIFT2/coeff_optimiser.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/SIFT2/coeff_optimiser.h b/src/dwi/tractography/SIFT2/coeff_optimiser.h index ea18711039..5afeb19c21 100644 --- a/src/dwi/tractography/SIFT2/coeff_optimiser.h +++ b/src/dwi/tractography/SIFT2/coeff_optimiser.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/SIFT2/fixel.h b/src/dwi/tractography/SIFT2/fixel.h index 2c9c3a68a1..b226deffc6 100644 --- a/src/dwi/tractography/SIFT2/fixel.h +++ b/src/dwi/tractography/SIFT2/fixel.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/SIFT2/fixel_updater.cpp b/src/dwi/tractography/SIFT2/fixel_updater.cpp index a4024b4938..d810709ba9 100644 --- a/src/dwi/tractography/SIFT2/fixel_updater.cpp +++ b/src/dwi/tractography/SIFT2/fixel_updater.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/SIFT2/fixel_updater.h b/src/dwi/tractography/SIFT2/fixel_updater.h index 3c787635af..3401717b51 100644 --- a/src/dwi/tractography/SIFT2/fixel_updater.h +++ b/src/dwi/tractography/SIFT2/fixel_updater.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/SIFT2/line_search.cpp b/src/dwi/tractography/SIFT2/line_search.cpp index 13c0d41237..faffd44731 100644 --- a/src/dwi/tractography/SIFT2/line_search.cpp +++ b/src/dwi/tractography/SIFT2/line_search.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/SIFT2/line_search.h b/src/dwi/tractography/SIFT2/line_search.h index 054dfd9f68..ad81bd6ddb 100644 --- a/src/dwi/tractography/SIFT2/line_search.h +++ b/src/dwi/tractography/SIFT2/line_search.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/SIFT2/reg_calculator.cpp b/src/dwi/tractography/SIFT2/reg_calculator.cpp index 234b762d74..84a7ce606e 100644 --- a/src/dwi/tractography/SIFT2/reg_calculator.cpp +++ b/src/dwi/tractography/SIFT2/reg_calculator.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/SIFT2/reg_calculator.h b/src/dwi/tractography/SIFT2/reg_calculator.h index 287a973e13..d8f1ded8fa 100644 --- a/src/dwi/tractography/SIFT2/reg_calculator.h +++ b/src/dwi/tractography/SIFT2/reg_calculator.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/SIFT2/regularisation.h b/src/dwi/tractography/SIFT2/regularisation.h index 3d71555605..b401b2ed28 100644 --- a/src/dwi/tractography/SIFT2/regularisation.h +++ b/src/dwi/tractography/SIFT2/regularisation.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/SIFT2/streamline_stats.cpp b/src/dwi/tractography/SIFT2/streamline_stats.cpp index 1477814605..100636eca6 100644 --- a/src/dwi/tractography/SIFT2/streamline_stats.cpp +++ b/src/dwi/tractography/SIFT2/streamline_stats.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/SIFT2/streamline_stats.h b/src/dwi/tractography/SIFT2/streamline_stats.h index c427bfecc7..4c8ea17a05 100644 --- a/src/dwi/tractography/SIFT2/streamline_stats.h +++ b/src/dwi/tractography/SIFT2/streamline_stats.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/SIFT2/tckfactor.cpp b/src/dwi/tractography/SIFT2/tckfactor.cpp index 120560480b..e2b8f927d0 100644 --- a/src/dwi/tractography/SIFT2/tckfactor.cpp +++ b/src/dwi/tractography/SIFT2/tckfactor.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/SIFT2/tckfactor.h b/src/dwi/tractography/SIFT2/tckfactor.h index 9e46695adc..ff4f72af4e 100644 --- a/src/dwi/tractography/SIFT2/tckfactor.h +++ b/src/dwi/tractography/SIFT2/tckfactor.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/algorithms/calibrator.h b/src/dwi/tractography/algorithms/calibrator.h index 00c59953b1..46c87e9c4e 100644 --- a/src/dwi/tractography/algorithms/calibrator.h +++ b/src/dwi/tractography/algorithms/calibrator.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/algorithms/fact.h b/src/dwi/tractography/algorithms/fact.h index 3e8b46926c..2b880f4c7c 100644 --- a/src/dwi/tractography/algorithms/fact.h +++ b/src/dwi/tractography/algorithms/fact.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/algorithms/iFOD1.cpp b/src/dwi/tractography/algorithms/iFOD1.cpp index d04ce0f4a5..f70e6c8195 100644 --- a/src/dwi/tractography/algorithms/iFOD1.cpp +++ b/src/dwi/tractography/algorithms/iFOD1.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/algorithms/iFOD1.h b/src/dwi/tractography/algorithms/iFOD1.h index 78ad1e0df8..bb2840eeb7 100644 --- a/src/dwi/tractography/algorithms/iFOD1.h +++ b/src/dwi/tractography/algorithms/iFOD1.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/algorithms/iFOD2.cpp b/src/dwi/tractography/algorithms/iFOD2.cpp index adaa5d27d8..97a18bbd7c 100644 --- a/src/dwi/tractography/algorithms/iFOD2.cpp +++ b/src/dwi/tractography/algorithms/iFOD2.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/algorithms/iFOD2.h b/src/dwi/tractography/algorithms/iFOD2.h index a09639119c..109f14a5a3 100644 --- a/src/dwi/tractography/algorithms/iFOD2.h +++ b/src/dwi/tractography/algorithms/iFOD2.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/algorithms/nulldist.h b/src/dwi/tractography/algorithms/nulldist.h index 1cd9e661e6..fa572e9ac5 100644 --- a/src/dwi/tractography/algorithms/nulldist.h +++ b/src/dwi/tractography/algorithms/nulldist.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/algorithms/sd_stream.h b/src/dwi/tractography/algorithms/sd_stream.h index b0d6858b40..343590e230 100644 --- a/src/dwi/tractography/algorithms/sd_stream.h +++ b/src/dwi/tractography/algorithms/sd_stream.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/algorithms/seedtest.h b/src/dwi/tractography/algorithms/seedtest.h index fd8758ae7c..9770682ac5 100644 --- a/src/dwi/tractography/algorithms/seedtest.h +++ b/src/dwi/tractography/algorithms/seedtest.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/algorithms/tensor_det.h b/src/dwi/tractography/algorithms/tensor_det.h index 44fc1781a0..a4b8c817e0 100644 --- a/src/dwi/tractography/algorithms/tensor_det.h +++ b/src/dwi/tractography/algorithms/tensor_det.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/algorithms/tensor_prob.h b/src/dwi/tractography/algorithms/tensor_prob.h index 3780ef00e2..1156b26367 100644 --- a/src/dwi/tractography/algorithms/tensor_prob.h +++ b/src/dwi/tractography/algorithms/tensor_prob.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/connectome/connectome.cpp b/src/dwi/tractography/connectome/connectome.cpp index ea2060cf0a..b1a81af421 100644 --- a/src/dwi/tractography/connectome/connectome.cpp +++ b/src/dwi/tractography/connectome/connectome.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/connectome/connectome.h b/src/dwi/tractography/connectome/connectome.h index 799cb70715..e50cea7415 100644 --- a/src/dwi/tractography/connectome/connectome.h +++ b/src/dwi/tractography/connectome/connectome.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/connectome/exemplar.cpp b/src/dwi/tractography/connectome/exemplar.cpp index 6c858ead23..a87a26220d 100644 --- a/src/dwi/tractography/connectome/exemplar.cpp +++ b/src/dwi/tractography/connectome/exemplar.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/connectome/exemplar.h b/src/dwi/tractography/connectome/exemplar.h index 8a6b4b93e5..21c6b3158d 100644 --- a/src/dwi/tractography/connectome/exemplar.h +++ b/src/dwi/tractography/connectome/exemplar.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/connectome/extract.cpp b/src/dwi/tractography/connectome/extract.cpp index fccf210c4f..71a68fc9cf 100644 --- a/src/dwi/tractography/connectome/extract.cpp +++ b/src/dwi/tractography/connectome/extract.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/connectome/extract.h b/src/dwi/tractography/connectome/extract.h index 50eb0dcb6f..8960e5e7bf 100644 --- a/src/dwi/tractography/connectome/extract.h +++ b/src/dwi/tractography/connectome/extract.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/connectome/mapped_track.h b/src/dwi/tractography/connectome/mapped_track.h index 46a56d6d49..a6eb466b0e 100644 --- a/src/dwi/tractography/connectome/mapped_track.h +++ b/src/dwi/tractography/connectome/mapped_track.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/connectome/mapper.h b/src/dwi/tractography/connectome/mapper.h index 1dc320cee0..9025226545 100644 --- a/src/dwi/tractography/connectome/mapper.h +++ b/src/dwi/tractography/connectome/mapper.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/connectome/matrix.cpp b/src/dwi/tractography/connectome/matrix.cpp index 3490cb39e6..b582714bbe 100644 --- a/src/dwi/tractography/connectome/matrix.cpp +++ b/src/dwi/tractography/connectome/matrix.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/connectome/matrix.h b/src/dwi/tractography/connectome/matrix.h index ad5dd85f37..7915ae7387 100644 --- a/src/dwi/tractography/connectome/matrix.h +++ b/src/dwi/tractography/connectome/matrix.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/connectome/metric.h b/src/dwi/tractography/connectome/metric.h index 5155ed3f62..fe1f228f29 100644 --- a/src/dwi/tractography/connectome/metric.h +++ b/src/dwi/tractography/connectome/metric.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/connectome/streamline.h b/src/dwi/tractography/connectome/streamline.h index e03776e831..80f9a1caa3 100644 --- a/src/dwi/tractography/connectome/streamline.h +++ b/src/dwi/tractography/connectome/streamline.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/connectome/tck2nodes.cpp b/src/dwi/tractography/connectome/tck2nodes.cpp index 67eb5997ae..c8df977af7 100644 --- a/src/dwi/tractography/connectome/tck2nodes.cpp +++ b/src/dwi/tractography/connectome/tck2nodes.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/connectome/tck2nodes.h b/src/dwi/tractography/connectome/tck2nodes.h index 99d774995e..c08b81597d 100644 --- a/src/dwi/tractography/connectome/tck2nodes.h +++ b/src/dwi/tractography/connectome/tck2nodes.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/editing/editing.cpp b/src/dwi/tractography/editing/editing.cpp index 067dda9e5e..2ad624aab4 100644 --- a/src/dwi/tractography/editing/editing.cpp +++ b/src/dwi/tractography/editing/editing.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/editing/editing.h b/src/dwi/tractography/editing/editing.h index 6c69ec1fc6..75412cb1c6 100644 --- a/src/dwi/tractography/editing/editing.h +++ b/src/dwi/tractography/editing/editing.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/editing/loader.h b/src/dwi/tractography/editing/loader.h index 601ff9b16b..8dbe748b90 100644 --- a/src/dwi/tractography/editing/loader.h +++ b/src/dwi/tractography/editing/loader.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/editing/receiver.cpp b/src/dwi/tractography/editing/receiver.cpp index b9ab1a08cd..0b0a0748cb 100644 --- a/src/dwi/tractography/editing/receiver.cpp +++ b/src/dwi/tractography/editing/receiver.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/editing/receiver.h b/src/dwi/tractography/editing/receiver.h index 362859ea68..6f84f06575 100644 --- a/src/dwi/tractography/editing/receiver.h +++ b/src/dwi/tractography/editing/receiver.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/editing/worker.cpp b/src/dwi/tractography/editing/worker.cpp index 8b2d77a4d4..2827ac60e8 100644 --- a/src/dwi/tractography/editing/worker.cpp +++ b/src/dwi/tractography/editing/worker.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/editing/worker.h b/src/dwi/tractography/editing/worker.h index f8ed697027..1c16c412f1 100644 --- a/src/dwi/tractography/editing/worker.h +++ b/src/dwi/tractography/editing/worker.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/file.h b/src/dwi/tractography/file.h index 3c447c7723..e8f138ca72 100644 --- a/src/dwi/tractography/file.h +++ b/src/dwi/tractography/file.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/file_base.cpp b/src/dwi/tractography/file_base.cpp index 4b6f2e6302..30b7fbc388 100644 --- a/src/dwi/tractography/file_base.cpp +++ b/src/dwi/tractography/file_base.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/file_base.h b/src/dwi/tractography/file_base.h index c9e27efad8..925e93407e 100644 --- a/src/dwi/tractography/file_base.h +++ b/src/dwi/tractography/file_base.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/mapping/buffer_scratch_dump.h b/src/dwi/tractography/mapping/buffer_scratch_dump.h index c56d45114f..bf857b50e3 100644 --- a/src/dwi/tractography/mapping/buffer_scratch_dump.h +++ b/src/dwi/tractography/mapping/buffer_scratch_dump.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/mapping/fixel_td_map.cpp b/src/dwi/tractography/mapping/fixel_td_map.cpp index 9198e3f909..f1dc5fcb19 100644 --- a/src/dwi/tractography/mapping/fixel_td_map.cpp +++ b/src/dwi/tractography/mapping/fixel_td_map.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/mapping/fixel_td_map.h b/src/dwi/tractography/mapping/fixel_td_map.h index f5757c132c..6d79cce316 100644 --- a/src/dwi/tractography/mapping/fixel_td_map.h +++ b/src/dwi/tractography/mapping/fixel_td_map.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/mapping/gaussian/mapper.cpp b/src/dwi/tractography/mapping/gaussian/mapper.cpp index e7866f195f..7bb13beb42 100644 --- a/src/dwi/tractography/mapping/gaussian/mapper.cpp +++ b/src/dwi/tractography/mapping/gaussian/mapper.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/mapping/gaussian/mapper.h b/src/dwi/tractography/mapping/gaussian/mapper.h index 85a3bd6323..609bc25179 100644 --- a/src/dwi/tractography/mapping/gaussian/mapper.h +++ b/src/dwi/tractography/mapping/gaussian/mapper.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/mapping/gaussian/voxel.h b/src/dwi/tractography/mapping/gaussian/voxel.h index 51812a2805..f83763f7f9 100644 --- a/src/dwi/tractography/mapping/gaussian/voxel.h +++ b/src/dwi/tractography/mapping/gaussian/voxel.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/mapping/loader.h b/src/dwi/tractography/mapping/loader.h index 498772e0e1..8bfb20d292 100644 --- a/src/dwi/tractography/mapping/loader.h +++ b/src/dwi/tractography/mapping/loader.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/mapping/mapper.cpp b/src/dwi/tractography/mapping/mapper.cpp index 124885720f..d86430bc5d 100644 --- a/src/dwi/tractography/mapping/mapper.cpp +++ b/src/dwi/tractography/mapping/mapper.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/mapping/mapper.h b/src/dwi/tractography/mapping/mapper.h index 96b95b3409..45ea99c852 100644 --- a/src/dwi/tractography/mapping/mapper.h +++ b/src/dwi/tractography/mapping/mapper.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/mapping/mapper_plugins.cpp b/src/dwi/tractography/mapping/mapper_plugins.cpp index 640c552ffc..e975577420 100644 --- a/src/dwi/tractography/mapping/mapper_plugins.cpp +++ b/src/dwi/tractography/mapping/mapper_plugins.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/mapping/mapper_plugins.h b/src/dwi/tractography/mapping/mapper_plugins.h index 9244fab520..fa97b1dac7 100644 --- a/src/dwi/tractography/mapping/mapper_plugins.h +++ b/src/dwi/tractography/mapping/mapper_plugins.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/mapping/mapping.cpp b/src/dwi/tractography/mapping/mapping.cpp index 0649cdda57..ba50fbbfdc 100644 --- a/src/dwi/tractography/mapping/mapping.cpp +++ b/src/dwi/tractography/mapping/mapping.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/mapping/mapping.h b/src/dwi/tractography/mapping/mapping.h index 661f710c72..9dfe29241d 100644 --- a/src/dwi/tractography/mapping/mapping.h +++ b/src/dwi/tractography/mapping/mapping.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/mapping/twi_stats.cpp b/src/dwi/tractography/mapping/twi_stats.cpp index 8231b56940..4064573295 100644 --- a/src/dwi/tractography/mapping/twi_stats.cpp +++ b/src/dwi/tractography/mapping/twi_stats.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/mapping/twi_stats.h b/src/dwi/tractography/mapping/twi_stats.h index c115baf164..6b9c611a16 100644 --- a/src/dwi/tractography/mapping/twi_stats.h +++ b/src/dwi/tractography/mapping/twi_stats.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/mapping/voxel.cpp b/src/dwi/tractography/mapping/voxel.cpp index a208667248..c748594c10 100644 --- a/src/dwi/tractography/mapping/voxel.cpp +++ b/src/dwi/tractography/mapping/voxel.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/mapping/voxel.h b/src/dwi/tractography/mapping/voxel.h index f8ca3e8a4f..d37281b8e3 100644 --- a/src/dwi/tractography/mapping/voxel.h +++ b/src/dwi/tractography/mapping/voxel.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/mapping/writer.cpp b/src/dwi/tractography/mapping/writer.cpp index 0270545319..c95a2c6ae2 100644 --- a/src/dwi/tractography/mapping/writer.cpp +++ b/src/dwi/tractography/mapping/writer.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/mapping/writer.h b/src/dwi/tractography/mapping/writer.h index 69b7fbd1a9..f7ecac8d4b 100644 --- a/src/dwi/tractography/mapping/writer.h +++ b/src/dwi/tractography/mapping/writer.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/properties.cpp b/src/dwi/tractography/properties.cpp index c4893aabae..4a6a77ee7a 100644 --- a/src/dwi/tractography/properties.cpp +++ b/src/dwi/tractography/properties.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/properties.h b/src/dwi/tractography/properties.h index 223d6086fe..50b737fd82 100644 --- a/src/dwi/tractography/properties.h +++ b/src/dwi/tractography/properties.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/resampling/arc.cpp b/src/dwi/tractography/resampling/arc.cpp index 98379ef1ce..88daf7bdd2 100644 --- a/src/dwi/tractography/resampling/arc.cpp +++ b/src/dwi/tractography/resampling/arc.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/resampling/arc.h b/src/dwi/tractography/resampling/arc.h index 090b0bcd49..9978fb146b 100644 --- a/src/dwi/tractography/resampling/arc.h +++ b/src/dwi/tractography/resampling/arc.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/resampling/downsampler.cpp b/src/dwi/tractography/resampling/downsampler.cpp index 111dc7b277..c58b8e6d1c 100644 --- a/src/dwi/tractography/resampling/downsampler.cpp +++ b/src/dwi/tractography/resampling/downsampler.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/resampling/downsampler.h b/src/dwi/tractography/resampling/downsampler.h index c77dbe2fef..12e669be98 100644 --- a/src/dwi/tractography/resampling/downsampler.h +++ b/src/dwi/tractography/resampling/downsampler.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/resampling/endpoints.cpp b/src/dwi/tractography/resampling/endpoints.cpp index 223ca57fcf..70e76d5442 100644 --- a/src/dwi/tractography/resampling/endpoints.cpp +++ b/src/dwi/tractography/resampling/endpoints.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/resampling/endpoints.h b/src/dwi/tractography/resampling/endpoints.h index 77be0e359b..f57bb5ab00 100644 --- a/src/dwi/tractography/resampling/endpoints.h +++ b/src/dwi/tractography/resampling/endpoints.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/resampling/fixed_num_points.cpp b/src/dwi/tractography/resampling/fixed_num_points.cpp index f086e284bf..86cc7783e5 100644 --- a/src/dwi/tractography/resampling/fixed_num_points.cpp +++ b/src/dwi/tractography/resampling/fixed_num_points.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/resampling/fixed_num_points.h b/src/dwi/tractography/resampling/fixed_num_points.h index f896e8d172..6f5cedd4f7 100644 --- a/src/dwi/tractography/resampling/fixed_num_points.h +++ b/src/dwi/tractography/resampling/fixed_num_points.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/resampling/fixed_step_size.cpp b/src/dwi/tractography/resampling/fixed_step_size.cpp index 4124263740..288879119b 100644 --- a/src/dwi/tractography/resampling/fixed_step_size.cpp +++ b/src/dwi/tractography/resampling/fixed_step_size.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/resampling/fixed_step_size.h b/src/dwi/tractography/resampling/fixed_step_size.h index f894a543b0..2bb443a23f 100644 --- a/src/dwi/tractography/resampling/fixed_step_size.h +++ b/src/dwi/tractography/resampling/fixed_step_size.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/resampling/resampling.cpp b/src/dwi/tractography/resampling/resampling.cpp index 1099f62eb7..91e28d186f 100644 --- a/src/dwi/tractography/resampling/resampling.cpp +++ b/src/dwi/tractography/resampling/resampling.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/resampling/resampling.h b/src/dwi/tractography/resampling/resampling.h index b251ede09b..b05bd46243 100644 --- a/src/dwi/tractography/resampling/resampling.h +++ b/src/dwi/tractography/resampling/resampling.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/resampling/upsampler.cpp b/src/dwi/tractography/resampling/upsampler.cpp index e52a54532b..66e1411307 100644 --- a/src/dwi/tractography/resampling/upsampler.cpp +++ b/src/dwi/tractography/resampling/upsampler.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/resampling/upsampler.h b/src/dwi/tractography/resampling/upsampler.h index 9fa90b35ec..91688478ee 100644 --- a/src/dwi/tractography/resampling/upsampler.h +++ b/src/dwi/tractography/resampling/upsampler.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/rng.cpp b/src/dwi/tractography/rng.cpp index b8f97814a4..16c4ecd8c8 100644 --- a/src/dwi/tractography/rng.cpp +++ b/src/dwi/tractography/rng.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/rng.h b/src/dwi/tractography/rng.h index 36cd1f7d90..1a94904e78 100644 --- a/src/dwi/tractography/rng.h +++ b/src/dwi/tractography/rng.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/roi.cpp b/src/dwi/tractography/roi.cpp index 5dd5cefa39..c2f3978ded 100644 --- a/src/dwi/tractography/roi.cpp +++ b/src/dwi/tractography/roi.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/roi.h b/src/dwi/tractography/roi.h index 5f83d1b466..7720ea0c29 100644 --- a/src/dwi/tractography/roi.h +++ b/src/dwi/tractography/roi.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/scalar_file.h b/src/dwi/tractography/scalar_file.h index ac39a14d8a..773af4e510 100644 --- a/src/dwi/tractography/scalar_file.h +++ b/src/dwi/tractography/scalar_file.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/seeding/base.h b/src/dwi/tractography/seeding/base.h index c5863e42c9..a8acb5497a 100644 --- a/src/dwi/tractography/seeding/base.h +++ b/src/dwi/tractography/seeding/base.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/seeding/basic.cpp b/src/dwi/tractography/seeding/basic.cpp index 9ac11a39d4..24fd9f6131 100644 --- a/src/dwi/tractography/seeding/basic.cpp +++ b/src/dwi/tractography/seeding/basic.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/seeding/basic.h b/src/dwi/tractography/seeding/basic.h index de03ee09a0..d4425ab225 100644 --- a/src/dwi/tractography/seeding/basic.h +++ b/src/dwi/tractography/seeding/basic.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/seeding/dynamic.cpp b/src/dwi/tractography/seeding/dynamic.cpp index 6abe9e2b83..6b29e71700 100644 --- a/src/dwi/tractography/seeding/dynamic.cpp +++ b/src/dwi/tractography/seeding/dynamic.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/seeding/dynamic.h b/src/dwi/tractography/seeding/dynamic.h index a2f41711bb..ac0d1b8c73 100644 --- a/src/dwi/tractography/seeding/dynamic.h +++ b/src/dwi/tractography/seeding/dynamic.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/seeding/gmwmi.cpp b/src/dwi/tractography/seeding/gmwmi.cpp index b127bfd7b2..60ca353b27 100644 --- a/src/dwi/tractography/seeding/gmwmi.cpp +++ b/src/dwi/tractography/seeding/gmwmi.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/seeding/gmwmi.h b/src/dwi/tractography/seeding/gmwmi.h index 8205914c9b..8988158ff4 100644 --- a/src/dwi/tractography/seeding/gmwmi.h +++ b/src/dwi/tractography/seeding/gmwmi.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/seeding/list.cpp b/src/dwi/tractography/seeding/list.cpp index 41e169596b..17414dd66d 100644 --- a/src/dwi/tractography/seeding/list.cpp +++ b/src/dwi/tractography/seeding/list.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/seeding/list.h b/src/dwi/tractography/seeding/list.h index ce456b03ba..cd56373bf8 100644 --- a/src/dwi/tractography/seeding/list.h +++ b/src/dwi/tractography/seeding/list.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/seeding/seeding.cpp b/src/dwi/tractography/seeding/seeding.cpp index b45e75093a..a26e006704 100644 --- a/src/dwi/tractography/seeding/seeding.cpp +++ b/src/dwi/tractography/seeding/seeding.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/seeding/seeding.h b/src/dwi/tractography/seeding/seeding.h index 04b1bc402d..2b71e64ddf 100644 --- a/src/dwi/tractography/seeding/seeding.h +++ b/src/dwi/tractography/seeding/seeding.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/streamline.h b/src/dwi/tractography/streamline.h index d46fb53da3..856d73c645 100644 --- a/src/dwi/tractography/streamline.h +++ b/src/dwi/tractography/streamline.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/tracking/early_exit.cpp b/src/dwi/tractography/tracking/early_exit.cpp index 8901ffb9ad..c0b75d7d77 100644 --- a/src/dwi/tractography/tracking/early_exit.cpp +++ b/src/dwi/tractography/tracking/early_exit.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/tracking/early_exit.h b/src/dwi/tractography/tracking/early_exit.h index f9bfa02bff..fedb34da3d 100644 --- a/src/dwi/tractography/tracking/early_exit.h +++ b/src/dwi/tractography/tracking/early_exit.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/tracking/exec.h b/src/dwi/tractography/tracking/exec.h index 977cf6756c..8068c33d5e 100644 --- a/src/dwi/tractography/tracking/exec.h +++ b/src/dwi/tractography/tracking/exec.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/tracking/generated_track.h b/src/dwi/tractography/tracking/generated_track.h index d075dadb71..59af08be58 100644 --- a/src/dwi/tractography/tracking/generated_track.h +++ b/src/dwi/tractography/tracking/generated_track.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/tracking/method.cpp b/src/dwi/tractography/tracking/method.cpp index 8a6a9764d3..b1156bc56b 100644 --- a/src/dwi/tractography/tracking/method.cpp +++ b/src/dwi/tractography/tracking/method.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/tracking/method.h b/src/dwi/tractography/tracking/method.h index 53b0d55ef4..3ee87ef9d5 100644 --- a/src/dwi/tractography/tracking/method.h +++ b/src/dwi/tractography/tracking/method.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/tracking/shared.cpp b/src/dwi/tractography/tracking/shared.cpp index 7109a9d2bd..8b1302db3b 100644 --- a/src/dwi/tractography/tracking/shared.cpp +++ b/src/dwi/tractography/tracking/shared.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/tracking/shared.h b/src/dwi/tractography/tracking/shared.h index e2bb586e76..5174f83d35 100644 --- a/src/dwi/tractography/tracking/shared.h +++ b/src/dwi/tractography/tracking/shared.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/tracking/tractography.cpp b/src/dwi/tractography/tracking/tractography.cpp index df0d1b508a..3e883b805a 100644 --- a/src/dwi/tractography/tracking/tractography.cpp +++ b/src/dwi/tractography/tracking/tractography.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/tracking/tractography.h b/src/dwi/tractography/tracking/tractography.h index 396f65149e..ffd7b9cc59 100644 --- a/src/dwi/tractography/tracking/tractography.h +++ b/src/dwi/tractography/tracking/tractography.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/tracking/types.h b/src/dwi/tractography/tracking/types.h index 11c2841cec..66e84046c5 100644 --- a/src/dwi/tractography/tracking/types.h +++ b/src/dwi/tractography/tracking/types.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/tracking/write_kernel.cpp b/src/dwi/tractography/tracking/write_kernel.cpp index 49997f833f..455fb9b7fb 100644 --- a/src/dwi/tractography/tracking/write_kernel.cpp +++ b/src/dwi/tractography/tracking/write_kernel.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/tracking/write_kernel.h b/src/dwi/tractography/tracking/write_kernel.h index b589533d02..a06eec3a59 100644 --- a/src/dwi/tractography/tracking/write_kernel.h +++ b/src/dwi/tractography/tracking/write_kernel.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/weights.cpp b/src/dwi/tractography/weights.cpp index 6127cf3575..86adab180e 100644 --- a/src/dwi/tractography/weights.cpp +++ b/src/dwi/tractography/weights.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/weights.h b/src/dwi/tractography/weights.h index 7b0268b26f..974a4e1790 100644 --- a/src/dwi/tractography/weights.h +++ b/src/dwi/tractography/weights.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/exec_version.h b/src/exec_version.h index 66cbfd871d..cf1a8f6093 100644 --- a/src/exec_version.h +++ b/src/exec_version.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/fixel/filter/base.h b/src/fixel/filter/base.h index 5d97139071..aeab02777e 100644 --- a/src/fixel/filter/base.h +++ b/src/fixel/filter/base.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/fixel/filter/connect.cpp b/src/fixel/filter/connect.cpp index 487a58f184..03d4c77d86 100644 --- a/src/fixel/filter/connect.cpp +++ b/src/fixel/filter/connect.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/fixel/filter/connect.h b/src/fixel/filter/connect.h index 3f776a77b5..1bd761f03f 100644 --- a/src/fixel/filter/connect.h +++ b/src/fixel/filter/connect.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/fixel/filter/smooth.cpp b/src/fixel/filter/smooth.cpp index 470c263334..009f16fba6 100644 --- a/src/fixel/filter/smooth.cpp +++ b/src/fixel/filter/smooth.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/fixel/filter/smooth.h b/src/fixel/filter/smooth.h index da22fc43ae..092a0a1107 100644 --- a/src/fixel/filter/smooth.h +++ b/src/fixel/filter/smooth.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/fixel/index_remapper.cpp b/src/fixel/index_remapper.cpp index fc14acdeaf..a23c001a8a 100644 --- a/src/fixel/index_remapper.cpp +++ b/src/fixel/index_remapper.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/fixel/index_remapper.h b/src/fixel/index_remapper.h index 90dda7a410..3e99810d8f 100644 --- a/src/fixel/index_remapper.h +++ b/src/fixel/index_remapper.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/fixel/matrix.cpp b/src/fixel/matrix.cpp index 8ed077b3df..fb973a51fc 100644 --- a/src/fixel/matrix.cpp +++ b/src/fixel/matrix.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/fixel/matrix.h b/src/fixel/matrix.h index 82c7c5c031..24592f0664 100644 --- a/src/fixel/matrix.h +++ b/src/fixel/matrix.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/color_button.cpp b/src/gui/color_button.cpp index 1249603cd6..d053ee6efc 100644 --- a/src/gui/color_button.cpp +++ b/src/gui/color_button.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/color_button.h b/src/gui/color_button.h index b4f33e9b46..c4ab89a43c 100644 --- a/src/gui/color_button.h +++ b/src/gui/color_button.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/crosshair.cpp b/src/gui/crosshair.cpp index 4062495156..4af8713e4a 100644 --- a/src/gui/crosshair.cpp +++ b/src/gui/crosshair.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/crosshair.h b/src/gui/crosshair.h index 77c30b851b..acaabffc03 100644 --- a/src/gui/crosshair.h +++ b/src/gui/crosshair.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/cursor.cpp b/src/gui/cursor.cpp index ce52804a1e..5d3c8d85f2 100644 --- a/src/gui/cursor.cpp +++ b/src/gui/cursor.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/cursor.h b/src/gui/cursor.h index 16a6fe5b29..92927ebed0 100644 --- a/src/gui/cursor.h +++ b/src/gui/cursor.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/dialog/dialog.cpp b/src/gui/dialog/dialog.cpp index 01a723a910..02c0e682cd 100644 --- a/src/gui/dialog/dialog.cpp +++ b/src/gui/dialog/dialog.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/dialog/dialog.h b/src/gui/dialog/dialog.h index 988b85be13..a9b519c61e 100644 --- a/src/gui/dialog/dialog.h +++ b/src/gui/dialog/dialog.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/dialog/dicom.cpp b/src/gui/dialog/dicom.cpp index 7caf42356c..c4a5cfebc3 100644 --- a/src/gui/dialog/dicom.cpp +++ b/src/gui/dialog/dicom.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/dialog/dicom.h b/src/gui/dialog/dicom.h index 9c93909acc..dd466ac298 100644 --- a/src/gui/dialog/dicom.h +++ b/src/gui/dialog/dicom.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/dialog/file.cpp b/src/gui/dialog/file.cpp index 66cf96c25f..4894621c7e 100644 --- a/src/gui/dialog/file.cpp +++ b/src/gui/dialog/file.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/dialog/file.h b/src/gui/dialog/file.h index f15d63eaa5..e1f52c0e29 100644 --- a/src/gui/dialog/file.h +++ b/src/gui/dialog/file.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/dialog/image_properties.cpp b/src/gui/dialog/image_properties.cpp index 78f582254f..e6347158d8 100644 --- a/src/gui/dialog/image_properties.cpp +++ b/src/gui/dialog/image_properties.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/dialog/image_properties.h b/src/gui/dialog/image_properties.h index 39ae28d22a..60ea23e64d 100644 --- a/src/gui/dialog/image_properties.h +++ b/src/gui/dialog/image_properties.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/dialog/list.cpp b/src/gui/dialog/list.cpp index cfd411adb3..9002cc18f9 100644 --- a/src/gui/dialog/list.cpp +++ b/src/gui/dialog/list.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/dialog/list.h b/src/gui/dialog/list.h index 9c4d98434d..65e555a86f 100644 --- a/src/gui/dialog/list.h +++ b/src/gui/dialog/list.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/dialog/opengl.cpp b/src/gui/dialog/opengl.cpp index 6540a8a81c..7b36c0abac 100644 --- a/src/gui/dialog/opengl.cpp +++ b/src/gui/dialog/opengl.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/dialog/opengl.h b/src/gui/dialog/opengl.h index b368f806ee..17221216b6 100644 --- a/src/gui/dialog/opengl.h +++ b/src/gui/dialog/opengl.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/dialog/progress.cpp b/src/gui/dialog/progress.cpp index ba2369e0e1..0f40bfb35b 100644 --- a/src/gui/dialog/progress.cpp +++ b/src/gui/dialog/progress.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/dialog/progress.h b/src/gui/dialog/progress.h index c3ecf30cd7..015d0ce24a 100644 --- a/src/gui/dialog/progress.h +++ b/src/gui/dialog/progress.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/dialog/report_exception.cpp b/src/gui/dialog/report_exception.cpp index 62cc849fbe..05994d29bd 100644 --- a/src/gui/dialog/report_exception.cpp +++ b/src/gui/dialog/report_exception.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/dialog/report_exception.h b/src/gui/dialog/report_exception.h index e2e8e90537..dbe75726ed 100644 --- a/src/gui/dialog/report_exception.h +++ b/src/gui/dialog/report_exception.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/dwi/render_frame.cpp b/src/gui/dwi/render_frame.cpp index 8dee99b094..577f7a7a50 100644 --- a/src/gui/dwi/render_frame.cpp +++ b/src/gui/dwi/render_frame.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/dwi/render_frame.h b/src/gui/dwi/render_frame.h index 8c23a588d8..3d34bbd588 100644 --- a/src/gui/dwi/render_frame.h +++ b/src/gui/dwi/render_frame.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/dwi/renderer.cpp b/src/gui/dwi/renderer.cpp index feac77f8ec..7455ceb08e 100644 --- a/src/gui/dwi/renderer.cpp +++ b/src/gui/dwi/renderer.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/dwi/renderer.h b/src/gui/dwi/renderer.h index 9667638b79..9e7dddeb7a 100644 --- a/src/gui/dwi/renderer.h +++ b/src/gui/dwi/renderer.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/gui.cpp b/src/gui/gui.cpp index 180f839c0e..586267317f 100644 --- a/src/gui/gui.cpp +++ b/src/gui/gui.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/gui.h b/src/gui/gui.h index ce35d78e34..781aa5a3a9 100644 --- a/src/gui/gui.h +++ b/src/gui/gui.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/lighting_dock.cpp b/src/gui/lighting_dock.cpp index 3386c23aa9..db2910bf09 100644 --- a/src/gui/lighting_dock.cpp +++ b/src/gui/lighting_dock.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/lighting_dock.h b/src/gui/lighting_dock.h index 041dd5825e..98c0734bf0 100644 --- a/src/gui/lighting_dock.h +++ b/src/gui/lighting_dock.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/adjust_button.cpp b/src/gui/mrview/adjust_button.cpp index 4aea8b1fba..4c9b24a8e7 100644 --- a/src/gui/mrview/adjust_button.cpp +++ b/src/gui/mrview/adjust_button.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/adjust_button.h b/src/gui/mrview/adjust_button.h index d5c3ce7b88..6418fd41a0 100644 --- a/src/gui/mrview/adjust_button.h +++ b/src/gui/mrview/adjust_button.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/colourbars.cpp b/src/gui/mrview/colourbars.cpp index cbacb77d58..8d99a4a0a2 100644 --- a/src/gui/mrview/colourbars.cpp +++ b/src/gui/mrview/colourbars.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/colourbars.h b/src/gui/mrview/colourbars.h index 42ddf60615..255e970f92 100644 --- a/src/gui/mrview/colourbars.h +++ b/src/gui/mrview/colourbars.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/colourmap_button.cpp b/src/gui/mrview/colourmap_button.cpp index e81c44be86..24f174cc57 100644 --- a/src/gui/mrview/colourmap_button.cpp +++ b/src/gui/mrview/colourmap_button.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/colourmap_button.h b/src/gui/mrview/colourmap_button.h index 748141ef9b..96f0c46f14 100644 --- a/src/gui/mrview/colourmap_button.h +++ b/src/gui/mrview/colourmap_button.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/combo_box_error.cpp b/src/gui/mrview/combo_box_error.cpp index 87fcce7187..32d615c65a 100644 --- a/src/gui/mrview/combo_box_error.cpp +++ b/src/gui/mrview/combo_box_error.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/combo_box_error.h b/src/gui/mrview/combo_box_error.h index 4726f96cf7..f17331cfc7 100644 --- a/src/gui/mrview/combo_box_error.h +++ b/src/gui/mrview/combo_box_error.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/displayable.cpp b/src/gui/mrview/displayable.cpp index 3619a5c592..af240e119b 100644 --- a/src/gui/mrview/displayable.cpp +++ b/src/gui/mrview/displayable.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/displayable.h b/src/gui/mrview/displayable.h index 3f36c661df..e70e3d8474 100644 --- a/src/gui/mrview/displayable.h +++ b/src/gui/mrview/displayable.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/file_open.cpp b/src/gui/mrview/file_open.cpp index 7c75d361f8..69a08b9dda 100644 --- a/src/gui/mrview/file_open.cpp +++ b/src/gui/mrview/file_open.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/file_open.h b/src/gui/mrview/file_open.h index 6cfccc86ed..9efe55926a 100644 --- a/src/gui/mrview/file_open.h +++ b/src/gui/mrview/file_open.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/gui_image.cpp b/src/gui/mrview/gui_image.cpp index 37e58aa77b..7979b95bd9 100644 --- a/src/gui/mrview/gui_image.cpp +++ b/src/gui/mrview/gui_image.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/gui_image.h b/src/gui/mrview/gui_image.h index 972df53f98..905a32b935 100644 --- a/src/gui/mrview/gui_image.h +++ b/src/gui/mrview/gui_image.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/icons.h b/src/gui/mrview/icons.h index 70a1f265b7..c059b18622 100644 --- a/src/gui/mrview/icons.h +++ b/src/gui/mrview/icons.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/mode/base.cpp b/src/gui/mrview/mode/base.cpp index 51973cf766..3fc99c38b4 100644 --- a/src/gui/mrview/mode/base.cpp +++ b/src/gui/mrview/mode/base.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/mode/base.h b/src/gui/mrview/mode/base.h index ceedd470d0..5ab63413c5 100644 --- a/src/gui/mrview/mode/base.h +++ b/src/gui/mrview/mode/base.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/mode/lightbox.cpp b/src/gui/mrview/mode/lightbox.cpp index 056dae5e33..92ef5ff34a 100644 --- a/src/gui/mrview/mode/lightbox.cpp +++ b/src/gui/mrview/mode/lightbox.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this @@ -16,6 +16,8 @@ #include "gui/mrview/mode/lightbox.h" +#include "types.h" + namespace MR { namespace GUI @@ -259,7 +261,7 @@ namespace MR gl::EnableVertexAttribArray (0); gl::VertexAttribPointer (0, 2, gl::FLOAT, gl::FALSE_, 0, (void*)0); - GLfloat data[num_points]; + VLA(data, GLfloat, num_points); // Grid line stride float x_inc = 2.f / n_cols; diff --git a/src/gui/mrview/mode/lightbox.h b/src/gui/mrview/mode/lightbox.h index 3c6cfb75a7..7c34b6a01c 100644 --- a/src/gui/mrview/mode/lightbox.h +++ b/src/gui/mrview/mode/lightbox.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/mode/lightbox_gui.h b/src/gui/mrview/mode/lightbox_gui.h index 5f4cd0d086..5d56e71947 100644 --- a/src/gui/mrview/mode/lightbox_gui.h +++ b/src/gui/mrview/mode/lightbox_gui.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/mode/list.h b/src/gui/mrview/mode/list.h index 1b081a4e58..bb3254408a 100644 --- a/src/gui/mrview/mode/list.h +++ b/src/gui/mrview/mode/list.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/mode/ortho.cpp b/src/gui/mrview/mode/ortho.cpp index b028986f0a..ab12e75bbe 100644 --- a/src/gui/mrview/mode/ortho.cpp +++ b/src/gui/mrview/mode/ortho.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/mode/ortho.h b/src/gui/mrview/mode/ortho.h index f5a687abe4..b2d4a04323 100644 --- a/src/gui/mrview/mode/ortho.h +++ b/src/gui/mrview/mode/ortho.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/mode/slice.cpp b/src/gui/mrview/mode/slice.cpp index 3f25527083..4375b2d666 100644 --- a/src/gui/mrview/mode/slice.cpp +++ b/src/gui/mrview/mode/slice.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/mode/slice.h b/src/gui/mrview/mode/slice.h index c858c8899c..b5e8f8b657 100644 --- a/src/gui/mrview/mode/slice.h +++ b/src/gui/mrview/mode/slice.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/mode/volume.cpp b/src/gui/mrview/mode/volume.cpp index 0473521d62..b6e8eb898e 100644 --- a/src/gui/mrview/mode/volume.cpp +++ b/src/gui/mrview/mode/volume.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/mode/volume.h b/src/gui/mrview/mode/volume.h index 6c584d39f4..bc06a79f3c 100644 --- a/src/gui/mrview/mode/volume.h +++ b/src/gui/mrview/mode/volume.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/spin_box.h b/src/gui/mrview/spin_box.h index 5813f1bd4a..6b9605d3fc 100644 --- a/src/gui/mrview/spin_box.h +++ b/src/gui/mrview/spin_box.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/sync/client.cpp b/src/gui/mrview/sync/client.cpp index 784bff8e4c..365fed92bd 100644 --- a/src/gui/mrview/sync/client.cpp +++ b/src/gui/mrview/sync/client.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/sync/client.h b/src/gui/mrview/sync/client.h index 10ea12cb57..9630cc94af 100644 --- a/src/gui/mrview/sync/client.h +++ b/src/gui/mrview/sync/client.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/sync/enums.h b/src/gui/mrview/sync/enums.h index 7381095f83..6bbdc222df 100644 --- a/src/gui/mrview/sync/enums.h +++ b/src/gui/mrview/sync/enums.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/sync/interprocesscommunicator.cpp b/src/gui/mrview/sync/interprocesscommunicator.cpp index 919cbfee19..68c3440455 100644 --- a/src/gui/mrview/sync/interprocesscommunicator.cpp +++ b/src/gui/mrview/sync/interprocesscommunicator.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/sync/interprocesscommunicator.h b/src/gui/mrview/sync/interprocesscommunicator.h index eb700a7357..8fa38638c1 100644 --- a/src/gui/mrview/sync/interprocesscommunicator.h +++ b/src/gui/mrview/sync/interprocesscommunicator.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/sync/localsocketreader.cpp b/src/gui/mrview/sync/localsocketreader.cpp index d64eb6298e..ab7fbd7a47 100644 --- a/src/gui/mrview/sync/localsocketreader.cpp +++ b/src/gui/mrview/sync/localsocketreader.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this @@ -15,6 +15,7 @@ */ #include "exception.h" +#include "types.h" #include "gui/mrview/sync/localsocketreader.h" namespace MR @@ -74,7 +75,7 @@ namespace MR } //Read delivered data - char read[sizeOfMessage]; + VLA(read, char, sizeOfMessage); socket->read(read, sizeOfMessage); std::shared_ptr readData = std::shared_ptr(new QByteArray()); readData->insert(0, read, sizeOfMessage); diff --git a/src/gui/mrview/sync/localsocketreader.h b/src/gui/mrview/sync/localsocketreader.h index 55f045d452..eaf939d0cb 100644 --- a/src/gui/mrview/sync/localsocketreader.h +++ b/src/gui/mrview/sync/localsocketreader.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/sync/processlock.cpp b/src/gui/mrview/sync/processlock.cpp index 9fbe0787f3..8c8d4d3138 100644 --- a/src/gui/mrview/sync/processlock.cpp +++ b/src/gui/mrview/sync/processlock.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/sync/processlock.h b/src/gui/mrview/sync/processlock.h index f3a5eb8d89..c2938d34fa 100644 --- a/src/gui/mrview/sync/processlock.h +++ b/src/gui/mrview/sync/processlock.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/sync/syncmanager.cpp b/src/gui/mrview/sync/syncmanager.cpp index eecd15ab40..d47924bd51 100644 --- a/src/gui/mrview/sync/syncmanager.cpp +++ b/src/gui/mrview/sync/syncmanager.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/sync/syncmanager.h b/src/gui/mrview/sync/syncmanager.h index 38f3b4ebba..ead80740a1 100644 --- a/src/gui/mrview/sync/syncmanager.h +++ b/src/gui/mrview/sync/syncmanager.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/tool/base.cpp b/src/gui/mrview/tool/base.cpp index 373c5b798a..a16d651586 100644 --- a/src/gui/mrview/tool/base.cpp +++ b/src/gui/mrview/tool/base.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/tool/base.h b/src/gui/mrview/tool/base.h index f3e2523f09..a005b2f715 100644 --- a/src/gui/mrview/tool/base.h +++ b/src/gui/mrview/tool/base.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/tool/connectome/colourmap_observers.cpp b/src/gui/mrview/tool/connectome/colourmap_observers.cpp index fa29ae6278..504b022c1a 100644 --- a/src/gui/mrview/tool/connectome/colourmap_observers.cpp +++ b/src/gui/mrview/tool/connectome/colourmap_observers.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/tool/connectome/colourmap_observers.h b/src/gui/mrview/tool/connectome/colourmap_observers.h index 748a11ddc2..3f70843d57 100644 --- a/src/gui/mrview/tool/connectome/colourmap_observers.h +++ b/src/gui/mrview/tool/connectome/colourmap_observers.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/tool/connectome/connectome.cpp b/src/gui/mrview/tool/connectome/connectome.cpp index 56f04e2ad8..668df0c705 100644 --- a/src/gui/mrview/tool/connectome/connectome.cpp +++ b/src/gui/mrview/tool/connectome/connectome.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/tool/connectome/connectome.h b/src/gui/mrview/tool/connectome/connectome.h index a5d1d5446e..2c3f5cc55f 100644 --- a/src/gui/mrview/tool/connectome/connectome.h +++ b/src/gui/mrview/tool/connectome/connectome.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/tool/connectome/edge.cpp b/src/gui/mrview/tool/connectome/edge.cpp index c0820e9445..b690795f35 100644 --- a/src/gui/mrview/tool/connectome/edge.cpp +++ b/src/gui/mrview/tool/connectome/edge.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/tool/connectome/edge.h b/src/gui/mrview/tool/connectome/edge.h index 390301b98b..145870a022 100644 --- a/src/gui/mrview/tool/connectome/edge.h +++ b/src/gui/mrview/tool/connectome/edge.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/tool/connectome/file_data_vector.cpp b/src/gui/mrview/tool/connectome/file_data_vector.cpp index 933856e8b2..19770e2954 100644 --- a/src/gui/mrview/tool/connectome/file_data_vector.cpp +++ b/src/gui/mrview/tool/connectome/file_data_vector.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/tool/connectome/file_data_vector.h b/src/gui/mrview/tool/connectome/file_data_vector.h index 2fa9f9216f..881e9bfb8c 100644 --- a/src/gui/mrview/tool/connectome/file_data_vector.h +++ b/src/gui/mrview/tool/connectome/file_data_vector.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/tool/connectome/matrix_list.cpp b/src/gui/mrview/tool/connectome/matrix_list.cpp index ce051fcc0e..4d19c1bc92 100644 --- a/src/gui/mrview/tool/connectome/matrix_list.cpp +++ b/src/gui/mrview/tool/connectome/matrix_list.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/tool/connectome/matrix_list.h b/src/gui/mrview/tool/connectome/matrix_list.h index 45c786f443..ecf7cc4e7e 100644 --- a/src/gui/mrview/tool/connectome/matrix_list.h +++ b/src/gui/mrview/tool/connectome/matrix_list.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/tool/connectome/node.cpp b/src/gui/mrview/tool/connectome/node.cpp index 16223b23e6..731e07335a 100644 --- a/src/gui/mrview/tool/connectome/node.cpp +++ b/src/gui/mrview/tool/connectome/node.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/tool/connectome/node.h b/src/gui/mrview/tool/connectome/node.h index 37ba6e7639..a1a3f68335 100644 --- a/src/gui/mrview/tool/connectome/node.h +++ b/src/gui/mrview/tool/connectome/node.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/tool/connectome/node_list.cpp b/src/gui/mrview/tool/connectome/node_list.cpp index 0bd70d9757..f2c6ef3981 100644 --- a/src/gui/mrview/tool/connectome/node_list.cpp +++ b/src/gui/mrview/tool/connectome/node_list.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/tool/connectome/node_list.h b/src/gui/mrview/tool/connectome/node_list.h index ebd9dc1074..cfcbc6d4d8 100644 --- a/src/gui/mrview/tool/connectome/node_list.h +++ b/src/gui/mrview/tool/connectome/node_list.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/tool/connectome/node_overlay.cpp b/src/gui/mrview/tool/connectome/node_overlay.cpp index 6999600096..b4d47aa687 100644 --- a/src/gui/mrview/tool/connectome/node_overlay.cpp +++ b/src/gui/mrview/tool/connectome/node_overlay.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/tool/connectome/node_overlay.h b/src/gui/mrview/tool/connectome/node_overlay.h index 7137c9200a..02eaf992a0 100644 --- a/src/gui/mrview/tool/connectome/node_overlay.h +++ b/src/gui/mrview/tool/connectome/node_overlay.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/tool/connectome/selection.cpp b/src/gui/mrview/tool/connectome/selection.cpp index c78ebc47c8..2d47e39e18 100644 --- a/src/gui/mrview/tool/connectome/selection.cpp +++ b/src/gui/mrview/tool/connectome/selection.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/tool/connectome/selection.h b/src/gui/mrview/tool/connectome/selection.h index 123e5b6523..1035d26ef7 100644 --- a/src/gui/mrview/tool/connectome/selection.h +++ b/src/gui/mrview/tool/connectome/selection.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/tool/connectome/shaders.cpp b/src/gui/mrview/tool/connectome/shaders.cpp index 5f9bd28b6e..2a58c4dc3e 100644 --- a/src/gui/mrview/tool/connectome/shaders.cpp +++ b/src/gui/mrview/tool/connectome/shaders.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/tool/connectome/shaders.h b/src/gui/mrview/tool/connectome/shaders.h index 0a3ab1b8d3..d8e860d207 100644 --- a/src/gui/mrview/tool/connectome/shaders.h +++ b/src/gui/mrview/tool/connectome/shaders.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/tool/connectome/types.h b/src/gui/mrview/tool/connectome/types.h index c330409fc9..bd26f5c33e 100644 --- a/src/gui/mrview/tool/connectome/types.h +++ b/src/gui/mrview/tool/connectome/types.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/tool/fixel/base_fixel.cpp b/src/gui/mrview/tool/fixel/base_fixel.cpp index ef8fb83653..415548f517 100644 --- a/src/gui/mrview/tool/fixel/base_fixel.cpp +++ b/src/gui/mrview/tool/fixel/base_fixel.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/tool/fixel/base_fixel.h b/src/gui/mrview/tool/fixel/base_fixel.h index 4f369ad746..2c2a3e5566 100644 --- a/src/gui/mrview/tool/fixel/base_fixel.h +++ b/src/gui/mrview/tool/fixel/base_fixel.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/tool/fixel/directory.cpp b/src/gui/mrview/tool/fixel/directory.cpp index fb5b1ecdde..71198cbb8f 100644 --- a/src/gui/mrview/tool/fixel/directory.cpp +++ b/src/gui/mrview/tool/fixel/directory.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/tool/fixel/directory.h b/src/gui/mrview/tool/fixel/directory.h index 41763b2ad7..8130f3e98d 100644 --- a/src/gui/mrview/tool/fixel/directory.h +++ b/src/gui/mrview/tool/fixel/directory.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/tool/fixel/fixel.cpp b/src/gui/mrview/tool/fixel/fixel.cpp index a572df8f57..f6692554f5 100644 --- a/src/gui/mrview/tool/fixel/fixel.cpp +++ b/src/gui/mrview/tool/fixel/fixel.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/tool/fixel/fixel.h b/src/gui/mrview/tool/fixel/fixel.h index deaa184ac4..23e3aae618 100644 --- a/src/gui/mrview/tool/fixel/fixel.h +++ b/src/gui/mrview/tool/fixel/fixel.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/tool/fixel/image4D.cpp b/src/gui/mrview/tool/fixel/image4D.cpp index b3d0f315d8..29527367f3 100644 --- a/src/gui/mrview/tool/fixel/image4D.cpp +++ b/src/gui/mrview/tool/fixel/image4D.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/tool/fixel/image4D.h b/src/gui/mrview/tool/fixel/image4D.h index d8f09af094..c0c3360b6e 100644 --- a/src/gui/mrview/tool/fixel/image4D.h +++ b/src/gui/mrview/tool/fixel/image4D.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/tool/fixel/legacy.cpp b/src/gui/mrview/tool/fixel/legacy.cpp index d80c1068e2..aaf22e8286 100644 --- a/src/gui/mrview/tool/fixel/legacy.cpp +++ b/src/gui/mrview/tool/fixel/legacy.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/tool/fixel/legacy.h b/src/gui/mrview/tool/fixel/legacy.h index 30a5dacf1e..d51802314d 100644 --- a/src/gui/mrview/tool/fixel/legacy.h +++ b/src/gui/mrview/tool/fixel/legacy.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/tool/fixel/vector_structs.h b/src/gui/mrview/tool/fixel/vector_structs.h index 18ccd4ec43..5e3f07b78b 100644 --- a/src/gui/mrview/tool/fixel/vector_structs.h +++ b/src/gui/mrview/tool/fixel/vector_structs.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/tool/list.h b/src/gui/mrview/tool/list.h index a726fa0c94..8d3196b557 100644 --- a/src/gui/mrview/tool/list.h +++ b/src/gui/mrview/tool/list.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/tool/list_model_base.h b/src/gui/mrview/tool/list_model_base.h index ac36024e31..d5f698b559 100644 --- a/src/gui/mrview/tool/list_model_base.h +++ b/src/gui/mrview/tool/list_model_base.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/tool/odf/item.cpp b/src/gui/mrview/tool/odf/item.cpp index c1a829e856..70a0abeed8 100644 --- a/src/gui/mrview/tool/odf/item.cpp +++ b/src/gui/mrview/tool/odf/item.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/tool/odf/item.h b/src/gui/mrview/tool/odf/item.h index 44d02e2286..a3776f8320 100644 --- a/src/gui/mrview/tool/odf/item.h +++ b/src/gui/mrview/tool/odf/item.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/tool/odf/model.cpp b/src/gui/mrview/tool/odf/model.cpp index 04dc757e15..ec52032b6b 100644 --- a/src/gui/mrview/tool/odf/model.cpp +++ b/src/gui/mrview/tool/odf/model.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/tool/odf/model.h b/src/gui/mrview/tool/odf/model.h index 8267e52398..406d945f8e 100644 --- a/src/gui/mrview/tool/odf/model.h +++ b/src/gui/mrview/tool/odf/model.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/tool/odf/odf.cpp b/src/gui/mrview/tool/odf/odf.cpp index 1f1658a158..5383073e28 100644 --- a/src/gui/mrview/tool/odf/odf.cpp +++ b/src/gui/mrview/tool/odf/odf.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/tool/odf/odf.h b/src/gui/mrview/tool/odf/odf.h index 8915113ef3..a2650c1661 100644 --- a/src/gui/mrview/tool/odf/odf.h +++ b/src/gui/mrview/tool/odf/odf.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/tool/odf/preview.cpp b/src/gui/mrview/tool/odf/preview.cpp index 5d0af54bae..d9137c5f91 100644 --- a/src/gui/mrview/tool/odf/preview.cpp +++ b/src/gui/mrview/tool/odf/preview.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/tool/odf/preview.h b/src/gui/mrview/tool/odf/preview.h index 2cd51bdef2..eca4b1145b 100644 --- a/src/gui/mrview/tool/odf/preview.h +++ b/src/gui/mrview/tool/odf/preview.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/tool/odf/type.h b/src/gui/mrview/tool/odf/type.h index bd04bee605..3f96ca90a5 100644 --- a/src/gui/mrview/tool/odf/type.h +++ b/src/gui/mrview/tool/odf/type.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/tool/overlay.cpp b/src/gui/mrview/tool/overlay.cpp index 07b998a771..17769d05c4 100644 --- a/src/gui/mrview/tool/overlay.cpp +++ b/src/gui/mrview/tool/overlay.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/tool/overlay.h b/src/gui/mrview/tool/overlay.h index f75dcf94ab..b23c52226b 100644 --- a/src/gui/mrview/tool/overlay.h +++ b/src/gui/mrview/tool/overlay.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/tool/roi_editor/item.cpp b/src/gui/mrview/tool/roi_editor/item.cpp index e38c0ab64a..778e03d80f 100644 --- a/src/gui/mrview/tool/roi_editor/item.cpp +++ b/src/gui/mrview/tool/roi_editor/item.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/tool/roi_editor/item.h b/src/gui/mrview/tool/roi_editor/item.h index 184a6434fd..7dbc720249 100644 --- a/src/gui/mrview/tool/roi_editor/item.h +++ b/src/gui/mrview/tool/roi_editor/item.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/tool/roi_editor/model.cpp b/src/gui/mrview/tool/roi_editor/model.cpp index a4f23dce29..b329f64f96 100644 --- a/src/gui/mrview/tool/roi_editor/model.cpp +++ b/src/gui/mrview/tool/roi_editor/model.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/tool/roi_editor/model.h b/src/gui/mrview/tool/roi_editor/model.h index d354a22d9f..367d310626 100644 --- a/src/gui/mrview/tool/roi_editor/model.h +++ b/src/gui/mrview/tool/roi_editor/model.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/tool/roi_editor/roi.cpp b/src/gui/mrview/tool/roi_editor/roi.cpp index 1777c33da0..c427a010f4 100644 --- a/src/gui/mrview/tool/roi_editor/roi.cpp +++ b/src/gui/mrview/tool/roi_editor/roi.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/tool/roi_editor/roi.h b/src/gui/mrview/tool/roi_editor/roi.h index b3a51bea6b..fdb288d4b1 100644 --- a/src/gui/mrview/tool/roi_editor/roi.h +++ b/src/gui/mrview/tool/roi_editor/roi.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/tool/roi_editor/undoentry.cpp b/src/gui/mrview/tool/roi_editor/undoentry.cpp index 112772fa11..f78a5aa40a 100644 --- a/src/gui/mrview/tool/roi_editor/undoentry.cpp +++ b/src/gui/mrview/tool/roi_editor/undoentry.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/tool/roi_editor/undoentry.h b/src/gui/mrview/tool/roi_editor/undoentry.h index f52991d856..acde681766 100644 --- a/src/gui/mrview/tool/roi_editor/undoentry.h +++ b/src/gui/mrview/tool/roi_editor/undoentry.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/tool/screen_capture.cpp b/src/gui/mrview/tool/screen_capture.cpp index 81a24e6ba0..2bde1ac707 100644 --- a/src/gui/mrview/tool/screen_capture.cpp +++ b/src/gui/mrview/tool/screen_capture.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/tool/screen_capture.h b/src/gui/mrview/tool/screen_capture.h index 538d737294..1eba0e9a1d 100644 --- a/src/gui/mrview/tool/screen_capture.h +++ b/src/gui/mrview/tool/screen_capture.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/tool/tractography/track_scalar_file.cpp b/src/gui/mrview/tool/tractography/track_scalar_file.cpp index 397814905b..3cf6b4d6c2 100644 --- a/src/gui/mrview/tool/tractography/track_scalar_file.cpp +++ b/src/gui/mrview/tool/tractography/track_scalar_file.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/tool/tractography/track_scalar_file.h b/src/gui/mrview/tool/tractography/track_scalar_file.h index f05afd4711..baf7a431f9 100644 --- a/src/gui/mrview/tool/tractography/track_scalar_file.h +++ b/src/gui/mrview/tool/tractography/track_scalar_file.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/tool/tractography/tractogram.cpp b/src/gui/mrview/tool/tractography/tractogram.cpp index 2f84cb1bad..a8f6905364 100644 --- a/src/gui/mrview/tool/tractography/tractogram.cpp +++ b/src/gui/mrview/tool/tractography/tractogram.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/tool/tractography/tractogram.h b/src/gui/mrview/tool/tractography/tractogram.h index 7f16de2490..b6ecd9e002 100644 --- a/src/gui/mrview/tool/tractography/tractogram.h +++ b/src/gui/mrview/tool/tractography/tractogram.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/tool/tractography/tractogram_enums.h b/src/gui/mrview/tool/tractography/tractogram_enums.h index 86df0b5d8a..4481144017 100644 --- a/src/gui/mrview/tool/tractography/tractogram_enums.h +++ b/src/gui/mrview/tool/tractography/tractogram_enums.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/tool/tractography/tractography.cpp b/src/gui/mrview/tool/tractography/tractography.cpp index 796120b1a8..3f5d063321 100644 --- a/src/gui/mrview/tool/tractography/tractography.cpp +++ b/src/gui/mrview/tool/tractography/tractography.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/tool/tractography/tractography.h b/src/gui/mrview/tool/tractography/tractography.h index 44cc9d9ed5..e46eafa1e7 100644 --- a/src/gui/mrview/tool/tractography/tractography.h +++ b/src/gui/mrview/tool/tractography/tractography.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/tool/transform.cpp b/src/gui/mrview/tool/transform.cpp index d4b1f650b8..aad877e429 100644 --- a/src/gui/mrview/tool/transform.cpp +++ b/src/gui/mrview/tool/transform.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/tool/transform.h b/src/gui/mrview/tool/transform.h index c58a20ebea..e182ac8286 100644 --- a/src/gui/mrview/tool/transform.h +++ b/src/gui/mrview/tool/transform.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/tool/view.cpp b/src/gui/mrview/tool/view.cpp index 2b1e659839..9bb8451f67 100644 --- a/src/gui/mrview/tool/view.cpp +++ b/src/gui/mrview/tool/view.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/tool/view.h b/src/gui/mrview/tool/view.h index 6daf853812..c521e919a4 100644 --- a/src/gui/mrview/tool/view.h +++ b/src/gui/mrview/tool/view.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/volume.cpp b/src/gui/mrview/volume.cpp index 5325846eba..b188370301 100644 --- a/src/gui/mrview/volume.cpp +++ b/src/gui/mrview/volume.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/volume.h b/src/gui/mrview/volume.h index 5f9b875d09..31a9ef0ee1 100644 --- a/src/gui/mrview/volume.h +++ b/src/gui/mrview/volume.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/window.cpp b/src/gui/mrview/window.cpp index dbc60d22e7..b0a16f1067 100644 --- a/src/gui/mrview/window.cpp +++ b/src/gui/mrview/window.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/window.h b/src/gui/mrview/window.h index 8b52f1588d..2e4299ba6d 100644 --- a/src/gui/mrview/window.h +++ b/src/gui/mrview/window.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/opengl/font.cpp b/src/gui/opengl/font.cpp index 4ece8c3757..2a704935d8 100644 --- a/src/gui/opengl/font.cpp +++ b/src/gui/opengl/font.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/opengl/font.h b/src/gui/opengl/font.h index fd01e7156c..4ba25c5c04 100644 --- a/src/gui/opengl/font.h +++ b/src/gui/opengl/font.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/opengl/gl.cpp b/src/gui/opengl/gl.cpp index d7f7dc212e..59cd6df1e2 100644 --- a/src/gui/opengl/gl.cpp +++ b/src/gui/opengl/gl.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/opengl/gl.h b/src/gui/opengl/gl.h index a1f36b3bb2..c5866b2a73 100644 --- a/src/gui/opengl/gl.h +++ b/src/gui/opengl/gl.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/opengl/gl_core_3_3.cpp b/src/gui/opengl/gl_core_3_3.cpp index f022dbb7f7..03a36d8e13 100644 --- a/src/gui/opengl/gl_core_3_3.cpp +++ b/src/gui/opengl/gl_core_3_3.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/opengl/gl_core_3_3.h b/src/gui/opengl/gl_core_3_3.h index b9a168ac0a..25750172d8 100644 --- a/src/gui/opengl/gl_core_3_3.h +++ b/src/gui/opengl/gl_core_3_3.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/opengl/lighting.cpp b/src/gui/opengl/lighting.cpp index 6b91f47ad1..af05d1b729 100644 --- a/src/gui/opengl/lighting.cpp +++ b/src/gui/opengl/lighting.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/opengl/lighting.h b/src/gui/opengl/lighting.h index c55197988f..2764ba7bf4 100644 --- a/src/gui/opengl/lighting.h +++ b/src/gui/opengl/lighting.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/opengl/shader.cpp b/src/gui/opengl/shader.cpp index 90cf039c30..fbf3378883 100644 --- a/src/gui/opengl/shader.cpp +++ b/src/gui/opengl/shader.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/opengl/shader.h b/src/gui/opengl/shader.h index f066ec1ab4..37a9d7f9ae 100644 --- a/src/gui/opengl/shader.h +++ b/src/gui/opengl/shader.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/opengl/transformation.h b/src/gui/opengl/transformation.h index f9f754b771..db17d2b0e5 100644 --- a/src/gui/opengl/transformation.h +++ b/src/gui/opengl/transformation.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/projection.cpp b/src/gui/projection.cpp index 1711fc8486..7bec0e2118 100644 --- a/src/gui/projection.cpp +++ b/src/gui/projection.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/projection.h b/src/gui/projection.h index b822cbd23f..a0c37cf374 100644 --- a/src/gui/projection.h +++ b/src/gui/projection.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/shapes/cube.cpp b/src/gui/shapes/cube.cpp index 84d64c8841..38e8f1338d 100644 --- a/src/gui/shapes/cube.cpp +++ b/src/gui/shapes/cube.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/shapes/cube.h b/src/gui/shapes/cube.h index 6b68e75060..ad1138d444 100644 --- a/src/gui/shapes/cube.h +++ b/src/gui/shapes/cube.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/shapes/cylinder.cpp b/src/gui/shapes/cylinder.cpp index 47644c9412..3b00256427 100644 --- a/src/gui/shapes/cylinder.cpp +++ b/src/gui/shapes/cylinder.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/shapes/cylinder.h b/src/gui/shapes/cylinder.h index 9dd18aa5bf..d40fe667cc 100644 --- a/src/gui/shapes/cylinder.h +++ b/src/gui/shapes/cylinder.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/shapes/halfsphere.cpp b/src/gui/shapes/halfsphere.cpp index 4bf723023c..bfa5b2a9a7 100644 --- a/src/gui/shapes/halfsphere.cpp +++ b/src/gui/shapes/halfsphere.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/shapes/halfsphere.h b/src/gui/shapes/halfsphere.h index d2aaf1a366..e7c4b1f716 100644 --- a/src/gui/shapes/halfsphere.h +++ b/src/gui/shapes/halfsphere.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/shapes/sphere.cpp b/src/gui/shapes/sphere.cpp index 61031ec34b..56f18efb33 100644 --- a/src/gui/shapes/sphere.cpp +++ b/src/gui/shapes/sphere.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/shapes/sphere.h b/src/gui/shapes/sphere.h index 5bbfcffbdd..2d00387d2e 100644 --- a/src/gui/shapes/sphere.h +++ b/src/gui/shapes/sphere.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/shview/file_open.cpp b/src/gui/shview/file_open.cpp index 320a19c866..415881883c 100644 --- a/src/gui/shview/file_open.cpp +++ b/src/gui/shview/file_open.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/shview/file_open.h b/src/gui/shview/file_open.h index 6cfccc86ed..9efe55926a 100644 --- a/src/gui/shview/file_open.h +++ b/src/gui/shview/file_open.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/shview/icons.h b/src/gui/shview/icons.h index 9ea55502cf..fd3485bddb 100644 --- a/src/gui/shview/icons.h +++ b/src/gui/shview/icons.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/shview/render_window.cpp b/src/gui/shview/render_window.cpp index 9fdc03a510..a0ccf5eed9 100644 --- a/src/gui/shview/render_window.cpp +++ b/src/gui/shview/render_window.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/shview/render_window.h b/src/gui/shview/render_window.h index 9ca7082c85..f126302e2a 100644 --- a/src/gui/shview/render_window.h +++ b/src/gui/shview/render_window.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/min_mem_array.h b/src/min_mem_array.h index 4cddaebba0..9b131edfc0 100644 --- a/src/min_mem_array.h +++ b/src/min_mem_array.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/registration/linear.cpp b/src/registration/linear.cpp index f48875607a..635653d1f2 100644 --- a/src/registration/linear.cpp +++ b/src/registration/linear.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/registration/linear.h b/src/registration/linear.h index 51601c89d6..77776f550f 100644 --- a/src/registration/linear.h +++ b/src/registration/linear.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/registration/metric/cc_helper.h b/src/registration/metric/cc_helper.h index 0736e2e96e..7e45998b65 100644 --- a/src/registration/metric/cc_helper.h +++ b/src/registration/metric/cc_helper.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/registration/metric/cross_correlation.h b/src/registration/metric/cross_correlation.h index 43973d2ee0..67b5f47f8a 100644 --- a/src/registration/metric/cross_correlation.h +++ b/src/registration/metric/cross_correlation.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/registration/metric/demons.h b/src/registration/metric/demons.h index 9846c5fe02..3f1cf075bd 100644 --- a/src/registration/metric/demons.h +++ b/src/registration/metric/demons.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/registration/metric/demons4D.h b/src/registration/metric/demons4D.h index f7150cb9f6..b793d98a8b 100644 --- a/src/registration/metric/demons4D.h +++ b/src/registration/metric/demons4D.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/registration/metric/demons_cc.h b/src/registration/metric/demons_cc.h index 7fbdf9cfac..d7ab3e4b7e 100644 --- a/src/registration/metric/demons_cc.h +++ b/src/registration/metric/demons_cc.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/registration/metric/difference_robust.h b/src/registration/metric/difference_robust.h index 6a7d55cd7a..99aaeed4f4 100644 --- a/src/registration/metric/difference_robust.h +++ b/src/registration/metric/difference_robust.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/registration/metric/evaluate.h b/src/registration/metric/evaluate.h index d90cc80b52..5374715da1 100644 --- a/src/registration/metric/evaluate.h +++ b/src/registration/metric/evaluate.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/registration/metric/linear_base.h b/src/registration/metric/linear_base.h index 5523a48abc..ef44528f04 100644 --- a/src/registration/metric/linear_base.h +++ b/src/registration/metric/linear_base.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/registration/metric/local_cross_correlation.h b/src/registration/metric/local_cross_correlation.h index 53275b883e..d82d006713 100644 --- a/src/registration/metric/local_cross_correlation.h +++ b/src/registration/metric/local_cross_correlation.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/registration/metric/mean_squared.h b/src/registration/metric/mean_squared.h index da4792c61f..d30123d607 100644 --- a/src/registration/metric/mean_squared.h +++ b/src/registration/metric/mean_squared.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/registration/metric/params.h b/src/registration/metric/params.h index 9dde98c5f0..49f538867e 100644 --- a/src/registration/metric/params.h +++ b/src/registration/metric/params.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/registration/metric/robust_estimators.h b/src/registration/metric/robust_estimators.h index b29a510a63..9dea9fc5a5 100644 --- a/src/registration/metric/robust_estimators.h +++ b/src/registration/metric/robust_estimators.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/registration/metric/thread_kernel.h b/src/registration/metric/thread_kernel.h index 64fa5e85fd..c8db531b12 100644 --- a/src/registration/metric/thread_kernel.h +++ b/src/registration/metric/thread_kernel.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/registration/multi_contrast.cpp b/src/registration/multi_contrast.cpp index a692ae6a22..a60425c011 100644 --- a/src/registration/multi_contrast.cpp +++ b/src/registration/multi_contrast.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/registration/multi_contrast.h b/src/registration/multi_contrast.h index 35d720988c..0790d5dc98 100644 --- a/src/registration/multi_contrast.h +++ b/src/registration/multi_contrast.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/registration/multi_resolution_lmax.h b/src/registration/multi_resolution_lmax.h index 3dcdfdad92..a0c0c2de07 100644 --- a/src/registration/multi_resolution_lmax.h +++ b/src/registration/multi_resolution_lmax.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/registration/nonlinear.cpp b/src/registration/nonlinear.cpp index a7e4df205c..99426e174f 100644 --- a/src/registration/nonlinear.cpp +++ b/src/registration/nonlinear.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/registration/nonlinear.h b/src/registration/nonlinear.h index 9d76c6f5ea..a45debada7 100644 --- a/src/registration/nonlinear.h +++ b/src/registration/nonlinear.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/registration/shared.h b/src/registration/shared.h index 549592e57e..2478189c1a 100644 --- a/src/registration/shared.h +++ b/src/registration/shared.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/registration/transform/affine.cpp b/src/registration/transform/affine.cpp index 29af8e2ead..9073184ac3 100644 --- a/src/registration/transform/affine.cpp +++ b/src/registration/transform/affine.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/registration/transform/affine.h b/src/registration/transform/affine.h index 19d920093d..82b07cd1dc 100644 --- a/src/registration/transform/affine.h +++ b/src/registration/transform/affine.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/registration/transform/base.h b/src/registration/transform/base.h index eca5f088f9..b2ca52bd42 100644 --- a/src/registration/transform/base.h +++ b/src/registration/transform/base.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/registration/transform/convergence_check.cpp b/src/registration/transform/convergence_check.cpp index 862f27d315..06bfa02398 100644 --- a/src/registration/transform/convergence_check.cpp +++ b/src/registration/transform/convergence_check.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/registration/transform/convergence_check.h b/src/registration/transform/convergence_check.h index cd9188b21e..45cb54fad8 100644 --- a/src/registration/transform/convergence_check.h +++ b/src/registration/transform/convergence_check.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/registration/transform/initialiser.cpp b/src/registration/transform/initialiser.cpp index ce6f6d911d..521b1a4604 100644 --- a/src/registration/transform/initialiser.cpp +++ b/src/registration/transform/initialiser.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/registration/transform/initialiser.h b/src/registration/transform/initialiser.h index 6d5ed3a9d9..6fd7ad38aa 100644 --- a/src/registration/transform/initialiser.h +++ b/src/registration/transform/initialiser.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/registration/transform/initialiser_helpers.cpp b/src/registration/transform/initialiser_helpers.cpp index 82029c6165..99db6e5cae 100644 --- a/src/registration/transform/initialiser_helpers.cpp +++ b/src/registration/transform/initialiser_helpers.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/registration/transform/initialiser_helpers.h b/src/registration/transform/initialiser_helpers.h index 256648a5cd..166fd15372 100644 --- a/src/registration/transform/initialiser_helpers.h +++ b/src/registration/transform/initialiser_helpers.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/registration/transform/reorient.h b/src/registration/transform/reorient.h index 13cc04aa3c..925cf8a547 100644 --- a/src/registration/transform/reorient.h +++ b/src/registration/transform/reorient.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/registration/transform/rigid.cpp b/src/registration/transform/rigid.cpp index 1a5fee14df..e798834f0c 100644 --- a/src/registration/transform/rigid.cpp +++ b/src/registration/transform/rigid.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/registration/transform/rigid.h b/src/registration/transform/rigid.h index 513fbd070c..924be55388 100644 --- a/src/registration/transform/rigid.h +++ b/src/registration/transform/rigid.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/registration/transform/robust.cpp b/src/registration/transform/robust.cpp index 41aa7333c1..1749bf2413 100644 --- a/src/registration/transform/robust.cpp +++ b/src/registration/transform/robust.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/registration/transform/search.h b/src/registration/transform/search.h index ae645f41df..7abbe5b04d 100644 --- a/src/registration/transform/search.h +++ b/src/registration/transform/search.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/registration/warp/compose.h b/src/registration/warp/compose.h index c057c42ea5..b0d130d2d7 100644 --- a/src/registration/warp/compose.h +++ b/src/registration/warp/compose.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/registration/warp/convert.h b/src/registration/warp/convert.h index a9d6c9418c..a8989cc468 100644 --- a/src/registration/warp/convert.h +++ b/src/registration/warp/convert.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/registration/warp/helpers.h b/src/registration/warp/helpers.h index 656ed1a020..150cfa1e77 100644 --- a/src/registration/warp/helpers.h +++ b/src/registration/warp/helpers.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/registration/warp/invert.h b/src/registration/warp/invert.h index e94e88711c..4b25c50e9f 100644 --- a/src/registration/warp/invert.h +++ b/src/registration/warp/invert.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/stats/cfe.cpp b/src/stats/cfe.cpp index cdb739b856..f088f2830b 100644 --- a/src/stats/cfe.cpp +++ b/src/stats/cfe.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/stats/cfe.h b/src/stats/cfe.h index d8580fb2d5..fe5eb884d0 100644 --- a/src/stats/cfe.h +++ b/src/stats/cfe.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/stats/cluster.cpp b/src/stats/cluster.cpp index 65c43a995d..a081f2af28 100644 --- a/src/stats/cluster.cpp +++ b/src/stats/cluster.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/stats/cluster.h b/src/stats/cluster.h index 87e24ebcdd..70222c7dcc 100644 --- a/src/stats/cluster.h +++ b/src/stats/cluster.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/stats/enhance.h b/src/stats/enhance.h index 98511ef059..b510670bd1 100644 --- a/src/stats/enhance.h +++ b/src/stats/enhance.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/stats/permstack.cpp b/src/stats/permstack.cpp index e480a1778b..03d12dc1ec 100644 --- a/src/stats/permstack.cpp +++ b/src/stats/permstack.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/stats/permstack.h b/src/stats/permstack.h index b37e48f626..848973f5ca 100644 --- a/src/stats/permstack.h +++ b/src/stats/permstack.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/stats/permtest.cpp b/src/stats/permtest.cpp index b6eac6c6a3..c0ec64ebb1 100644 --- a/src/stats/permtest.cpp +++ b/src/stats/permtest.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/stats/permtest.h b/src/stats/permtest.h index 821fd7c53c..798ed7391d 100644 --- a/src/stats/permtest.h +++ b/src/stats/permtest.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/stats/tfce.cpp b/src/stats/tfce.cpp index 6a9908c312..3a11dac40d 100644 --- a/src/stats/tfce.cpp +++ b/src/stats/tfce.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/stats/tfce.h b/src/stats/tfce.h index cc07e2e79c..861bfff0ed 100644 --- a/src/stats/tfce.h +++ b/src/stats/tfce.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/surface/algo/image2mesh.h b/src/surface/algo/image2mesh.h index f9ef180cd0..96604fcd78 100644 --- a/src/surface/algo/image2mesh.h +++ b/src/surface/algo/image2mesh.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/surface/algo/mesh2image.cpp b/src/surface/algo/mesh2image.cpp index 0bac991c81..49fb1bae2b 100644 --- a/src/surface/algo/mesh2image.cpp +++ b/src/surface/algo/mesh2image.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/surface/algo/mesh2image.h b/src/surface/algo/mesh2image.h index eb6bfe62f6..5161bc916b 100644 --- a/src/surface/algo/mesh2image.h +++ b/src/surface/algo/mesh2image.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/surface/filter/base.cpp b/src/surface/filter/base.cpp index e4325673b2..e386dc0017 100644 --- a/src/surface/filter/base.cpp +++ b/src/surface/filter/base.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/surface/filter/base.h b/src/surface/filter/base.h index 6c60db8f2f..a7608d7331 100644 --- a/src/surface/filter/base.h +++ b/src/surface/filter/base.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/surface/filter/smooth.cpp b/src/surface/filter/smooth.cpp index dce4f74141..2f90d71859 100644 --- a/src/surface/filter/smooth.cpp +++ b/src/surface/filter/smooth.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/surface/filter/smooth.h b/src/surface/filter/smooth.h index 68ca8df957..8724650136 100644 --- a/src/surface/filter/smooth.h +++ b/src/surface/filter/smooth.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/surface/filter/vertex_transform.cpp b/src/surface/filter/vertex_transform.cpp index dc682ac724..1cc6b7f985 100644 --- a/src/surface/filter/vertex_transform.cpp +++ b/src/surface/filter/vertex_transform.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/surface/filter/vertex_transform.h b/src/surface/filter/vertex_transform.h index 76540f286c..f8f08e1903 100644 --- a/src/surface/filter/vertex_transform.h +++ b/src/surface/filter/vertex_transform.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/surface/freesurfer.cpp b/src/surface/freesurfer.cpp index aeacda5bc4..be4f92f4ae 100644 --- a/src/surface/freesurfer.cpp +++ b/src/surface/freesurfer.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/surface/freesurfer.h b/src/surface/freesurfer.h index 605b550457..d47c8325b0 100644 --- a/src/surface/freesurfer.h +++ b/src/surface/freesurfer.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/surface/mesh.cpp b/src/surface/mesh.cpp index 7c33ce3cc1..601d158578 100644 --- a/src/surface/mesh.cpp +++ b/src/surface/mesh.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/surface/mesh.h b/src/surface/mesh.h index 1e9dd02235..29008090d2 100644 --- a/src/surface/mesh.h +++ b/src/surface/mesh.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/surface/mesh_multi.cpp b/src/surface/mesh_multi.cpp index 7a09476322..598cf1656c 100644 --- a/src/surface/mesh_multi.cpp +++ b/src/surface/mesh_multi.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/surface/mesh_multi.h b/src/surface/mesh_multi.h index cab87acf4c..7ecb7ae56f 100644 --- a/src/surface/mesh_multi.h +++ b/src/surface/mesh_multi.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/surface/polygon.cpp b/src/surface/polygon.cpp index 641f6407a7..fcfc71a48e 100644 --- a/src/surface/polygon.cpp +++ b/src/surface/polygon.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/surface/polygon.h b/src/surface/polygon.h index 791269a188..6b00150c9a 100644 --- a/src/surface/polygon.h +++ b/src/surface/polygon.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/surface/scalar.cpp b/src/surface/scalar.cpp index e7a1ec28a4..d2df5189b9 100644 --- a/src/surface/scalar.cpp +++ b/src/surface/scalar.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/surface/scalar.h b/src/surface/scalar.h index cf79d746b0..e28f9718da 100644 --- a/src/surface/scalar.h +++ b/src/surface/scalar.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/surface/types.h b/src/surface/types.h index 7e2bf80e24..3faadd0372 100644 --- a/src/surface/types.h +++ b/src/surface/types.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/surface/utils.h b/src/surface/utils.h index c76bc163a8..14ca550be4 100644 --- a/src/surface/utils.h +++ b/src/surface/utils.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/wrap_r.h b/src/wrap_r.h index d49f0c2c51..a59a6cca45 100644 --- a/src/wrap_r.h +++ b/src/wrap_r.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/testing/cmd/testing_diff_dir.cpp b/testing/cmd/testing_diff_dir.cpp index deafbd46cb..56d5938cc2 100644 --- a/testing/cmd/testing_diff_dir.cpp +++ b/testing/cmd/testing_diff_dir.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/testing/cmd/testing_diff_fixel.cpp b/testing/cmd/testing_diff_fixel.cpp index 9747f797a4..558d79b968 100644 --- a/testing/cmd/testing_diff_fixel.cpp +++ b/testing/cmd/testing_diff_fixel.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/testing/cmd/testing_diff_fixel_old.cpp b/testing/cmd/testing_diff_fixel_old.cpp index ee683a356a..a047cbf364 100644 --- a/testing/cmd/testing_diff_fixel_old.cpp +++ b/testing/cmd/testing_diff_fixel_old.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/testing/cmd/testing_diff_header.cpp b/testing/cmd/testing_diff_header.cpp index f015af695d..70dfd784a9 100644 --- a/testing/cmd/testing_diff_header.cpp +++ b/testing/cmd/testing_diff_header.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/testing/cmd/testing_diff_image.cpp b/testing/cmd/testing_diff_image.cpp index 8f6e0d4cd4..6dc0f84a41 100644 --- a/testing/cmd/testing_diff_image.cpp +++ b/testing/cmd/testing_diff_image.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/testing/cmd/testing_diff_matrix.cpp b/testing/cmd/testing_diff_matrix.cpp index aef6d28203..a888a334af 100644 --- a/testing/cmd/testing_diff_matrix.cpp +++ b/testing/cmd/testing_diff_matrix.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/testing/cmd/testing_diff_mesh.cpp b/testing/cmd/testing_diff_mesh.cpp index 557930b1ca..49d757a28d 100644 --- a/testing/cmd/testing_diff_mesh.cpp +++ b/testing/cmd/testing_diff_mesh.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/testing/cmd/testing_diff_peaks.cpp b/testing/cmd/testing_diff_peaks.cpp index beb8e23922..1e1c69519a 100644 --- a/testing/cmd/testing_diff_peaks.cpp +++ b/testing/cmd/testing_diff_peaks.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/testing/cmd/testing_diff_tck.cpp b/testing/cmd/testing_diff_tck.cpp index dda1d49dfa..9a85beb690 100644 --- a/testing/cmd/testing_diff_tck.cpp +++ b/testing/cmd/testing_diff_tck.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/testing/cmd/testing_diff_tsf.cpp b/testing/cmd/testing_diff_tsf.cpp index 52a82feef5..4bbd19c643 100644 --- a/testing/cmd/testing_diff_tsf.cpp +++ b/testing/cmd/testing_diff_tsf.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/testing/cmd/testing_gen_data.cpp b/testing/cmd/testing_gen_data.cpp index 3b9cdee523..1db88d11ea 100644 --- a/testing/cmd/testing_gen_data.cpp +++ b/testing/cmd/testing_gen_data.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/testing/cmd/testing_unit_tests_bitset.cpp b/testing/cmd/testing_unit_tests_bitset.cpp index 704adff7d5..0fb0be9d47 100644 --- a/testing/cmd/testing_unit_tests_bitset.cpp +++ b/testing/cmd/testing_unit_tests_bitset.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/testing/cmd/testing_unit_tests_erfinv.cpp b/testing/cmd/testing_unit_tests_erfinv.cpp index 92a31c9c31..5b9cdf1cd7 100644 --- a/testing/cmd/testing_unit_tests_erfinv.cpp +++ b/testing/cmd/testing_unit_tests_erfinv.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/testing/cmd/testing_unit_tests_icls.cpp b/testing/cmd/testing_unit_tests_icls.cpp index 1d8b9f311e..6ea900e525 100644 --- a/testing/cmd/testing_unit_tests_icls.cpp +++ b/testing/cmd/testing_unit_tests_icls.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/testing/cmd/testing_unit_tests_ordered_include.cpp b/testing/cmd/testing_unit_tests_ordered_include.cpp index 5456b4fb0e..1a39b4f4a3 100644 --- a/testing/cmd/testing_unit_tests_ordered_include.cpp +++ b/testing/cmd/testing_unit_tests_ordered_include.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/testing/cmd/testing_unit_tests_ordered_queue.cpp b/testing/cmd/testing_unit_tests_ordered_queue.cpp index 561eeb73bf..6f03a0916e 100644 --- a/testing/cmd/testing_unit_tests_ordered_queue.cpp +++ b/testing/cmd/testing_unit_tests_ordered_queue.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/testing/cmd/testing_unit_tests_parse_ints.cpp b/testing/cmd/testing_unit_tests_parse_ints.cpp index 2051889f16..00cb2f7318 100644 --- a/testing/cmd/testing_unit_tests_parse_ints.cpp +++ b/testing/cmd/testing_unit_tests_parse_ints.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/testing/cmd/testing_unit_tests_sh_precomputer.cpp b/testing/cmd/testing_unit_tests_sh_precomputer.cpp index daadc344de..fd5ef95833 100644 --- a/testing/cmd/testing_unit_tests_sh_precomputer.cpp +++ b/testing/cmd/testing_unit_tests_sh_precomputer.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/testing/cmd/testing_unit_tests_shuffle.cpp b/testing/cmd/testing_unit_tests_shuffle.cpp index cd5c620808..d4f6751098 100644 --- a/testing/cmd/testing_unit_tests_shuffle.cpp +++ b/testing/cmd/testing_unit_tests_shuffle.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/testing/cmd/testing_unit_tests_to.cpp b/testing/cmd/testing_unit_tests_to.cpp index eee0b7d45f..d75a43bafe 100644 --- a/testing/cmd/testing_unit_tests_to.cpp +++ b/testing/cmd/testing_unit_tests_to.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/testing/pylint.rc b/testing/pylint.rc index e076678b98..3a2ecd6d68 100644 --- a/testing/pylint.rc +++ b/testing/pylint.rc @@ -173,14 +173,14 @@ missing-member-max-choices=1 [BASIC] -# Naming hint for argument names -argument-name-hint=(([a-z][a-z0-9_]{2,30})|(_[a-z0-9_]*))$ +# Naming style for argument names +argument-naming-style=snake_case # Regular expression matching correct argument names argument-rgx=(([a-z][a-z0-9_]{2,30})|(_[a-z0-9_]*))$ -# Naming hint for attribute names -attr-name-hint=(([a-z][a-z0-9_]{2,30})|(_[a-z0-9_]*))$ +# Naming style for attribute names +attr-naming-style=snake_case # Regular expression matching correct attribute names attr-rgx=(([a-z][a-z0-9_]{2,30})|(_[a-z0-9_]*))$ @@ -188,20 +188,20 @@ attr-rgx=(([a-z][a-z0-9_]{2,30})|(_[a-z0-9_]*))$ # Bad variable names which should always be refused, separated by a comma bad-names=foo,bar,baz,toto,tutu,tata -# Naming hint for class attribute names -class-attribute-name-hint=([A-Za-z_][A-Za-z0-9_]{2,30}|(__.*__))$ +# Naming style for class attribute names +class-attribute-naming-style=any # Regular expression matching correct class attribute names class-attribute-rgx=([A-Za-z_][A-Za-z0-9_]{2,30}|(__.*__))$ -# Naming hint for class names -class-name-hint=[A-Z_][a-zA-Z0-9]+$ +# Naming style for class names +class-naming-style=PascalCase # Regular expression matching correct class names class-rgx=[A-Z_][a-zA-Z0-9]+$ -# Naming hint for constant names -const-name-hint=(([A-Z_][A-Z0-9_]*)|(__.*__))$ +# Naming style for constant names +const-naming-style=UPPER_CASE # Regular expression matching correct constant names const-rgx=(([A-Z_][A-Z0-9_]*)|(__.*__))$ @@ -210,8 +210,8 @@ const-rgx=(([A-Z_][A-Z0-9_]*)|(__.*__))$ # ones are exempt. docstring-min-length=-1 -# Naming hint for function names -function-name-hint=(([a-z][a-z0-9_]{2,30})|(_[a-z0-9_]*))$ +# Naming style for function names +function-naming-style=snake_case # Regular expression matching correct function names function-rgx=(([a-z][a-z0-9_]{2,30})|(_[a-z0-9_]*))$ @@ -222,20 +222,20 @@ good-names=i,j,k,ex,Run,_ # Include a hint for the correct naming format with invalid-name include-naming-hint=no -# Naming hint for inline iteration names -inlinevar-name-hint=[A-Za-z_][A-Za-z0-9_]*$ +# Naming style for inline iteration names +inlinevar-naming-style=any # Regular expression matching correct inline iteration names inlinevar-rgx=[A-Za-z_][A-Za-z0-9_]*$ -# Naming hint for method names -method-name-hint=(([a-z][a-z0-9_]{2,30})|(_[a-z0-9_]*))$ +# Naming style for method names +method-naming-style=snake_case # Regular expression matching correct method names method-rgx=(([a-z][a-z0-9_]{2,30})|(_[a-z0-9_]*))$ -# Naming hint for module names -module-name-hint=(([a-z_][a-z0-9_]*)|([A-Z][a-zA-Z0-9]+))$ +# Naming style for module names +module-naming-style=snake_case # Regular expression matching correct module names # Note: Required modification in order to accept "5ttgen" @@ -254,8 +254,8 @@ no-docstring-rgx=^_ # to this list to register other decorators that produce valid properties. property-classes=abc.abstractproperty -# Naming hint for variable names -variable-name-hint=(([a-z][a-z0-9_]{2,30})|(_[a-z0-9_]*))$ +# Naming style for variable names +variable-naming-style=snake_case # Regular expression matching correct variable names variable-rgx=(([a-z][a-z0-9_]{2,30})|(_[a-z0-9_]*))$ @@ -323,7 +323,8 @@ max-module-lines=1000 # separator` is used to allow tabulation in dicts, etc.: {1 : 1,\n222: 2}. # `trailing-comma` allows a space between comma and closing bracket: (a, ). # `empty-line` allows space-only lines. -no-space-check=trailing-comma,dict-separator +# Deprecated in Pylint 2.6 +#no-space-check=trailing-comma,dict-separator # Allow the body of a class to be on the same line as the declaration if body # contains single statement. @@ -420,4 +421,4 @@ known-third-party=enchant # Exceptions that will emit a warning when being caught. Defaults to # "Exception" -overgeneral-exceptions=Exception +overgeneral-exceptions=builtins.Exception diff --git a/testing/src/diff_images.h b/testing/src/diff_images.h index e894cdd7fb..e60f5da1dc 100644 --- a/testing/src/diff_images.h +++ b/testing/src/diff_images.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/testing/src/unit_tests/tractography/roi_unit_tests.h b/testing/src/unit_tests/tractography/roi_unit_tests.h index 628c91939a..1deaa2702a 100644 --- a/testing/src/unit_tests/tractography/roi_unit_tests.h +++ b/testing/src/unit_tests/tractography/roi_unit_tests.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/testing/src/unit_tests/unit_test.h b/testing/src/unit_tests/unit_test.h index 0ca06f9187..0e7640b1bd 100644 --- a/testing/src/unit_tests/unit_test.h +++ b/testing/src/unit_tests/unit_test.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2024 the MRtrix3 contributors. +/* Copyright (c) 2008-2025 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/update_copyright b/update_copyright index a3d9da9b45..d777df0a73 100755 --- a/update_copyright +++ b/update_copyright @@ -1,6 +1,6 @@ #!/usr/bin/env python -# Copyright (c) 2008-2024 the MRtrix3 contributors. +# Copyright (c) 2008-2025 the MRtrix3 contributors. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/update_dev_doc b/update_dev_doc index 50761f831d..ce68e6e6d4 100755 --- a/update_dev_doc +++ b/update_dev_doc @@ -1,6 +1,6 @@ #!/bin/bash -# Copyright (c) 2008-2024 the MRtrix3 contributors. +# Copyright (c) 2008-2025 the MRtrix3 contributors. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this