start developing 0.2.0

This commit is contained in:
James Turk 2010-03-04 16:47:50 -05:00
parent fb46c3e18f
commit 6a6b3af7d3
4 changed files with 11 additions and 5 deletions

View File

@ -2,6 +2,12 @@
Changelog Changelog
========= =========
0.2.0
================
- add custom radius handling
- made accuracy and radius optional
- new parameters: alt, search2/3, slider2/3, checkboxes
0.1.1 - March 4 2009 0.1.1 - March 4 2009
==================== ====================
- fix packaging issues - fix packaging issues

2
README
View File

@ -5,7 +5,7 @@ Django generic view for making `Layar <http://layar.com>`_ endpoints.
Provides abstract class that responds to Layar API requests in the appropriate format. By implementing two small functions it is possible to add a layer to the Layar augmented reality application for Android and iPhone. Provides abstract class that responds to Layar API requests in the appropriate format. By implementing two small functions it is possible to add a layer to the Layar augmented reality application for Android and iPhone.
django-layar is a project of Sunlight Labs (c) 2009. django-layar is a project of Sunlight Labs (c) 2010.
Written by James Turk <jturk@sunlightfoundation.com> Written by James Turk <jturk@sunlightfoundation.com>
Source: http://github.com/sunlightlabs/django-layar/ Source: http://github.com/sunlightlabs/django-layar/

View File

@ -42,16 +42,16 @@ master_doc = 'index'
# General information about the project. # General information about the project.
project = u'django-layar' project = u'django-layar'
copyright = u'2009, James Turk' copyright = u'2010, James Turk'
# The version info for the project you're documenting, acts as replacement for # The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the # |version| and |release|, also used in various other places throughout the
# built documents. # built documents.
# #
# The short X.Y version. # The short X.Y version.
version = '0.1.0' version = '0.2.0'
# The full version, including alpha/beta/rc tags. # The full version, including alpha/beta/rc tags.
release = '0.1.0' release = '0.2.0'
# The language for content autogenerated by Sphinx. Refer to documentation # The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages. # for a list of supported languages.

View File

@ -4,7 +4,7 @@ long_description = open('README').read()
setup( setup(
name='django-layar', name='django-layar',
version="0.1.0", version="0.2.0",
package_dir={'layar': 'layar'}, package_dir={'layar': 'layar'},
packages=['layar'], packages=['layar'],
description='helper for publishing data to Layar augmented reality browser from Django', description='helper for publishing data to Layar augmented reality browser from Django',