diff --git a/CHANGELOG.md b/CHANGELOG.md
index cff4236ff0e9237bf4cddc1df2107bd34b09d9ba..8e6824ef6a1c6487825e75b104c85be2934f3321 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -30,6 +30,6 @@ _Initial commit_: single rotor in hover/axial flows
 [sem_ver]:<https://semver.org/spec/v2.0.0.html>
 [keep_chglog]: <https://keepachangelog.com/en/1.0.0/>
 
-[Unreleased]: https://gitlab.uliege.be/thlamb/rotare/compare/0.0.1...main
-[0.0.1]: https://gitlab.uliege.be/thlamb/rotare/-/releases/0.0.1
-[0.0.0]: https://gitlab.uliege.be/thlamb/rotare/-/releases/0.0.0
+[Unreleased]: https://gitlab.uliege.be/rotare/rotare/compare/0.0.1...main
+[0.0.1]: https://gitlab.uliege.be/rotare/rotare/-/releases/0.0.1
+[0.0.0]: https://gitlab.uliege.be/rotare/rotare/-/releases/0.0.0
diff --git a/LICENSE b/LICENSE
index d0bc773292716db4086fd6da1712f324f631ce0d..e43786975db5481c974e3d3c31878813b9adc3c4 100644
--- a/LICENSE
+++ b/LICENSE
@@ -1,6 +1,6 @@
 MIT License
 
-Copyright (c) 2022 University of Liege
+Copyright (c) 2022-2023 University of Liege
 
 Permission is hereby granted, free of charge, to any person obtaining a copy of
 this software and associated documentation files (the “Software”), to deal in
diff --git a/README.md b/README.md
index 94067db983a6490d2babca712e7bf48ecb8428fc..2018422dd5d56c65cc4cd30d2f93b7940f204d5c 100644
--- a/README.md
+++ b/README.md
@@ -75,7 +75,7 @@ may not provide valid results in all situations.
 To download the latest working version of Rotare, simply run
 
 ```bash
-git clone --recursive https://gitlab.uliege.be/thlamb/rotare
+git clone --recursive https://gitlab.uliege.be/rotare/rotare
 ```
 
 Keep it updated using `git pull --recurse-submodules`.
@@ -145,7 +145,6 @@ software.
 The Rotare Software is provided under the [MIT license](LICENSE).
 
 [uliege-am]: https://www.am.uliege.be/
-[rotare-doc]: https://gitlab.uliege.be/thlamb/rotare-doc/
-[rotare-issues]: https://gitlab.uliege.be/thlamb/rotare/issues
-[rotare-releases]: https://gitlab.uliege.be/thlamb/rotare/-/releases
-[aiaa-scitech]: https://www.aiaa.org/SciTech
+[rotare-doc]: https://gitlab.uliege.be/rotare/documentation/
+[rotare-issues]: https://gitlab.uliege.be/rotare/rotare/issues
+[rotare-releases]: https://gitlab.uliege.be/rotare/rotare/-/releases
diff --git a/src/classes/@Blade/Blade.m b/src/classes/@Blade/Blade.m
index 5c4648e2e08525e14d859d2adcaa5576fe253624..19c54624b332570b371bbeaebe6240bcd1a89e14 100644
--- a/src/classes/@Blade/Blade.m
+++ b/src/classes/@Blade/Blade.m
@@ -47,16 +47,16 @@ classdef Blade < handle
     %
     % See also: Rotor, rotare, template, af_tools.Airfoil.
     %
-    % <a href="https://gitlab.uliege.be/thlamb/rotare-doc">Complete documentation (online)</a>
+    % <a href="https:/gitlab.uliege.be/rotare/documentation">Complete documentation (online)</a>
 
     % ----------------------------------------------------------------------------------------------
-    % (c) Copyright 2022 University of Liege
+    % (c) Copyright 2022-2023 University of Liege
     % Author: Thomas Lambert <t.lambert@uliege.be>
     % ULiege - Aeroelasticity and Experimental Aerodynamics
     % MIT License
-    % Repo: https://gitlab.uliege.be/thlamb/rotare
-    % Docs: https://gitlab.uliege.be/thlamb/rotare-doc
-    % Issues: https://gitlab.uliege.be/thlamb/rotare/-/issues
+    % Repo: https://gitlab.uliege.be/rotare/rotare
+    % Docs: https://gitlab.uliege.be/rotare/documentation
+    % Issues: https://gitlab.uliege.be/rotare/rotare/-/issues
     %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
 
     % Base properties of the elements
diff --git a/src/classes/@ElemPerf/ElemPerf.m b/src/classes/@ElemPerf/ElemPerf.m
index adaad69bf225b93cee8091b9f4e1b1cc0340d6cc..3a3bfd1a966efd4dc00d825acabf84f8ff237402 100644
--- a/src/classes/@ElemPerf/ElemPerf.m
+++ b/src/classes/@ElemPerf/ElemPerf.m
@@ -34,7 +34,7 @@ classdef ElemPerf < handle
     %
     % See also: rotare, template, bemt, Rotor, Elem, Op, Flow.
     %
-    % <a href="https://gitlab.uliege.be/thlamb/rotare-doc">Complete documentation (online)</a>
+    % <a href="https:/gitlab.uliege.be/rotare/documentation">Complete documentation (online)</a>
 
     % ----------------------------------------------------------------------------------------------
     % Implementation:
@@ -43,13 +43,13 @@ classdef ElemPerf < handle
     %   - similar logic is used for indVelAx and indVelTg which automatically set their repsective
     %     velocity ratios.
     % ----------------------------------------------------------------------------------------------
-    % (c) Copyright 2022 University of Liege
+    % (c) Copyright 2022-2023 University of Liege
     % Author: Thomas Lambert <t.lambert@uliege.be>
     % ULiege - Aeroelasticity and Experimental Aerodynamics
     % MIT License
-    % Repo: https://gitlab.uliege.be/thlamb/rotare
-    % Docs: https://gitlab.uliege.be/thlamb/rotare-doc
-    % Issues: https://gitlab.uliege.be/thlamb/rotare/-/issues
+    % Repo: https://gitlab.uliege.be/rotare/rotare
+    % Docs: https://gitlab.uliege.be/rotare/documentation
+    % Issues: https://gitlab.uliege.be/rotare/rotare/-/issues
     %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
 
     properties (SetAccess = private)
diff --git a/src/classes/@ElemPerf/calcforces.m b/src/classes/@ElemPerf/calcforces.m
index 0cd12150c6420affb4063c4632233fe6e557fad3..62300eabd9ec94ba1c29598b5c6826a5c31bb86b 100644
--- a/src/classes/@ElemPerf/calcforces.m
+++ b/src/classes/@ElemPerf/calcforces.m
@@ -24,16 +24,16 @@ function calcforces(self)
     %
     % See also: ElemPerf.
     %
-    % <a href="https://gitlab.uliege.be/thlamb/rotare-doc">Complete documentation (online)</a>
+    % <a href="https:/gitlab.uliege.be/rotare/documentation">Complete documentation (online)</a>
 
     % ----------------------------------------------------------------------------------------------
-    % (c) Copyright 2022 University of Liege
+    % (c) Copyright 2022-2023 University of Liege
     % Author: Thomas Lambert <t.lambert@uliege.be>
     % ULiege - Aeroelasticity and Experimental Aerodynamics
     % MIT License
-    % Repo: https://gitlab.uliege.be/thlamb/rotare
-    % Docs: https://gitlab.uliege.be/thlamb/rotare-doc
-    % Issues: https://gitlab.uliege.be/thlamb/rotare/-/issues
+    % Repo: https://gitlab.uliege.be/rotare/rotare
+    % Docs: https://gitlab.uliege.be/rotare/documentation
+    % Issues: https://gitlab.uliege.be/rotare/rotare/-/issues
     %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
 
     if ~isempty(self.cl)
diff --git a/src/classes/@ElemPerf/getclcd.m b/src/classes/@ElemPerf/getclcd.m
index eddded759fa136149b57a6b5b7701d521ba7e661..b29c65c4db129885ab5a02ebfc270e364425ea13 100644
--- a/src/classes/@ElemPerf/getclcd.m
+++ b/src/classes/@ElemPerf/getclcd.m
@@ -28,16 +28,16 @@ function [cl, cd] = getclcd(self, aoaVect, reyVect, i)
     %
     % See also: ElemPerf.
     %
-    % <a href="https://gitlab.uliege.be/thlamb/rotare-doc">Complete documentation (online)</a>
+    % <a href="https:/gitlab.uliege.be/rotare/documentation">Complete documentation (online)</a>
 
     % ----------------------------------------------------------------------------------------------
-    % (c) Copyright 2022 University of Liege
+    % (c) Copyright 2022-2023 University of Liege
     % Author: Thomas Lambert <t.lambert@uliege.be>
     % ULiege - Aeroelasticity and Experimental Aerodynamics
     % MIT License
-    % Repo: https://gitlab.uliege.be/thlamb/rotare
-    % Docs: https://gitlab.uliege.be/thlamb/rotare-doc
-    % Issues: https://gitlab.uliege.be/thlamb/rotare/-/issues
+    % Repo: https://gitlab.uliege.be/rotare/rotare
+    % Docs: https://gitlab.uliege.be/rotare/documentation
+    % Issues: https://gitlab.uliege.be/rotare/rotare/-/issues
     %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
 
     % Abbreviations
diff --git a/src/classes/@ElemPerf/plot.m b/src/classes/@ElemPerf/plot.m
index 3d0fd7bf65ec39e9bd7495fcb4a238d419aaa6f8..cd2e216f901a5d86f5bddbbc4151241948933519 100644
--- a/src/classes/@ElemPerf/plot.m
+++ b/src/classes/@ElemPerf/plot.m
@@ -30,16 +30,16 @@ function plot(self, type)
     %
     % See also: ElemPerf.
     %
-    % <a href="https://gitlab.uliege.be/thlamb/rotare-doc">Complete documentation (online)</a>
+    % <a href="https:/gitlab.uliege.be/rotare/documentation">Complete documentation (online)</a>
 
     % ----------------------------------------------------------------------------------------------
-    % (c) Copyright 2022 University of Liege
+    % (c) Copyright 2022-2023 University of Liege
     % Author: Thomas Lambert <t.lambert@uliege.be>
     % ULiege - Aeroelasticity and Experimental Aerodynamics
     % MIT License
-    % Repo: https://gitlab.uliege.be/thlamb/rotare
-    % Docs: https://gitlab.uliege.be/thlamb/rotare-doc
-    % Issues: https://gitlab.uliege.be/thlamb/rotare/-/issues
+    % Repo: https://gitlab.uliege.be/rotare/rotare
+    % Docs: https://gitlab.uliege.be/rotare/documentation
+    % Issues: https://gitlab.uliege.be/rotare/rotare/-/issues
     %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
 
     % Defaults and constants
diff --git a/src/classes/@Flow/Flow.m b/src/classes/@Flow/Flow.m
index d8e4fe214c92bc67c0dd61bb3df9b7aa354ea294..9c7301e04247435d8be6c56e7f597ca0e059be20 100644
--- a/src/classes/@Flow/Flow.m
+++ b/src/classes/@Flow/Flow.m
@@ -39,18 +39,18 @@ classdef Flow < handle
     %
     % See also: rotare, template, Blade, af_tools.Airfoil.
     %
-    % <a href="https://gitlab.uliege.be/thlamb/rotare-doc">Complete documentation (online)</a>
+    % <a href="https:/gitlab.uliege.be/rotare/documentation">Complete documentation (online)</a>
 
     % ----------------------------------------------------------------------------------------------
     % TODO: Add flow angle and determine flow components for oblique flows
     % ----------------------------------------------------------------------------------------------
-    % (c) Copyright 2022 University of Liege
+    % (c) Copyright 2022-2023 University of Liege
     % Author: Thomas Lambert <t.lambert@uliege.be>
     % ULiege - Aeroelasticity and Experimental Aerodynamics
     % MIT License
-    % Repo: https://gitlab.uliege.be/thlamb/rotare
-    % Docs: https://gitlab.uliege.be/thlamb/rotare-doc
-    % Issues: https://gitlab.uliege.be/thlamb/rotare/-/issues
+    % Repo: https://gitlab.uliege.be/rotare/rotare
+    % Docs: https://gitlab.uliege.be/rotare/documentation
+    % Issues: https://gitlab.uliege.be/rotare/rotare/-/issues
     %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
 
     properties (Constant, Hidden)
diff --git a/src/classes/@Flow/reynolds.m b/src/classes/@Flow/reynolds.m
index cefca1b2ef334ce628cc9231783f3a7d334c1d77..fc13b0a778f837f2da311e8eecc251aa2eada6b0 100644
--- a/src/classes/@Flow/reynolds.m
+++ b/src/classes/@Flow/reynolds.m
@@ -32,16 +32,16 @@ function re = reynolds(v, l, visc, dens)
     %
     % See also: rotare, Flow, Flow.calcreynolds.
     %
-    % <a href="https://gitlab.uliege.be/thlamb/rotare-doc">Complete documentation (online)</a>
+    % <a href="https:/gitlab.uliege.be/rotare/documentation">Complete documentation (online)</a>
 
     % ----------------------------------------------------------------------------------------------
-    % (c) Copyright 2022 University of Liege
+    % (c) Copyright 2022-2023 University of Liege
     % Author: Thomas Lambert <t.lambert@uliege.be>
     % ULiege - Aeroelasticity and Experimental Aerodynamics
     % MIT License
-    % Repo: https://gitlab.uliege.be/thlamb/rotare
-    % Docs: https://gitlab.uliege.be/thlamb/rotare-doc
-    % Issues: https://gitlab.uliege.be/thlamb/rotare/-/issues
+    % Repo: https://gitlab.uliege.be/rotare/rotare
+    % Docs: https://gitlab.uliege.be/rotare/documentation
+    % Issues: https://gitlab.uliege.be/rotare/rotare/-/issues
     %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
 
     % Input validation
diff --git a/src/classes/@Flow/sutherland.m b/src/classes/@Flow/sutherland.m
index 1d5b3c2606a0c0e6bedc25dfc3aaeec7abd83d0c..4995c8e75a78a977fba3d6a4955811e5b391bb0a 100644
--- a/src/classes/@Flow/sutherland.m
+++ b/src/classes/@Flow/sutherland.m
@@ -22,16 +22,16 @@ function dynVisc = sutherland(temp)
     %
     % See also: rotare, Flow.
     %
-    % <a href="https://gitlab.uliege.be/thlamb/rotare-doc">Complete documentation (online)</a>
+    % <a href="https:/gitlab.uliege.be/rotare/documentation">Complete documentation (online)</a>
 
     % ----------------------------------------------------------------------------------------------
-    % (c) Copyright 2022 University of Liege
+    % (c) Copyright 2022-2023 University of Liege
     % Author: Thomas Lambert <t.lambert@uliege.be>
     % ULiege - Aeroelasticity and Experimental Aerodynamics
     % MIT License
-    % Repo: https://gitlab.uliege.be/thlamb/rotare
-    % Docs: https://gitlab.uliege.be/thlamb/rotare-doc
-    % Issues: https://gitlab.uliege.be/thlamb/rotare/-/issues
+    % Repo: https://gitlab.uliege.be/rotare/rotare
+    % Docs: https://gitlab.uliege.be/rotare/documentation
+    % Issues: https://gitlab.uliege.be/rotare/rotare/-/issues
     %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
 
     % Constants and defaults
diff --git a/src/classes/@NoseCone/NoseCone.m b/src/classes/@NoseCone/NoseCone.m
index 6f7ee0b9e6b34a42f12fb444945defb7a6eeacc9..7384f47ebc1c6381d526e25a9196157226cc7b19 100644
--- a/src/classes/@NoseCone/NoseCone.m
+++ b/src/classes/@NoseCone/NoseCone.m
@@ -46,16 +46,16 @@ classdef NoseCone < handle
     %   rad  : Base radius, [m]
     %   len  : Cone length, [m]
     %
-    % <a href="https://gitlab.uliege.be/thlamb/rotare-doc">Complete documentation (online)</a>
+    % <a href="https:/gitlab.uliege.be/rotare/documentation">Complete documentation (online)</a>
 
     % ----------------------------------------------------------------------------------------------
-    % (c) Copyright 2022 University of Liege
+    % (c) Copyright 2022-2023 University of Liege
     % Author: Thomas Lambert <t.lambert@uliege.be>
     % ULiege - Aeroelasticity and Experimental Aerodynamics
     % MIT License
-    % Repo: https://gitlab.uliege.be/thlamb/rotare
-    % Docs: https://gitlab.uliege.be/thlamb/rotare-doc
-    % Issues: https://gitlab.uliege.be/thlamb/rotare/-/issues
+    % Repo: https://gitlab.uliege.be/rotare/rotare
+    % Docs: https://gitlab.uliege.be/rotare/documentation
+    % Issues: https://gitlab.uliege.be/rotare/rotare/-/issues
     %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
 
     % Constants to use as defaults
diff --git a/src/classes/@NoseCone/plot.m b/src/classes/@NoseCone/plot.m
index 9101bcfbd08ea032f522c1935a0bf284433cb0b6..74958f54435c80a6dd865666ca8695c0ac0babc4 100644
--- a/src/classes/@NoseCone/plot.m
+++ b/src/classes/@NoseCone/plot.m
@@ -19,16 +19,16 @@ function plot(self, color)
     %
     % See also: NoseCone.
     %
-    % <a href="https://gitlab.uliege.be/thlamb/rotare-doc">Complete documentation (online)</a>
+    % <a href="https:/gitlab.uliege.be/rotare/documentation">Complete documentation (online)</a>
 
     % ----------------------------------------------------------------------------------------------
-    % (c) Copyright 2022 University of Liege
+    % (c) Copyright 2022-2023 University of Liege
     % Author: Thomas Lambert <t.lambert@uliege.be>
     % ULiege - Aeroelasticity and Experimental Aerodynamics
     % MIT License
-    % Repo: https://gitlab.uliege.be/thlamb/rotare
-    % Docs: https://gitlab.uliege.be/thlamb/rotare-doc
-    % Issues: https://gitlab.uliege.be/thlamb/rotare/-/issues
+    % Repo: https://gitlab.uliege.be/rotare/rotare
+    % Docs: https://gitlab.uliege.be/rotare/documentation
+    % Issues: https://gitlab.uliege.be/rotare/rotare/-/issues
     %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
 
     % Defaults and constants
diff --git a/src/classes/@Oper/Oper.m b/src/classes/@Oper/Oper.m
index 6370bd6a0eb962c78796de06e65ee67e0e0d0215..bef555ee9df3da10d4e4b78d681c74cb7a836716 100644
--- a/src/classes/@Oper/Oper.m
+++ b/src/classes/@Oper/Oper.m
@@ -36,18 +36,18 @@ classdef Oper < handle
     %
     % See also: rotare, template, Flow, OperRotor.
     %
-    % <a href="https://gitlab.uliege.be/thlamb/rotare-doc">Complete documentation (online)</a>
+    % <a href="https://gitlab.uliege.be/rotare/documentation">Complete documentation (online)</a>
 
     % ----------------------------------------------------------------------------------------------
     % TODO: Add flow angle in Oper conditions for oblique flows.
     % ----------------------------------------------------------------------------------------------
-    % (c) Copyright 2022 University of Liege
+    % (c) Copyright 2022-2023 University of Liege
     % Author: Thomas Lambert <t.lambert@uliege.be>
     % ULiege - Aeroelasticity and Experimental Aerodynamics
     % MIT License
-    % Repo: https://gitlab.uliege.be/thlamb/rotare
-    % Docs: https://gitlab.uliege.be/thlamb/rotare-doc
-    % Issues: https://gitlab.uliege.be/thlamb/rotare/-/issues
+    % Repo: https://gitlab.uliege.be/rotare/rotare
+    % Docs: https://gitlab.uliege.be/rotare/documentation
+    % Issues: https://gitlab.uliege.be/rotare/rotare/-/issues
     %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
 
     properties (GetAccess = public, SetAccess = protected)
diff --git a/src/classes/@Oper/advanceratio.m b/src/classes/@Oper/advanceratio.m
index 5df8bf75428053d57797b46a99d7fb99485b8a7f..6127d1271a47d5a35542dbdf7322d84fbab6c8c7 100644
--- a/src/classes/@Oper/advanceratio.m
+++ b/src/classes/@Oper/advanceratio.m
@@ -18,16 +18,16 @@ function advRatio = advanceratio(self, diam, app)
     %
     % See also: rotare, template, Rotor.
     %
-    % <a href="https://gitlab.uliege.be/thlamb/rotare-doc">Complete documentation (online)</a>
+    % <a href="https:/gitlab.uliege.be/rotare/documentation">Complete documentation (online)</a>
 
     % ----------------------------------------------------------------------------------------------
-    % (c) Copyright 2022 University of Liege
+    % (c) Copyright 2022-2023 University of Liege
     % Author: Thomas Lambert <t.lambert@uliege.be>
     % ULiege - Aeroelasticity and Experimental Aerodynamics
     % MIT License
-    % Repo: https://gitlab.uliege.be/thlamb/rotare
-    % Docs: https://gitlab.uliege.be/thlamb/rotare-doc
-    % Issues: https://gitlab.uliege.be/thlamb/rotare/-/issues
+    % Repo: https://gitlab.uliege.be/rotare/rotare
+    % Docs: https://gitlab.uliege.be/rotare/documentation
+    % Issues: https://gitlab.uliege.be/rotare/rotare/-/issues
     %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
 
     switch app
diff --git a/src/classes/@OperRotor/OperRotor.m b/src/classes/@OperRotor/OperRotor.m
index d8b0a0e57c8747f1e9db4e6241f29d2203b80f40..ba2e1c078bc021ef24741d7f9ba3dbee83723b0d 100644
--- a/src/classes/@OperRotor/OperRotor.m
+++ b/src/classes/@OperRotor/OperRotor.m
@@ -30,16 +30,16 @@ classdef OperRotor < handle
     %
     % See also: rotare, Rotor, Oper.
     %
-    % <a href="https://gitlab.uliege.be/thlamb/rotare-doc">Complete documentation (online)</a>
+    % <a href="https://gitlab.uliege.be/rotare/documentation">Complete documentation (online)</a>
 
     % ----------------------------------------------------------------------------------------------
-    % (c) Copyright 2022 University of Liege
+    % (c) Copyright 2022-2023 University of Liege
     % Author: Thomas Lambert <t.lambert@uliege.be>
     % ULiege - Aeroelasticity and Experimental Aerodynamics
     % MIT License
-    % Repo: https://gitlab.uliege.be/thlamb/rotare
-    % Docs: https://gitlab.uliege.be/thlamb/rotare-doc
-    % Issues: https://gitlab.uliege.be/thlamb/rotare/-/issues
+    % Repo: https://gitlab.uliege.be/rotare/rotare
+    % Docs: https://gitlab.uliege.be/rotare/documentation
+    % Issues: https://gitlab.uliege.be/rotare/rotare/-/issues
     %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
 
     properties (SetAccess = private)
diff --git a/src/classes/@OperRotor/calccoeff.m b/src/classes/@OperRotor/calccoeff.m
index 76295d3d944aca1c47d21467276f315b039290e4..83ad51a8f7a9d312305cf705bbd62a5cc3aa7697 100644
--- a/src/classes/@OperRotor/calccoeff.m
+++ b/src/classes/@OperRotor/calccoeff.m
@@ -20,16 +20,16 @@ function coeff = calccoeff(self, type)
     %
     % See also: OperRot.
     %
-    % <a href="https://gitlab.uliege.be/thlamb/rotare-doc">Complete documentation (online)</a>
+    % <a href="https://gitlab.uliege.be/rotare/documentation">Complete documentation (online)</a>
 
     % ----------------------------------------------------------------------------------------------
-    % (c) Copyright 2022 University of Liege
+    % (c) Copyright 2022-2023 University of Liege
     % Author: Thomas Lambert <t.lambert@uliege.be>
     % ULiege - Aeroelasticity and Experimental Aerodynamics
     % MIT License
-    % Repo: https://gitlab.uliege.be/thlamb/rotare
-    % Docs: https://gitlab.uliege.be/thlamb/rotare-doc
-    % Issues: https://gitlab.uliege.be/thlamb/rotare/-/issues
+    % Repo: https://gitlab.uliege.be/rotare/rotare
+    % Docs: https://gitlab.uliege.be/rotare/documentation
+    % Issues: https://gitlab.uliege.be/rotare/rotare/-/issues
     %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
 
     % Abbreviations
diff --git a/src/classes/@OperRotor/calcperf.m b/src/classes/@OperRotor/calcperf.m
index 9daa9f143a622193b5f51bf98dbaf62cc09df29d..60f6e35fd83f926d7d73157baaf335d6c55e9094 100644
--- a/src/classes/@OperRotor/calcperf.m
+++ b/src/classes/@OperRotor/calcperf.m
@@ -20,16 +20,16 @@ function calcperf(self)
     %
     % See also: OperRot, ElemPerf.
     %
-    % <a href="https://gitlab.uliege.be/thlamb/rotare-doc">Complete documentation (online)</a>
+    % <a href="https://gitlab.uliege.be/rotare/documentation">Complete documentation (online)</a>
 
     % ----------------------------------------------------------------------------------------------
-    % (c) Copyright 2022 University of Liege
+    % (c) Copyright 2022-2023 University of Liege
     % Author: Thomas Lambert <t.lambert@uliege.be>
     % ULiege - Aeroelasticity and Experimental Aerodynamics
     % MIT License
-    % Repo: https://gitlab.uliege.be/thlamb/rotare
-    % Docs: https://gitlab.uliege.be/thlamb/rotare-doc
-    % Issues: https://gitlab.uliege.be/thlamb/rotare/-/issues
+    % Repo: https://gitlab.uliege.be/rotare/rotare
+    % Docs: https://gitlab.uliege.be/rotare/documentation
+    % Issues: https://gitlab.uliege.be/rotare/rotare/-/issues
     %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
 
     % Defaults and constants
diff --git a/src/classes/@Rotor/Rotor.m b/src/classes/@Rotor/Rotor.m
index 1f3f6416b78d706207d5e7a3572fe7a7ee14ebec..8478e1bcbc6b3e5c9f1770b83d91d04275ac4494 100644
--- a/src/classes/@Rotor/Rotor.m
+++ b/src/classes/@Rotor/Rotor.m
@@ -48,18 +48,18 @@ classdef Rotor < handle
     %
     % See also: rotare, template, Blade, af_tools.Airfoil.
     %
-    % <a href="https://gitlab.uliege.be/thlamb/rotare-doc">Complete documentation (online)</a>
+    % <a href="https://gitlab.uliege.be/rotare/documentation">Complete documentation (online)</a>
 
     % ----------------------------------------------------------------------------------------------
     % TODO: Verify solidity calculation.
     % ----------------------------------------------------------------------------------------------
-    % (c) Copyright 2022 University of Liege
+    % (c) Copyright 2022-2023 University of Liege
     % Author: Thomas Lambert <t.lambert@uliege.be>
     % ULiege - Aeroelasticity and Experimental Aerodynamics
     % MIT License
-    % Repo: https://gitlab.uliege.be/thlamb/rotare
-    % Docs: https://gitlab.uliege.be/thlamb/rotare-doc
-    % Issues: https://gitlab.uliege.be/thlamb/rotare/-/issues
+    % Repo: https://gitlab.uliege.be/rotare/rotare
+    % Docs: https://gitlab.uliege.be/rotare/documentation
+    % Issues: https://gitlab.uliege.be/rotare/rotare/-/issues
     %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
 
     % Generic properties
diff --git a/src/classes/@Rotor/plot.m b/src/classes/@Rotor/plot.m
index 77e6c7a29126a339f44be385ce365160a779fa4a..1da1bd8d9af2aebb2e775da69187e0024b247e82 100644
--- a/src/classes/@Rotor/plot.m
+++ b/src/classes/@Rotor/plot.m
@@ -43,16 +43,16 @@ function plot(self, varargin)
     %
     % See also: rotor, rotare, template.
     %
-    % <a href="https://gitlab.uliege.be/thlamb/rotare-doc">Complete documentation (online)</a>
+    % <a href="https://gitlab.uliege.be/rotare/documentation">Complete documentation (online)</a>
 
     % ----------------------------------------------------------------------------------------------
-    % (c) Copyright 2022 University of Liege
+    % (c) Copyright 2022-2023 University of Liege
     % Author: Thomas Lambert <t.lambert@uliege.be>
     % ULiege - Aeroelasticity and Experimental Aerodynamics
     % MIT License
-    % Repo: https://gitlab.uliege.be/thlamb/rotare
-    % Docs: https://gitlab.uliege.be/thlamb/rotare-doc
-    % Issues: https://gitlab.uliege.be/thlamb/rotare/-/issues
+    % Repo: https://gitlab.uliege.be/rotare/rotare
+    % Docs: https://gitlab.uliege.be/rotare/documentation
+    % Issues: https://gitlab.uliege.be/rotare/rotare/-/issues
     %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
 
     narginchk(1, 4);
diff --git a/src/configs/caradonna1981.m b/src/configs/caradonna1981.m
index 7d8ab36cdbfe8f3c7650156d3d3bb10506fcddb9..0b6e2c63b1c7e70ef6bfe1efb6c11091e3f487ca 100644
--- a/src/configs/caradonna1981.m
+++ b/src/configs/caradonna1981.m
@@ -4,19 +4,19 @@
 %
 % See also: template, rotare, validconfig.
 %
-% <a href="https://gitlab.uliege.be/thlamb/rotare-doc">Complete documentation (online)</a>
+% <a href="https://gitlab.uliege.be/rotare/documentation">Complete documentation (online)</a>
 
 % --------------------------------------------------------------------------------------------------
 % Ref: Caradonna and Tung, "Experimental and Analytical Studies of a Model Helicopter Rotor in
 %      Hover". 1981. NASA. (TM-81232)
 % --------------------------------------------------------------------------------------------------
-% (c) Copyright 2022 University of Liege
+% (c) Copyright 2022-2023 University of Liege
 % Author: Thomas Lambert <t.lambert@uliege.be>
 % ULiege - Aeroelasticity and Experimental Aerodynamics
 % MIT License
-% Repo: https://gitlab.uliege.be/thlamb/rotare
-% Docs: https://gitlab.uliege.be/thlamb/rotare-doc
-% Issues: https://gitlab.uliege.be/thlamb/rotare/-/issues
+% Repo: https://gitlab.uliege.be/rotare/rotare
+% Docs: https://gitlab.uliege.be/rotare/documentation
+% Issues: https://gitlab.uliege.be/rotare/rotare/-/issues
 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
 
 % ==================================================================================================
diff --git a/src/configs/knight1937.m b/src/configs/knight1937.m
index 978c19bbf8710a1d72ec5553fd49e73cc381fcbc..10127085b8d7573de272ee6bcea65622b6605346 100644
--- a/src/configs/knight1937.m
+++ b/src/configs/knight1937.m
@@ -4,18 +4,18 @@
 %
 % See also: template, rotare, validconfig.
 %
-% <a href="https://gitlab.uliege.be/thlamb/rotare-doc">Complete documentation (online)</a>
+% <a href="https://gitlab.uliege.be/rotare/documentation">Complete documentation (online)</a>
 
 % --------------------------------------------------------------------------------------------------
 % Ref: Knight and Hefner, "Static Thrust Analysis of the Lifting Airscrew". 1937. NASA. (TN-626)
 % --------------------------------------------------------------------------------------------------
-% (c) Copyright 2022 University of Liege
+% (c) Copyright 2022-2023 University of Liege
 % Author: Thomas Lambert <t.lambert@uliege.be>
 % ULiege - Aeroelasticity and Experimental Aerodynamics
 % MIT License
-% Repo: https://gitlab.uliege.be/thlamb/rotare
-% Docs: https://gitlab.uliege.be/thlamb/rotare-doc
-% Issues: https://gitlab.uliege.be/thlamb/rotare/-/issues
+% Repo: https://gitlab.uliege.be/rotare/rotare
+% Docs: https://gitlab.uliege.be/rotare/documentation
+% Issues: https://gitlab.uliege.be/rotare/rotare/-/issues
 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
 
 % Autosave
diff --git a/src/configs/template.m b/src/configs/template.m
index 2d9a1dd424a9fbdd01730495f129545226699c34..9f874f45d0fc61e11e9e445389bcd9a4f5ba029a 100644
--- a/src/configs/template.m
+++ b/src/configs/template.m
@@ -10,7 +10,7 @@
 %
 % Documentation:
 %   More details regarding this file and the possible configurations parameters can be found in the
-%   documentation of Rotare <a href="https://gitlab.uliege.be/thlamb/rotare-doc/">online</a>.
+%   documentation of Rotare <a href="https://gitlab.uliege.be/rotare/documentation/">online</a>.
 %
 % Input Validation:
 %   Before being used by Rotare, this configuration file will be passed through a validation
@@ -39,16 +39,16 @@
 %
 % See also: rotare, validconfig.
 %
-% <a href="https://gitlab.uliege.be/thlamb/rotare-doc">Complete documentation (online)</a>
+% <a href="https://gitlab.uliege.be/rotare/documentation">Complete documentation (online)</a>
 
 % --------------------------------------------------------------------------------------------------
-% (c) Copyright 2022 University of Liege
+% (c) Copyright 2022-2023 University of Liege
 % Author: Thomas Lambert <t.lambert@uliege.be>
 % ULiege - Aeroelasticity and Experimental Aerodynamics
 % MIT License
-% Repo: https://gitlab.uliege.be/thlamb/rotare
-% Docs: https://gitlab.uliege.be/thlamb/rotare-doc
-% Issues: https://gitlab.uliege.be/thlamb/rotare/-/issues
+% Repo: https://gitlab.uliege.be/rotare/rotare
+% Docs: https://gitlab.uliege.be/rotare/documentation
+% Issues: https://gitlab.uliege.be/rotare/rotare/-/issues
 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
 
 % ==================================================================================================
diff --git a/src/configs/templatecoax.m b/src/configs/templatecoax.m
index 4ff6ed8f840b2bc3c6fcb3e33d24843b51a07568..ccfa168eb3ad1cd95e8a94d51016e2b139e4b5de 100644
--- a/src/configs/templatecoax.m
+++ b/src/configs/templatecoax.m
@@ -4,16 +4,16 @@
 %
 % See also: template, rotare, validconfig.
 %
-% <a href="https://gitlab.uliege.be/thlamb/rotare-doc">Complete documentation (online)</a>
+% <a href="https://gitlab.uliege.be/rotare/documentation">Complete documentation (online)</a>
 
 % --------------------------------------------------------------------------------------------------
-% (c) Copyright 2022 University of Liege
+% (c) Copyright 2022-2023 University of Liege
 % Author: Thomas Lambert <t.lambert@uliege.be>
 % ULiege - Aeroelasticity and Experimental Aerodynamics
 % MIT License
-% Repo: https://gitlab.uliege.be/thlamb/rotare
-% Docs: https://gitlab.uliege.be/thlamb/rotare-doc
-% Issues: https://gitlab.uliege.be/thlamb/rotare/-/issues
+% Repo: https://gitlab.uliege.be/rotare/rotare
+% Docs: https://gitlab.uliege.be/rotare/documentation
+% Issues: https://gitlab.uliege.be/rotare/rotare/-/issues
 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
 
 % ==================================================================================================
diff --git a/src/rotare.m b/src/rotare.m
index 9e710da2aaf39f525a2c68076684c6249087fc33..c578420031d81b4799f6a762f46ea69fcc9fe03c 100644
--- a/src/rotare.m
+++ b/src/rotare.m
@@ -8,7 +8,7 @@ function [OpRot] = rotare(configFile)
     %   implemented and a few corrections/extensions to the base equations are also possible.
     %
     %   A full documentation for the software can be found on:
-    %   <a href="https://gitlab.uliege.be/thlamb/rotare-doc">ULiege's Gitlab instance</a>.
+    %   <a href="https://gitlab.uliege.be/rotare/documentation">ULiege's Gitlab instance</a>.
     % -----
     %
     %   The Rotare function acts as a wrapper for the main BEMT solver. It loads the configuration
@@ -35,16 +35,16 @@ function [OpRot] = rotare(configFile)
     %
     % See also: bemt, template.
     %
-    % <a href="https://gitlab.uliege.be/thlamb/rotare-doc">Complete documentation (online)</a>
+    % <a href="https://gitlab.uliege.be/rotare/documentation">Complete documentation (online)</a>
 
     % ----------------------------------------------------------------------------------------------
-    % (c) Copyright 2022 University of Liege
+    % (c) Copyright 2022-2023 University of Liege
     % Author: Thomas Lambert <t.lambert@uliege.be>
     % ULiege - Aeroelasticity and Experimental Aerodynamics
     % MIT License
-    % Repo: https://gitlab.uliege.be/thlamb/rotare
-    % Docs: https://gitlab.uliege.be/thlamb/rotare-doc
-    % Issues: https://gitlab.uliege.be/thlamb/rotare/-/issues
+    % Repo: https://gitlab.uliege.be/rotare/rotare
+    % Docs: https://gitlab.uliege.be/rotare/documentation
+    % Issues: https://gitlab.uliege.be/rotare/rotare/-/issues
     %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
 
     % Cleanup, imports and environment setting
diff --git a/src/solvers/bemt.m b/src/solvers/bemt.m
index 7fd3ab2930e5956edbec83fe1a456eafefda939c..1f08f66ef2da7b200eb007bb2c9d32c42ed20aeb 100644
--- a/src/solvers/bemt.m
+++ b/src/solvers/bemt.m
@@ -21,19 +21,19 @@ function bemt(OpRot, Mod)
     %
     % See also: rotare, leishman, stahlhut, propsolv, turbsolv.
     %
-    % <a href="https://gitlab.uliege.be/thlamb/rotare-doc">Complete documentation (online)</a>
+    % <a href="https://gitlab.uliege.be/rotare/documentation">Complete documentation (online)</a>
 
     % ----------------------------------------------------------------------------------------------
     % TODO: Implement coaxial rotors
     % TODO: Implement oblique flows
     % ----------------------------------------------------------------------------------------------
-    % (c) Copyright 2022 University of Liege
+    % (c) Copyright 2022-2023 University of Liege
     % Author: Thomas Lambert <t.lambert@uliege.be>
     % ULiege - Aeroelasticity and Experimental Aerodynamics
     % MIT License
-    % Repo: https://gitlab.uliege.be/thlamb/rotare
-    % Docs: https://gitlab.uliege.be/thlamb/rotare-doc
-    % Issues: https://gitlab.uliege.be/thlamb/rotare/-/issues
+    % Repo: https://gitlab.uliege.be/rotare/rotare
+    % Docs: https://gitlab.uliege.be/rotare/documentation
+    % Issues: https://gitlab.uliege.be/rotare/rotare/-/issues
     %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
 
     % For each rotor, calculate the external velocity and solve the BEMT equations
diff --git a/src/solvers/indfact.m b/src/solvers/indfact.m
index 5453da34ad900954ce7f9f8a4b9e16c488daaa08..c5e19dc200533f8206df4a7f5fa806376f269788 100644
--- a/src/solvers/indfact.m
+++ b/src/solvers/indfact.m
@@ -36,16 +36,16 @@ function indfact(OpRot, Mod)
     %
     % See also: rotare, bemt, template, OperRotor, ElemPerf.
     %
-    % <a href="https://gitlab.uliege.be/thlamb/rotare-doc">Complete documentation (online)</a>
+    % <a href="https://gitlab.uliege.be/rotare/documentation">Complete documentation (online)</a>
 
     % ----------------------------------------------------------------------------------------------
-    % (c) Copyright 2022 University of Liege
+    % (c) Copyright 2022-2023 University of Liege
     % Author: Thomas Lambert <t.lambert@uliege.be>
     % ULiege - Aeroelasticity and Experimental Aerodynamics
     % MIT License
-    % Repo: https://gitlab.uliege.be/thlamb/rotare
-    % Docs: https://gitlab.uliege.be/thlamb/rotare-doc
-    % Issues: https://gitlab.uliege.be/thlamb/rotare/-/issues
+    % Repo: https://gitlab.uliege.be/rotare/rotare
+    % Docs: https://gitlab.uliege.be/rotare/documentation
+    % Issues: https://gitlab.uliege.be/rotare/rotare/-/issues
     %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
 
     % Defaults and constants
diff --git a/src/solvers/indvel.m b/src/solvers/indvel.m
index 304c449a2f0b419b7e9b939153e34a4a481f6b31..b7d04237f0a7b8e7a8c2c69f7c2936cf5b86f939 100644
--- a/src/solvers/indvel.m
+++ b/src/solvers/indvel.m
@@ -33,16 +33,16 @@ function indvel(OpRot, Mod)
     %
     % See also: rotare, bemt, template, OperRotor, ElemPerf.
     %
-    % <a href="https://gitlab.uliege.be/thlamb/rotare-doc">Complete documentation (online)</a>
+    % <a href="https://gitlab.uliege.be/rotare/documentation">Complete documentation (online)</a>
 
     % ----------------------------------------------------------------------------------------------
-    % (c) Copyright 2022 University of Liege
+    % (c) Copyright 2022-2023 University of Liege
     % Author: Thomas Lambert <t.lambert@uliege.be>
     % ULiege - Aeroelasticity and Experimental Aerodynamics
     % MIT License
-    % Repo: https://gitlab.uliege.be/thlamb/rotare
-    % Docs: https://gitlab.uliege.be/thlamb/rotare-doc
-    % Issues: https://gitlab.uliege.be/thlamb/rotare/-/issues
+    % Repo: https://gitlab.uliege.be/rotare/rotare
+    % Docs: https://gitlab.uliege.be/rotare/documentation
+    % Issues: https://gitlab.uliege.be/rotare/rotare/-/issues
     %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
 
     % Defaults and constants
diff --git a/src/solvers/leishman.m b/src/solvers/leishman.m
index 4155f660840e8793fbac130df1ed7a6397c942c0..13f252b5aebcc7bdba537ebaa74e36f07b481056 100644
--- a/src/solvers/leishman.m
+++ b/src/solvers/leishman.m
@@ -34,18 +34,18 @@ function leishman(OpRot, Mod)
     %
     % See also: rotare, bemt, template, OperRotor, ElemPerf.
     %
-    % <a href="https://gitlab.uliege.be/thlamb/rotare-doc">Complete documentation (online)</a>
+    % <a href="https://gitlab.uliege.be/rotare/documentation">Complete documentation (online)</a>
 
     % ----------------------------------------------------------------------------------------------
     % Ref: Leishman, "Principles of Helicopter Aerodynamics", Cambridge University Press, 2006.
     % ----------------------------------------------------------------------------------------------
-    % (c) Copyright 2022 University of Liege
+    % (c) Copyright 2022-2023 University of Liege
     % Author: Thomas Lambert <t.lambert@uliege.be>
     % ULiege - Aeroelasticity and Experimental Aerodynamics
     % MIT License
-    % Repo: https://gitlab.uliege.be/thlamb/rotare
-    % Docs: https://gitlab.uliege.be/thlamb/rotare-doc
-    % Issues: https://gitlab.uliege.be/thlamb/rotare/-/issues
+    % Repo: https://gitlab.uliege.be/rotare/rotare
+    % Docs: https://gitlab.uliege.be/rotare/documentation
+    % Issues: https://gitlab.uliege.be/rotare/rotare/-/issues
     %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
 
     % Defaults and constants
diff --git a/src/solvers/prandtlloss.m b/src/solvers/prandtlloss.m
index 5bd01a4f378f92b2d1fbcbf3757a480e2f8377ed..35a6940f3d588c7bc1246f4cc5f875e382ef3f3c 100644
--- a/src/solvers/prandtlloss.m
+++ b/src/solvers/prandtlloss.m
@@ -24,16 +24,16 @@ function lossFact = prandtlloss(nBl, r, r0, phi, type)
     %
     % See also: rotare, bemt, leishman, stahlhut.
     %
-    % <a href="https://gitlab.uliege.be/thlamb/rotare-doc">Complete documentation (online)</a>
+    % <a href="https://gitlab.uliege.be/rotare/documentation">Complete documentation (online)</a>
 
     % ----------------------------------------------------------------------------------------------
-    % (c) Copyright 2022 University of Liege
+    % (c) Copyright 2022-2023 University of Liege
     % Author: Thomas Lambert <t.lambert@uliege.be>
     % ULiege - Aeroelasticity and Experimental Aerodynamics
     % MIT License
-    % Repo: https://gitlab.uliege.be/thlamb/rotare
-    % Docs: https://gitlab.uliege.be/thlamb/rotare-doc
-    % Issues: https://gitlab.uliege.be/thlamb/rotare/-/issues
+    % Repo: https://gitlab.uliege.be/rotare/rotare
+    % Docs: https://gitlab.uliege.be/rotare/documentation
+    % Issues: https://gitlab.uliege.be/rotare/rotare/-/issues
     %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
 
     % Input check
diff --git a/src/solvers/stahlhut.m b/src/solvers/stahlhut.m
index 80f6ab7d0e403540e49c7805dfc12d0b3ab91053..5a8a6898c751e3fd5c2bf6499926a2566c11c608 100644
--- a/src/solvers/stahlhut.m
+++ b/src/solvers/stahlhut.m
@@ -34,19 +34,19 @@ function stahlhut(OpRot, Mod)
     %
     % See also: rotare, bemt, template, OperRotor, ElemPerf.
     %
-    % <a href="https://gitlab.uliege.be/thlamb/rotare-doc">Complete documentation (online)</a>
+    % <a href="https://gitlab.uliege.be/rotare/documentation">Complete documentation (online)</a>
 
     % ----------------------------------------------------------------------------------------------
     % Ref: Stahlhut and Leishman, "Aerodynamic design optimization of proprotors for convertible-
     %      rotor concepts", In American Helicopter Society 68th Annual Forum. Fort Worth, TX, USA.
     % ----------------------------------------------------------------------------------------------
-    % (c) Copyright 2022 University of Liege
+    % (c) Copyright 2022-2023 University of Liege
     % Author: Thomas Lambert <t.lambert@uliege.be>
     % ULiege - Aeroelasticity and Experimental Aerodynamics
     % MIT License
-    % Repo: https://gitlab.uliege.be/thlamb/rotare
-    % Docs: https://gitlab.uliege.be/thlamb/rotare-doc
-    % Issues: https://gitlab.uliege.be/thlamb/rotare/-/issues
+    % Repo: https://gitlab.uliege.be/rotare/rotare
+    % Docs: https://gitlab.uliege.be/rotare/documentation
+    % Issues: https://gitlab.uliege.be/rotare/rotare/-/issues
     %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
 
     % Defaults and constants
diff --git a/src/utils/isconverged.m b/src/utils/isconverged.m
index c7c6398a493266548654af119e64bc1a9a17d1bb..217b4c905feb76ec7d59c7a7d240d0263fb47fc9 100644
--- a/src/utils/isconverged.m
+++ b/src/utils/isconverged.m
@@ -35,16 +35,16 @@ function bool = isconverged(new, old, convCrit, refVal)
     %
     % See also: leishman, indfact, indvel.
     %
-    % <a href="https://gitlab.uliege.be/thlamb/rotare-doc">Complete documentation (online)</a>
+    % <a href="https://gitlab.uliege.be/rotare/documentation">Complete documentation (online)</a>
 
     % ----------------------------------------------------------------------------------------------
-    % (c) Copyright 2022 University of Liege
+    % (c) Copyright 2022-2023 University of Liege
     % Author: Thomas Lambert <t.lambert@uliege.be>
     % ULiege - Aeroelasticity and Experimental Aerodynamics
     % MIT License
-    % Repo: https://gitlab.uliege.be/thlamb/rotare
-    % Docs: https://gitlab.uliege.be/thlamb/rotare-doc
-    % Issues: https://gitlab.uliege.be/thlamb/rotare/-/issues
+    % Repo: https://gitlab.uliege.be/rotare/rotare
+    % Docs: https://gitlab.uliege.be/rotare/documentation
+    % Issues: https://gitlab.uliege.be/rotare/rotare/-/issues
     %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
 
     % Validate inputs
diff --git a/src/utils/preproc/createairfoils.m b/src/utils/preproc/createairfoils.m
index 5f37f15856a57813c90fda927042a2d56124e179..e977a483a939ad6e53378d1be3fc90e3d11e09c1 100644
--- a/src/utils/preproc/createairfoils.m
+++ b/src/utils/preproc/createairfoils.m
@@ -24,16 +24,16 @@ function Af = createairfoils(UserAirfoil)
     %
     % See also: rotare, template.
     %
-    % <a href="https://gitlab.uliege.be/thlamb/rotare-doc">Complete documentation (online)</a>
+    % <a href="https://gitlab.uliege.be/rotare/documentation">Complete documentation (online)</a>
 
     % ----------------------------------------------------------------------------------------------
-    % (c) Copyright 2022 University of Liege
+    % (c) Copyright 2022-2023 University of Liege
     % Author: Thomas Lambert <t.lambert@uliege.be>
     % ULiege - Aeroelasticity and Experimental Aerodynamics
     % MIT License
-    % Repo: https://gitlab.uliege.be/thlamb/rotare
-    % Docs: https://gitlab.uliege.be/thlamb/rotare-doc
-    % Issues: https://gitlab.uliege.be/thlamb/rotare/-/issues
+    % Repo: https://gitlab.uliege.be/rotare/rotare
+    % Docs: https://gitlab.uliege.be/rotare/documentation
+    % Issues: https://gitlab.uliege.be/rotare/rotare/-/issues
     %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
 
     import af_tools.*
diff --git a/src/utils/preproc/validateconfig.m b/src/utils/preproc/validateconfig.m
index c8b3ca6b5cbeca160109dfd8820ce1ef53361983..9917d4b399e4fd78e81a49b9c4d11afea4ddd4af 100644
--- a/src/utils/preproc/validateconfig.m
+++ b/src/utils/preproc/validateconfig.m
@@ -35,16 +35,16 @@ function [Sim, Mod, Flow, Op, Airfoil, Blade] = validateconfig(configFile)
     %
     % See also: rotare, template.
     %
-    % <a href="https://gitlab.uliege.be/thlamb/rotare-doc">Complete documentation (online)</a>
+    % <a href="https://gitlab.uliege.be/rotare/documentation">Complete documentation (online)</a>
 
     % ----------------------------------------------------------------------------------------------
-    % (c) Copyright 2022 University of Liege
+    % (c) Copyright 2022-2023 University of Liege
     % Author: Thomas Lambert <t.lambert@uliege.be>
     % ULiege - Aeroelasticity and Experimental Aerodynamics
     % MIT License
-    % Repo: https://gitlab.uliege.be/thlamb/rotare
-    % Docs: https://gitlab.uliege.be/thlamb/rotare-doc
-    % Issues: https://gitlab.uliege.be/thlamb/rotare/-/issues
+    % Repo: https://gitlab.uliege.be/rotare/rotare
+    % Docs: https://gitlab.uliege.be/rotare/documentation
+    % Issues: https://gitlab.uliege.be/rotare/rotare/-/issues
     %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
 
     % Load the configuration file and output warning if it is the template.
diff --git a/src/utils/preproc/verifyinstall.m b/src/utils/preproc/verifyinstall.m
index 5e0cc5e3bcbf83629da4b558b71422ff9939235d..5aa6da5efa0c9e0901cb662ac900ee15bcd0d274 100644
--- a/src/utils/preproc/verifyinstall.m
+++ b/src/utils/preproc/verifyinstall.m
@@ -12,16 +12,16 @@ function bool = verifyinstall
     %
     % See also: rotare, af_tools.Airfoil, af_tools.Polar.
     %
-    % <a href="https://gitlab.uliege.be/thlamb/rotare-doc">Complete documentation (online)</a>
+    % <a href="https://gitlab.uliege.be/rotare/documentation">Complete documentation (online)</a>
 
     % ----------------------------------------------------------------------------------------------
-    % (c) Copyright 2022 University of Liege
+    % (c) Copyright 2022-2023 University of Liege
     % Author: Thomas Lambert <t.lambert@uliege.be>
     % ULiege - Aeroelasticity and Experimental Aerodynamics
     % MIT License
-    % Repo: https://gitlab.uliege.be/thlamb/rotare
-    % Docs: https://gitlab.uliege.be/thlamb/rotare-doc
-    % Issues: https://gitlab.uliege.be/thlamb/rotare/-/issues
+    % Repo: https://gitlab.uliege.be/rotare/rotare
+    % Docs: https://gitlab.uliege.be/rotare/documentation
+    % Issues: https://gitlab.uliege.be/rotare/rotare/-/issues
     %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
 
     persistent bool_ % Prevent future checks if all is good
@@ -87,9 +87,9 @@ function checkaftools(fctname)
                      'Please download '...
                      '<a href="https://gitlab.uliege.be/am-dept/matlab_airfoil_toolbox">'...
                      'the following library</a> and place it somewhere on Matlab''s path.\n\n' ...
-                     'Check the <a href="https://gitlab.uliege.be/thlamb/rotare-doc">complete '...
-                     'documentation (online)</a> for help on how to install properly all '...
-                     'dependencies.'], fctname);
+                     'Check the <a href="https://gitlab.uliege.be/rotare/documentation">' ...
+                     'complete documentation (online)</a> for help on how to install properly '...
+                     'all dependencies.'], fctname);
         Error.stack.file = '';
         Error.stack.name = 'verifyinstall';
         Error.stack.line = 1;
diff --git a/src/utils/saveresults.m b/src/utils/saveresults.m
index 128addff6d444d59bee68381257765315dff5d33..2eedd3a78ada97797699fe94f193d210d2b770ae 100644
--- a/src/utils/saveresults.m
+++ b/src/utils/saveresults.m
@@ -19,16 +19,16 @@ function saveresults(Struct, Save, Mod)
     %
     % See also: rotare, template.
     %
-    % <a href="https://gitlab.uliege.be/thlamb/rotare-doc">Complete documentation (online)</a>
+    % <a href="https://gitlab.uliege.be/rotare/documentation">Complete documentation (online)</a>
 
     % ----------------------------------------------------------------------------------------------
-    % (c) Copyright 2022 University of Liege
+    % (c) Copyright 2022-2023 University of Liege
     % Author: Thomas Lambert <t.lambert@uliege.be>
     % ULiege - Aeroelasticity and Experimental Aerodynamics
     % MIT License
-    % Repo: https://gitlab.uliege.be/thlamb/rotare
-    % Docs: https://gitlab.uliege.be/thlamb/rotare-doc
-    % Issues: https://gitlab.uliege.be/thlamb/rotare/-/issues
+    % Repo: https://gitlab.uliege.be/rotare/rotare
+    % Docs: https://gitlab.uliege.be/rotare/documentation
+    % Issues: https://gitlab.uliege.be/rotare/rotare/-/issues
     %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
 
     % Create directory for the results if it does not exist
diff --git a/src/utils/sgn.m b/src/utils/sgn.m
index 7e3782eb09e5645ea2d08c88f1f3bec2348c0888..628b4c4fe6773a6228798f1bb5ce0a4f0bf3de5b 100644
--- a/src/utils/sgn.m
+++ b/src/utils/sgn.m
@@ -26,16 +26,16 @@ function signum = sgn(in, zeroVal)
     %
     % See also: rotare, stahlhut.
     %
-    % <a href="https://gitlab.uliege.be/thlamb/rotare-doc">Complete documentation (online)</a>
+    % <a href="https://gitlab.uliege.be/rotare/documentation">Complete documentation (online)</a>
 
     % ----------------------------------------------------------------------------------------------
-    % (c) Copyright 2022 University of Liege
+    % (c) Copyright 2022-2023 University of Liege
     % Author: Thomas Lambert <t.lambert@uliege.be>
     % ULiege - Aeroelasticity and Experimental Aerodynamics
     % MIT License
-    % Repo: https://gitlab.uliege.be/thlamb/rotare
-    % Docs: https://gitlab.uliege.be/thlamb/rotare-doc
-    % Issues: https://gitlab.uliege.be/thlamb/rotare/-/issues
+    % Repo: https://gitlab.uliege.be/rotare/rotare
+    % Docs: https://gitlab.uliege.be/rotare/documentation
+    % Issues: https://gitlab.uliege.be/rotare/rotare/-/issues
     %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
 
     % Defaults and constants