diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index f2d5164..0000000 --- a/.travis.yml +++ /dev/null @@ -1,10 +0,0 @@ -dist: xenial # has py35! -sudo: false -language: python -cache: pip -python: - - "2.7" - - "3.6" - - "3.7" -install: pip install tox-travis -script: tox diff --git a/CHANGELOG.txt b/CHANGELOG.txt index c378a20..4f1025e 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,7 +1,13 @@ ==== (ongoing) === -- ... +- motivate django-filer team to incoroporate some of our ideas ;-) + + +==== 0.1.0 === + +- support django-filer with svg support (create uploaded images as Image) +- many things since 0.0.1 ==== 0.0.1 === diff --git a/MANIFEST.in b/MANIFEST.in index 097a803..32fab1f 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,6 +1,6 @@ include LICENSE include README.md -include PYPI.rst +include PYPI.md global-exclude *.orig *.pyc *.log *.swp recursive-include filer_addons/filer_gui * diff --git a/PYPI.md b/PYPI.md new file mode 100644 index 0000000..9468dd4 --- /dev/null +++ b/PYPI.md @@ -0,0 +1,3 @@ +[![CI](https://github.com/rouxcode/django-filer-addons/actions/workflows/ci.yml/badge.svg)](https://github.com/rouxcode/django-filer-addons/actions/workflows/ci.yml) + +Development and Docs on ``_ diff --git a/PYPI.rst b/PYPI.rst deleted file mode 100644 index b3cc42e..0000000 --- a/PYPI.rst +++ /dev/null @@ -1,8 +0,0 @@ -.. image:: https://travis-ci.org/rouxcode/django-filer-addons.svg - :target: https://travis-ci.org/rouxcode/django-filer-addons/ -.. image:: https://img.shields.io/pypi/v/django-filer-addons.svg - :target: https://pypi.python.org/pypi/django-filer-addons/ -.. image:: https://img.shields.io/pypi/l/django-filer-addons.svg - :target: https://pypi.python.org/pypi/django-filer-addons/ - -Development and Docs on ``_ diff --git a/README.md b/README.md index 570efca..fe732dc 100644 --- a/README.md +++ b/README.md @@ -19,11 +19,23 @@ Features This package provides sub applications, that can be installed individually, to only selecte the needed features. -- `filer_addons.filer_gui` - an improved filer file and filer image field, a multiupload inline. -- `filer_addons.filer_signals` - can help avoid duplicates, will rename files on the filesystem if - said to do so, and can put unfiled files in a default folder, to prevent permission issues. -- `filer_addons.filer_utils` - various helpers: for now, generate folder/filenames for uploaded - files (without folder/8-char simple uuid4/use db folder/year/year-month) +## `filer_addons.filer_gui` +an improved/oppiniated filer file and filer image field, a multiupload inline. + +![filer fields](docs/img/filer_field.png) + +## `filer_addons.filer_gui.change_list` +an improved/oppiniated filer change list, that contains uncropped, bigger thumbnails + +![filer fields](docs/img/filer_change_list.png) + +## `filer_addons.filer_signals` +can help avoid duplicates, will rename files on the filesystem if +said to do so, and can put unfiled files in a default folder, to prevent permission issues. + +## `filer_addons.filer_utils` +various helpers: for now, generate folder/filenames for uploaded +files (without folder/8-char simple uuid4/use db folder/year/year-month) Install ------- diff --git a/docs/img/filer_change_list.png b/docs/img/filer_change_list.png new file mode 100644 index 0000000..b50ce4c Binary files /dev/null and b/docs/img/filer_change_list.png differ diff --git a/docs/img/filer_field.png b/docs/img/filer_field.png new file mode 100644 index 0000000..c01be1c Binary files /dev/null and b/docs/img/filer_field.png differ diff --git a/filer_addons/__init__.py b/filer_addons/__init__.py index fa9c4ec..b794fd4 100644 --- a/filer_addons/__init__.py +++ b/filer_addons/__init__.py @@ -1 +1 @@ -__version__ = '0.0.6' +__version__ = '0.1.0' diff --git a/filer_addons/filer_gui/utils.py b/filer_addons/filer_gui/utils.py index 5c5ec72..9b9ff40 100644 --- a/filer_addons/filer_gui/utils.py +++ b/filer_addons/filer_gui/utils.py @@ -8,6 +8,7 @@ '.jpeg', '.png', '.gif', + '.svg', ] diff --git a/setup.py b/setup.py index aa2cbd7..8d0fa0a 100644 --- a/setup.py +++ b/setup.py @@ -19,7 +19,8 @@ def read(fname): license='MIT Licence', platforms=['OS Independent'], description="django filer addons", - long_description=read('PYPI.rst'), + long_description=read('PYPI.md'), + long_description_content_type="text/markdown", author=u'Ben Stähli', author_email='bnzk@bnzk.ch', packages=find_packages(),