Skip to content

Commit

Permalink
Merge pull request #35 from benzkji/master
Browse files Browse the repository at this point in the history
support SVG as filer does
  • Loading branch information
benzkji authored Sep 11, 2023
2 parents 0a9a7e5 + cd5a6d4 commit b53bc7e
Show file tree
Hide file tree
Showing 11 changed files with 32 additions and 27 deletions.
10 changes: 0 additions & 10 deletions .travis.yml

This file was deleted.

8 changes: 7 additions & 1 deletion CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -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 ===
Expand Down
2 changes: 1 addition & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -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 *
Expand Down
3 changes: 3 additions & 0 deletions PYPI.md
Original file line number Diff line number Diff line change
@@ -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 `<https://github.com/rouxcode/django-filer-addons/>`_
8 changes: 0 additions & 8 deletions PYPI.rst

This file was deleted.

22 changes: 17 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
-------
Expand Down
Binary file added docs/img/filer_change_list.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/img/filer_field.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion filer_addons/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '0.0.6'
__version__ = '0.1.0'
1 change: 1 addition & 0 deletions filer_addons/filer_gui/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
'.jpeg',
'.png',
'.gif',
'.svg',
]


Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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='[email protected]',
packages=find_packages(),
Expand Down

0 comments on commit b53bc7e

Please sign in to comment.