Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

CHANGELOG.rst 1.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. =========
  2. Changelog
  3. =========
  4. 0.3
  5. ~~~
  6. **Important** - A new setting ``OSCAR_MAIN_TEMPLATE_DIR`` has been introduced
  7. as the template structure has been altered. This requires your
  8. ``TEMPLATE_DIRS`` setting to be altered to include this folder, eg::
  9. from oscar import OSCAR_MAIN_TEMPLATE_DIR
  10. TEMPLATE_DIRS = (
  11. location('templates'),
  12. OSCAR_MAIN_TEMPLATE_DIR
  13. )
  14. If you want to extend one of Oscar's templates, then use::
  15. # base.html
  16. {% extends 'oscar/base.html' %}
  17. instead of::
  18. # base.html
  19. {% extends 'templates/base.html' %}
  20. * Category management added to dashboard
  21. * Some improvements to how group/variant products are handled
  22. 0.2.1 - 09 July 2012
  23. ~~~~~~~~~~~~~~~~~~~~
  24. Mainly small bug-fixes to templates and javascript.
  25. 0.2 - 01 June 2012
  26. ~~~~~~~~~~~~~~~~~~
  27. Many components have been rewritten since 0.1 - Oscar is much more of a complete
  28. package now. New features include:
  29. * Dashboard for managing catalogue, offers, stock, vouchers and more. This includes
  30. statistics pages to track performance.
  31. * Sample templates, CSS and JS to get a shop up and running in a minutes.
  32. * Updated documentation.
  33. * Reworking of shipping methods.
  34. * Automatic up-selling on the basket page. We now inform the user if they
  35. partially qualify for an offer.
  36. The documentation still needs more work which we'll do over the next week or
  37. two.
  38. 0.1
  39. ~~~
  40. * Initial release - used in production by two major applications at Tangent but
  41. still quite rough around the edges. Many features were implemented directly
  42. in the applications rather than using a feature from oscar.
  43. * Docs are a bit stale and need updating in 0.2