diff --git a/README.md b/README.md index 31277968..4a567ad8 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,9 @@ Add direct uploads to AWS S3 functionality with a progress bar to file input fie ## Support Python 2/3 -Chrome / Safari / Firefox / IE10+ +Chrome / Safari / Firefox / IE10+ + +For older browser support use version 0.1.10. ## Installation diff --git a/s3direct/fields.py b/s3direct/fields.py index 9566b3ca..fe9c2158 100644 --- a/s3direct/fields.py +++ b/s3direct/fields.py @@ -12,7 +12,7 @@ def __init__(self, upload_to=S3DIRECT_DIR): super(S3DirectField, self).__init__() def get_internal_type(self): - return 'URLField' + return 'TextField' def formfield(self, **kwargs): kwargs['widget'] = self.widget diff --git a/setup.py b/setup.py index 840ed28f..bcad9dc2 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ setup( name='django-s3direct', - version='0.1.11', + version='0.2.0', description='Add direct uploads to S3 functionality with a progress bar to file input fields.', long_description=readme, author="Bradley Griffiths",