For releases after 0.4, see the release notes in the docs.
Add extra blocks to order dashboard template.
Extend range of bankcard expiry month field.
Make AbstractStockRecord
abstract (#645)
Fix bug with order dashboard line editing (#622)
Fix bug with order dashboard searching (#587)
Fix dependencies in setup.py
Extend get_class
to support loading from non-Oscar packages
Correct django-haystack in setup.py
Pin django-haystack version as backwards-incompatiable changes are happening
Nano-release to fix logout redirect bug
Nano-release to bump dependency versions.
Quite a big release this one. Several new features have been added since the 0.3 release series:
- Better support for digital products. Additional fields added to product class model.
- HTML editing within the dashboard
- A new email dashboard
- Major refactor of the offers module and test suite
- Product stock alerts: customers can request an alert when when a product comes back into stock
- Customer notifications: an API and inbox for sending users notifications
Four apps have new migrations. If you subclass these apps in your project, you will need to create a new schema migration for each to pick up the upstream changes.
- Basket:
- A
price_excl_tax
has been added tobasket.Line
. This is useful for applications that use dynamic pricing where both the price with and without tax needs to be stored.
- A
- Catalogue:
- A
requires_shipping
field has been added tocatalogue.ProductClass
to facilitate better support for digital products (that don't require shipping). - The
code
field ofcatalogue.Option
now has a unique index.
- A
- Customer:
- New models for stock alerts and notifications
- The
email_subject_template
field fromcustomer.CommunicationEventType
is now nullable.
- Order:
- An
offer_name
field has been added toorder.OrderDiscount
so retain audit information on discounts after offers are deleted.
- An
Please ask on the mailing list if any other problems are encountered.
- Extend number of years in bankcard expiry field
- Fix line-handling bug in order dashboard.
A couple of minor adjustments for Tangent projects
- Add handling of custom redirect after adding to basket
- Add recursive URL decoration
- Rework price lookups in offer calculations (backport of functionality from 0.4)
- Add additional block to profile template
Diff: https://github.com/django-oscar/django-oscar/compare/0.3.3...0.3.4
- Minor bug fixes around category editing and order history.
- Bug fix for basket calculations.
- Bug fix for absolute discount benefit calculations.
- Now including the translation files.
- i18n support added - Oscar now ships with .po files for seven languages. Translation files are welcome.
- Category management added to dashboard
- Some improvements to how group/variant products are handled
- Improved installation process using makefile
There are 3 new migrations in the catalogue app. If you have a local version, you will need to run:
./manage.py schemamigration catalogue --auto
to pick up the changes in Oscar's catalogue app.
A new setting OSCAR_MAIN_TEMPLATE_DIR
has been introduced
as the template structure has been altered. This requires your
TEMPLATE_DIRS
setting to be altered to include this folder, eg:
from oscar import OSCAR_MAIN_TEMPLATE_DIR TEMPLATE_DIRS = ( location('templates'), OSCAR_MAIN_TEMPLATE_DIR )
If you want to extend one of Oscar's templates, then use:
# base.html {% extends 'oscar/base.html' %}
instead of:
# base.html {% extends 'templates/base.html' %}
Fixes a bug with applying absolute-discount benefits
Mainly small bug-fixes to templates and javascript.
Many components have been rewritten since 0.1 - Oscar is much more of a complete package now. New features include:
- Dashboard for managing catalogue, offers, stock, vouchers and more. This includes statistics pages to track performance.
- Sample templates, CSS and JS to get a shop up and running in a minutes.
- Updated documentation.
- Reworking of shipping methods.
- Automatic up-selling on the basket page. We now inform the user if they partially qualify for an offer.
The documentation still needs more work which we'll do over the next week or two.
- Initial release - used in production by two major applications at Tangent but still quite rough around the edges. Many features were implemented directly in the applications rather than using a feature from oscar.
- Docs are a bit stale and need updating in 0.2