mirror of
https://github.com/DarrenOfficial/dpaste.git
synced 2024-11-15 08:02:54 +11:00
Version 3.0!
This commit is contained in:
parent
ccd45314a2
commit
7ec3e94471
2 changed files with 23 additions and 17 deletions
|
@ -1,27 +1,32 @@
|
||||||
Changelog
|
Changelog
|
||||||
=========
|
=========
|
||||||
|
|
||||||
3.0a0 (master)
|
3.0 (2018-06-22)
|
||||||
--------------
|
----------------
|
||||||
|
|
||||||
* Dropped support for Django 1.8 to 1.10 due to it's general end of support.
|
Huge release. Full cleanup and update of the entire codebase. Details:
|
||||||
|
|
||||||
|
* Requires Python 3.4 and up.
|
||||||
|
* Dropped support for Django 1.8 to 1.10 due to it's general end of support.
|
||||||
The project will likely work well but it's no longer specifically tested.
|
The project will likely work well but it's no longer specifically tested.
|
||||||
* Fixed issues around leading whitespace in lines.
|
|
||||||
* Fixed CMD+Enter form submission shortcut in Firefox.
|
|
||||||
* Removed "Suspicious" middleware which was never been used, documented,
|
|
||||||
and also not functional for a while.
|
|
||||||
* Added django-csp to deal with external content (this is required for the
|
|
||||||
upcoming "rendered" markdown feature).
|
|
||||||
|
|
||||||
General code cleanup:
|
|
||||||
|
|
||||||
* All views are now class based and use the latest generic based views sugar.
|
* All views are now class based and use the latest generic based views sugar.
|
||||||
* Django 1.11 based templates, forms, views, models, etc.
|
* Django 1.11 based templates, forms, views, models, etc.
|
||||||
* Removed jQuery dependeny, all Javascript is native.
|
* Added pipenv support for local development.
|
||||||
* Removed Bootstrap dependendy.
|
* Added AppConfig support to set and maintain settings.
|
||||||
|
* Added "Rendered Text" lexer with support for rST and Markdown.
|
||||||
|
* Added Content Security Policy features, with django-csp (this is mainly
|
||||||
|
required for the "rendered" text feature).
|
||||||
|
* Removed jQuery dependency, all Javascript is native.
|
||||||
|
* Removed Bootstrap dependency.
|
||||||
|
* Removed 'Maximum History' limit setting.
|
||||||
|
* Removed translations.
|
||||||
|
* Removed "Suspicious" middleware which was never been used, documented,
|
||||||
|
and also not functional for a while.
|
||||||
|
* Fixed issues around leading whitespace in lines.
|
||||||
|
* Fixed CMD+Enter form submission shortcut in Firefox.
|
||||||
|
|
||||||
2.14 (master)
|
2.14 (no public release)
|
||||||
-------------
|
------------------------
|
||||||
|
|
||||||
* Django 1.11 compatibility. But not Django 2.0 yet.
|
* Django 1.11 compatibility. But not Django 2.0 yet.
|
||||||
* Removed "Suspicious" middleware which was never been used, documented,
|
* Removed "Suspicious" middleware which was never been used, documented,
|
||||||
|
|
3
setup.py
3
setup.py
|
@ -6,9 +6,10 @@ long_description = '\n\n'.join((
|
||||||
open('README.rst').read(),
|
open('README.rst').read(),
|
||||||
open('CHANGELOG.rst').read()
|
open('CHANGELOG.rst').read()
|
||||||
))
|
))
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name='dpaste',
|
name='dpaste',
|
||||||
version='3.0a6',
|
version='3.0',
|
||||||
description='dpaste is a Django based pastebin. It\'s intended to run '
|
description='dpaste is a Django based pastebin. It\'s intended to run '
|
||||||
'separately but its also possible to be installed into an '
|
'separately but its also possible to be installed into an '
|
||||||
'existing Django project like a regular app.',
|
'existing Django project like a regular app.',
|
||||||
|
|
Loading…
Reference in a new issue