Skip to content

Commit

Permalink
Preparing new release 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
versae committed Jan 5, 2015
1 parent f24becd commit 80933fe
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 19 deletions.
12 changes: 7 additions & 5 deletions AUTHORS.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,13 @@ The PRIMARY AUTHORS are (ordered by aproximated LOC number):

APPRECIATED CONTRIBUTORS:

* Lorenzo Gil <[email protected]>, adding the setuptools support: https://github.com/versae/qbe/pull/1
* Patrick Taylor <[email protected]> for reporting problems with the license.
* Sebastián Magrí <[email protected]> for reporting bugs.
* Fidel Ramos <[email protected]> for compatibility code with Django 1.3 static files: https://github.com/versae/qbe/pull/11
* Olivier Larchevêque <[email protected]> for added a basis French translation.
* yatagan, @yatagan
* Miguel Angel Velazco, @MikeVelazcoMtz@users
* Lorenzo Gil, @lgs
* Patrick Taylor, @huxley
* Sebastián Magrí, @sebasmagri
* Fidel Ramos @haplo
* Olivier Larchevêque @olarcheveque

And a big THANK YOU goes to:

Expand Down
22 changes: 12 additions & 10 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,22 +1,24 @@
0.2.0 (in development)
----------------------

0.3.0 (2015-01-05)
------------------
- Fix #39. Better to put '----' for field. Implementation of '*' to return all the fields will be done in the future.
- Fix #20. Adds support for aliases
- Fix #43. Modernizing the code. Now it works with Django 1.7
- Deprecation in simplejson
- Update change_form.html and url syntax
- Fix #26. Add initial support for GROUP BY by enabling QBE_GROUP_BY=True in settings
- Fix #25. From 1.6, urls and patterns have to be imported from django.conf.urls

0.2.0 (2012-06-22)
------------------
- Fixed compatibility with Django 1.4 database introspection.

- Fixed relative paths of static files.

- Fixed a regression with JavaScript formsets.

- Added SavedQuery model (including South migrations) to save queries in the
database.

- Fixed proxy model support (and other odd scenarios like django-taggit).

- Added English base translation files, and an initial Canadian French
translation (by Olivier Larchevêque).

- Fixed packaging manifest template.

- Changed license to MIT.

0.1.6 (2011-04-20)
Expand Down
10 changes: 6 additions & 4 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -97,10 +97,6 @@ Settings

The next lines show de available settings and its default values.

Enable autocompletion tool (work in progress, not enabled yet)::

QBE_AUTOCOMPLETE = True

Admin module name to add admin urls in results::

QBE_ADMIN = "admin"
Expand All @@ -113,6 +109,12 @@ Function to control to users with access to QBE::

QBE_ACCESS_FOR = lambda user: user.is_staff

Some options for the query builder form::

QBE_ALIASES = False # It allows to add an alias to a model field
QBE_GROUP_BY = False # It allows to group by in a query
QBE_SHOW_ROW_NUMBER = True # It disables number rows in results

Path to QBE formats export file, in order to add custom export formats::

QBE_FORMATS_EXPORT = "qbe_formats"
Expand Down

0 comments on commit 80933fe

Please sign in to comment.