diff --git a/AUTHORS.txt b/AUTHORS.txt index a818775..d307706 100644 --- a/AUTHORS.txt +++ b/AUTHORS.txt @@ -5,11 +5,13 @@ The PRIMARY AUTHORS are (ordered by aproximated LOC number): APPRECIATED CONTRIBUTORS: - * Lorenzo Gil , adding the setuptools support: https://github.com/versae/qbe/pull/1 - * Patrick Taylor for reporting problems with the license. - * Sebastián Magrí for reporting bugs. - * Fidel Ramos for compatibility code with Django 1.3 static files: https://github.com/versae/qbe/pull/11 - * Olivier Larchevêque 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: diff --git a/CHANGES.txt b/CHANGES.txt index 7f411ae..38ad69f 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -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) diff --git a/README.rst b/README.rst index cbd05fa..bf269a3 100644 --- a/README.rst +++ b/README.rst @@ -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" @@ -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"