I had hoped to have released version 2.1 already but the document signing overhaul took much longer than expected. I am attending PyCon Italia and won't be able to get back to work on the code until April 25th, at least. That means that we are looking at a late April/May for release.
In the meantime I would like feedback on the current development branch to speed up bug hunting. To test Mayan development version, clone the code in a new directory (do not do this on top of an existing install). git clone https://gitlab.com/mayan-edms/mayan-edms.git cd mayan-edms git checkout development virtualenv venv source venv/bin/activate pip install -r requirements.txt ./manage.py initialsetup ./manage.py runserver to run all the tests: pip install -r requirements/testing ./manage.py runtests --settings=mayan.settings.testing --nomigrations or just: pip install -r requirements/testing tox this last method using Tox also create a code coverage report in htmlconv which can be viewed with a browser. Change log is in the HISTORY.rst file, release note need to be written. Lastly, to keep development as open and transparent as possible, I've consolidated all the request/features/ideas I've received into a single file in the projects Wiki at GitLab: https://gitlab.com/mayan-edms/mayan-edms/wikis/roadmap Further ideas, comments are welcome. Thank you, --Roberto <https://gitlab.com/mayan-edms/mayan-edms/wikis/roadmap> -- --- You received this message because you are subscribed to the Google Groups "Mayan EDMS" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
