diff --git a/CHANGES b/CHANGES new file mode 100644 index 0000000..ddd11bc --- /dev/null +++ b/CHANGES @@ -0,0 +1,15 @@ +========= +CHANGELOG +========= + +0.7.6 (2014-11-26) +================== + +** New features ** + +- A setting to display (or not) the reset button has been added (@jsayles) + +** Internal changes ** + +- Rendering is now based on a template (@andybak) +- Javascript is properly initialized (@andybak) diff --git a/MANIFEST.in b/MANIFEST.in index 421e471..d3ebe80 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,4 +1,4 @@ -include README.rst LICENSE +include README.rst LICENSE CHANGES recursive-include jsignature/static *.js recursive-include jsignature/locale *.mo recursive-include jsignature/templates *.html diff --git a/README.rst b/README.rst index ecfdbda..0c4ed47 100644 --- a/README.rst +++ b/README.rst @@ -13,7 +13,7 @@ It provides: :target: https://coveralls.io/r/fle/django-jsignature -.. image:: screen.png +.. image:: https://github.com/fle/django-jsignature/blob/master/screen.png ================== INSTALL @@ -23,7 +23,7 @@ For now: :: - pip install https://github.com/fle/django-jsignature/archive/master.zip + pip install django-jsignature ================== USAGE diff --git a/setup.py b/setup.py index 8945b11..e43d7f8 100644 --- a/setup.py +++ b/setup.py @@ -8,10 +8,11 @@ setup( version='0.7.6', author='Florent Lebreton', author_email='florent.lebreton@makina-corpus.com', - url='https://github.com/makinacorpus/django-jsignature', - download_url="http://pypi.python.org/pypi/django-jsignature/", + url='https://github.com/fle/django-jsignature', + download_url="https://github.com/fle/django-jsignature/tarball/0.7.6", description="Use jSignature jQuery plugin in your django projects", - long_description=open(os.path.join(here, 'README.rst')).read(), + long_description=open(os.path.join(here, 'README.rst')).read() + '\n\n' + + open(os.path.join(here, 'CHANGES')).read(), license='LPGL, see LICENSE file.', install_requires=['Django'], packages=find_packages(), @@ -24,6 +25,6 @@ setup( 'Intended Audience :: Developers', 'Environment :: Web Environment', 'Framework :: Django', - 'Development Status :: 4 - Beta', + 'Development Status :: 5 - Production/Stable', 'Programming Language :: Python :: 2.7'], )