Fix Dutch locale typo, close GitLab issue #256. Add placeholder for 2.1 release notes.
This commit is contained in:
67
docs/releases/2.1.rst
Normal file
67
docs/releases/2.1.rst
Normal file
@@ -0,0 +1,67 @@
|
||||
===============================
|
||||
Mayan EDMS v2.1 release notes
|
||||
===============================
|
||||
|
||||
Released: April, 2016
|
||||
|
||||
What's new
|
||||
==========
|
||||
|
||||
- Add HTML tags stripping to the browser title generation template.
|
||||
|
||||
Removals
|
||||
--------
|
||||
* None
|
||||
|
||||
Upgrading from a previous version
|
||||
---------------------------------
|
||||
|
||||
Using PIP
|
||||
~~~~~~~~~
|
||||
|
||||
Type in the console::
|
||||
|
||||
$ pip install -U mayan-edms
|
||||
|
||||
the requirements will also be updated automatically.
|
||||
|
||||
Using Git
|
||||
~~~~~~~~~
|
||||
|
||||
If you installed Mayan EDMS by cloning the Git repository issue the commands::
|
||||
|
||||
$ git reset --hard HEAD
|
||||
$ git pull
|
||||
|
||||
otherwise download the compressed archived and uncompress it overriding the
|
||||
existing installation.
|
||||
|
||||
Next upgrade/add the new requirements::
|
||||
|
||||
$ pip install --upgrade -r requirements.txt
|
||||
|
||||
Common steps
|
||||
~~~~~~~~~~~~
|
||||
|
||||
Migrate existing database schema with::
|
||||
|
||||
$ mayan-edms.py performupgrade
|
||||
|
||||
Add new static media::
|
||||
|
||||
$ mayan-edms.py collectstatic --noinput
|
||||
|
||||
The upgrade procedure is now complete.
|
||||
|
||||
|
||||
Backward incompatible changes
|
||||
=============================
|
||||
|
||||
* None
|
||||
|
||||
Bugs fixed or issues closed
|
||||
===========================
|
||||
|
||||
* `GitLab issue #250 <https://gitlab.com/mayan-edms/mayan-edms/issues/250>`_ Empty optional lookup metadata trigger validation error.
|
||||
|
||||
.. _PyPI: https://pypi.python.org/pypi/mayan-edms/
|
||||
@@ -166,7 +166,7 @@ LANGUAGES = (
|
||||
('hr', _('Croatian')),
|
||||
('id', _('Indonesian')),
|
||||
('it', _('Italian')),
|
||||
('nl', _('Dutch (Nethherlands)')),
|
||||
('nl', _('Dutch (Netherlands)')),
|
||||
('pl', _('Polish')),
|
||||
('pt', _('Portuguese')),
|
||||
('pt-br', _('Portuguese (Brazil)')),
|
||||
|
||||
Reference in New Issue
Block a user