From 8bbd83ea7606f1d2433fa14b84a6aa48224e0bb2 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Sat, 27 Apr 2019 18:33:37 -0400 Subject: [PATCH] Increase default title truncation to 120 Signed-off-by: Roberto Rosario --- HISTORY.rst | 1 + docs/releases/3.2.rst | 1 + mayan/apps/appearance/literals.py | 2 +- 3 files changed, 3 insertions(+), 1 deletion(-) 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