diff --git a/release/datafiles/locale b/release/datafiles/locale index 1cc27d5282a..6a514935090 160000 --- a/release/datafiles/locale +++ b/release/datafiles/locale @@ -1 +1 @@ -Subproject commit 1cc27d5282aa4978ee36663aca857eb550df194b +Subproject commit 6a51493509090c7fa3bd2e69105761c3c144c7dd diff --git a/release/scripts/addons b/release/scripts/addons index 36cc6368b7a..fdfe8d4f412 160000 --- a/release/scripts/addons +++ b/release/scripts/addons @@ -1 +1 @@ -Subproject commit 36cc6368b7abee3bc1a47759107797117eb7d539 +Subproject commit fdfe8d4f41245e7c19068021ef12f58fa2ad32de diff --git a/release/scripts/addons_contrib b/release/scripts/addons_contrib index 9468c406fb5..4cf486c4eba 160000 --- a/release/scripts/addons_contrib +++ b/release/scripts/addons_contrib @@ -1 +1 @@ -Subproject commit 9468c406fb554e32ff47b62bfef356b3908ec651 +Subproject commit 4cf486c4eba158b453bdd87d97b74192ef7497b2 diff --git a/source/blender/python/mathutils/mathutils_Matrix.c b/source/blender/python/mathutils/mathutils_Matrix.c index 7a3a92d8a10..7896b939d77 100644 --- a/source/blender/python/mathutils/mathutils_Matrix.c +++ b/source/blender/python/mathutils/mathutils_Matrix.c @@ -1527,7 +1527,7 @@ PyDoc_STRVAR( " (instead of raising a :exc:`ValueError` exception).\n" " :type fallback: :class:`Matrix`\n" "\n" - " .. seealso:: `Inverse matrix ` on " + " .. seealso:: `Inverse matrix `__ on " "Wikipedia.\n"); static PyObject *Matrix_invert(MatrixObject *self, PyObject *args) { @@ -1642,7 +1642,7 @@ PyDoc_STRVAR(Matrix_invert_safe_doc, "to get an invertible one.\n" " If tweaked matrix is still degenerated, set to the identity matrix instead.\n" "\n" - " .. seealso:: `Inverse Matrix ` on " + " .. seealso:: `Inverse Matrix `__ on " "Wikipedia.\n"); static PyObject *Matrix_invert_safe(MatrixObject *self) { @@ -1696,7 +1696,7 @@ PyDoc_STRVAR( "\n" " .. note:: When the matrix cannot be adjugated a :exc:`ValueError` exception is raised.\n" "\n" - " .. seealso:: `Adjugate matrix ` on " + " .. seealso:: `Adjugate matrix `__ on " "Wikipedia.\n"); static PyObject *Matrix_adjugate(MatrixObject *self) { @@ -1883,7 +1883,7 @@ PyDoc_STRVAR( " :return: Return the determinant of a matrix.\n" " :rtype: float\n" "\n" - " .. seealso:: `Determinant ` on Wikipedia.\n"); + " .. seealso:: `Determinant `__ on Wikipedia.\n"); static PyObject *Matrix_determinant(MatrixObject *self) { if (BaseMath_ReadCallback(self) == -1) { @@ -1906,7 +1906,7 @@ PyDoc_STRVAR( "\n" " Set the matrix to its transpose.\n" "\n" - " .. seealso:: `Transpose ` on Wikipedia.\n"); + " .. seealso:: `Transpose `__ on Wikipedia.\n"); static PyObject *Matrix_transpose(MatrixObject *self) { if (BaseMath_ReadCallback_ForWrite(self) == -1) { @@ -2039,7 +2039,7 @@ PyDoc_STRVAR(Matrix_identity_doc, " .. note:: An object with a location and rotation of zero, and a scale of one\n" " will have an identity matrix.\n" "\n" - " .. seealso:: `Identity matrix ` " + " .. seealso:: `Identity matrix `__ " "on Wikipedia.\n"); static PyObject *Matrix_identity(MatrixObject *self) {