Version 0.3.1
This commit is contained in:
@@ -48,9 +48,9 @@ copyright = u'2012, Simon Conseil'
|
||||
# built documents.
|
||||
#
|
||||
# The short X.Y version.
|
||||
version = '0.3'
|
||||
version = '0.3.1'
|
||||
# The full version, including alpha/beta/rc tags.
|
||||
release = '0.3'
|
||||
release = '0.3.1'
|
||||
|
||||
# The language for content autogenerated by Sphinx. Refer to documentation
|
||||
# for a list of supported languages.
|
||||
|
||||
@@ -15,6 +15,9 @@ The idea behind Sigal is to ease the use of the javascript librairies like
|
||||
`galleria`_. These librairies do a great job to display the images, Sigal does
|
||||
what is missing: resize images, create thumbnails, generate html pages.
|
||||
|
||||
Sigal is currently compatible only with python 2. It will be ported to python
|
||||
3 when PIL/Pillow will be available for python 3.
|
||||
|
||||
Links :
|
||||
|
||||
* Latest documentation on the `website`_
|
||||
@@ -150,13 +153,22 @@ the first image of the directory is used as thumbnail.
|
||||
|
||||
.. _markdown: http://daringfireball.net/projects/markdown/
|
||||
|
||||
|
||||
Changelog
|
||||
---------
|
||||
|
||||
Version 0.3.1
|
||||
~~~~~~~~~~~~~
|
||||
|
||||
Released on 2013-03-11.
|
||||
|
||||
- Fix the path of the sample config file (which was not included in the
|
||||
previous release).
|
||||
|
||||
Version 0.3
|
||||
~~~~~~~~~~~
|
||||
|
||||
Released on 2013-xx-xx.
|
||||
Released on 2013-03-04.
|
||||
|
||||
- Fix packaging issues.
|
||||
- New setting ``index_in_url`` to optionally add `index.html` to the URLs.
|
||||
|
||||
2
setup.py
2
setup.py
@@ -18,7 +18,7 @@ with open('README.rst') as f:
|
||||
|
||||
setup(
|
||||
name='sigal',
|
||||
version='0.3',
|
||||
version='0.3.1',
|
||||
url='https://github.com/saimn/sigal',
|
||||
license='MIT',
|
||||
author='Simon Conseil',
|
||||
|
||||
@@ -33,7 +33,7 @@ sigal is yet another python script to prepare a static gallery of images:
|
||||
from __future__ import absolute_import
|
||||
|
||||
__author__ = "Simon Conseil"
|
||||
__version__ = "0.3"
|
||||
__version__ = "0.3.1"
|
||||
__license__ = "MIT"
|
||||
|
||||
import codecs
|
||||
|
||||
Reference in New Issue
Block a user