diff --git a/HISTORY.rst b/HISTORY.rst index d7a82c830b..7bd3c09149 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -182,6 +182,7 @@ * Load only one language in the document properties form. * Convert title calculation form to a template tag. * Show the full title as a hover title even when truncated. +* Increase default title truncation length to 120 characters. 3.1.11 (2019-04-XX) =================== diff --git a/docs/releases/3.2.rst b/docs/releases/3.2.rst index d00878ade9..d57ed3e5e4 100644 --- a/docs/releases/3.2.rst +++ b/docs/releases/3.2.rst @@ -214,6 +214,7 @@ Other changes * Load only one language in the document properties form. * Convert title calculation form to a template tag. * Show the full title as a hover title even when truncated. +* Increase default title truncation length to 120 characters. Removals -------- diff --git a/mayan/apps/appearance/literals.py b/mayan/apps/appearance/literals.py index 6266e3e975..87ce87d1f8 100644 --- a/mayan/apps/appearance/literals.py +++ b/mayan/apps/appearance/literals.py @@ -1 +1 @@ -DEFAULT_MAXIMUM_TITLE_LENGTH = 80 +DEFAULT_MAXIMUM_TITLE_LENGTH = 120