spree 0.11.0 → 0.11.1
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of spree might be problematic. Click here for more details.
- data/CHANGELOG +457 -425
- data/{README.markdown → README.md} +4 -0
- data/Rakefile +2 -2
- data/app/controllers/admin/adjustments_controller.rb +8 -9
- data/app/controllers/admin/checkouts_controller.rb +10 -2
- data/app/controllers/admin/line_items_controller.rb +0 -1
- data/app/controllers/admin/payments_controller.rb +8 -7
- data/app/controllers/admin/shipments_controller.rb +1 -1
- data/app/controllers/checkouts_controller.rb +16 -5
- data/app/controllers/spree/base_controller.rb +2 -2
- data/app/helpers/admin/navigation_helper.rb +1 -1
- data/app/helpers/checkouts_helper.rb +1 -1
- data/app/helpers/products_helper.rb +1 -1
- data/app/helpers/taxons_helper.rb +1 -1
- data/app/models/address.rb +9 -0
- data/app/models/checkout.rb +13 -7
- data/app/models/creditcard.rb +2 -2
- data/app/models/model_cache_cleaner.rb +13 -0
- data/app/models/order.rb +6 -8
- data/app/models/payment.rb +18 -17
- data/app/models/payment_method.rb +2 -2
- data/app/models/product.rb +1 -2
- data/app/models/return_authorization.rb +3 -1
- data/app/models/shipping_method.rb +16 -6
- data/app/models/zone.rb +34 -3
- data/config/database.yml +4 -21
- data/config/environment.rb +6 -6
- data/config/environments/test.rb +1 -0
- data/config/locales/en_spree.yml +10 -9
- data/db/migrate/20100624110730_add_display_to_shipping_methods.rb +9 -0
- data/db/migrate/20100624123336_rename_payment_method_display.rb +9 -0
- data/db/sample/orders.yml +3 -3
- data/db/sample/payments.rb +6 -5
- data/db/sample/products.rb +2 -2
- data/db/schema.rb +9 -27
- data/lib/easy_role_requirement_system.rb +1 -1
- data/lib/generators/extension/extension_generator.rb +7 -22
- data/lib/generators/extension/templates/functional_test.rb +1 -1
- data/lib/generators/extension/templates/tasks.rake +2 -2
- data/lib/generators/extension_controller/extension_controller_generator.rb +1 -1
- data/lib/generators/extension_model/extension_model_generator.rb +1 -1
- data/lib/generators/instance/instance_generator.rb +24 -24
- data/lib/generators/instance/templates/instance_generate +1 -1
- data/lib/generators/theme/theme_generator.rb +6 -10
- data/lib/plugins/extension_patches/lib/asset_copy.rb +2 -2
- data/lib/spree.rb +1 -1
- data/lib/spree/initializer.rb +15 -15
- data/lib/spree/search.rb +1 -1
- data/lib/tasks/cucumber.rake +1 -1
- data/lib/tasks/extensions.rake +6 -6
- data/lib/tasks/framework.rake +1 -1
- data/lib/tasks/instance.rake +6 -6
- data/lib/validation_group.rb +16 -16
- data/script/extension +2 -2
- data/test/functional/products_controller_test.rb +13 -0
- data/test/test_helper.rb +1 -1
- data/test/unit/checkout_test.rb +18 -9
- data/vendor/extensions/README +1 -1
- data/vendor/extensions/api/Rakefile +2 -2
- data/vendor/extensions/api/lib/tasks/api_extension_tasks.rake +2 -2
- data/vendor/extensions/overview_dashboard/Rakefile +2 -2
- data/vendor/extensions/overview_dashboard/app/views/admin/overview/index.html.erb +5 -5
- data/vendor/extensions/overview_dashboard/lib/tasks/overview_dashboard_extension_tasks.rake +2 -2
- data/vendor/extensions/payment_gateway/Rakefile +2 -2
- data/vendor/extensions/payment_gateway/app/models/gateway/authorize_net_cim.rb +6 -2
- data/vendor/extensions/payment_gateway/app/models/gateway/braintree.rb +88 -0
- data/vendor/extensions/payment_gateway/config/locales/en.yml +2 -1
- data/vendor/extensions/payment_gateway/lib/active_merchant/billing/authorize_net_cim.rb +4 -2
- data/vendor/extensions/payment_gateway/lib/spree/payment_gateway.rb +1 -1
- data/vendor/extensions/payment_gateway/lib/tasks/payment_gateway_extension_tasks.rake +2 -2
- data/vendor/extensions/payment_gateway/payment_gateway_extension.rb +1 -0
- data/vendor/extensions/payment_gateway/test/unit/authorize_net_cim_test.rb +2 -1
- data/vendor/extensions/payment_gateway/test/unit/braintree_test.rb +200 -0
- data/vendor/extensions/theme_default/Rakefile +2 -2
- data/vendor/extensions/theme_default/app/stylesheets/_buttons.less +7 -2
- data/vendor/extensions/theme_default/app/stylesheets/_colors.less +1 -1
- data/vendor/extensions/theme_default/app/stylesheets/_layout.less +7 -2
- data/vendor/extensions/theme_default/app/views/admin/payment_methods/_form.html.erb +3 -4
- data/vendor/extensions/theme_default/app/views/admin/payment_methods/index.html.erb +1 -1
- data/vendor/extensions/theme_default/app/views/admin/shared/_additional_field.html.erb +1 -1
- data/vendor/extensions/theme_default/app/views/admin/shared/_calculator_fields.html.erb +6 -6
- data/vendor/extensions/theme_default/app/views/admin/shared/_configuration_menu.html.erb +13 -13
- data/vendor/extensions/theme_default/app/views/admin/shared/_product_tabs.html.erb +1 -1
- data/vendor/extensions/theme_default/app/views/admin/shipping_methods/_form.html.erb +6 -0
- data/vendor/extensions/theme_default/app/views/admin/shipping_methods/index.html.erb +2 -0
- data/vendor/extensions/theme_default/app/views/checkouts/_address.html.erb +7 -9
- data/vendor/extensions/theme_default/app/views/checkouts/_payment.html.erb +4 -4
- data/vendor/extensions/theme_default/app/views/checkouts/_summary.html.erb +4 -4
- data/vendor/extensions/theme_default/app/views/layouts/admin.html.erb +36 -35
- data/vendor/extensions/theme_default/app/views/products/_thumbnails.html.erb +1 -1
- data/vendor/extensions/theme_default/app/views/shared/_head.html.erb +2 -2
- data/vendor/extensions/theme_default/app/views/shared/_products.html.erb +1 -1
- data/vendor/extensions/theme_default/app/views/states/index.js.erb +1 -1
- data/vendor/extensions/theme_default/lib/tasks/theme_default_extension_tasks.rake +2 -2
- data/vendor/extensions/theme_default/public/favicon.ico +0 -0
- data/vendor/extensions/theme_default/public/images/admin/bg/header.png +0 -0
- data/vendor/extensions/theme_default/public/javascripts/calculator.js +3 -1
- data/vendor/extensions/theme_default/public/javascripts/checkout.js +44 -18
- data/vendor/extensions/theme_default/public/stylesheets/admin/admin.css +29 -24
- data/vendor/extensions/theme_default/public/stylesheets/screen.css +9 -7
- data/vendor/plugins/attribute_fu/init.rb +2 -2
- data/vendor/plugins/delegate_belongs_to/spec/spec_helper.rb +1 -1
- data/vendor/plugins/jrails/install.rb +1 -1
- data/vendor/plugins/jrails/lib/tasks/jrails.rake +2 -2
- data/vendor/plugins/jrails_auto_complete/install.rb +1 -1
- data/vendor/plugins/jrails_auto_complete/uninstall.rb +1 -1
- data/vendor/plugins/open_id_authentication/lib/open_id_authentication.rb +1 -1
- metadata +59 -659
- data/lib/generators/extension/templates/RSpecRakefile +0 -137
- data/lib/generators/extension/templates/spec.opts +0 -6
- data/lib/generators/extension/templates/spec_helper.rb +0 -37
- data/lib/generators/extension_controller/templates/controller_spec.rb +0 -23
- data/lib/generators/extension_controller/templates/helper_spec.rb +0 -11
- data/lib/generators/extension_controller/templates/view_spec.rb +0 -12
- data/lib/generators/extension_model/templates/model_spec.rb +0 -11
- data/lib/tasks/rspec.rake +0 -182
- data/public/images/add-to-cart.png +0 -0
- data/public/images/admin/bg/active-tab.png +0 -0
- data/public/images/admin/bg/admin_tab_back.png +0 -0
- data/public/images/admin/bg/admin_tab_selected_back.png +0 -0
- data/public/images/admin/bg/content-back-blue.png +0 -0
- data/public/images/admin/bg/content-back-green.png +0 -0
- data/public/images/admin/bg/content-back.png +0 -0
- data/public/images/admin/bg/flash-error.png +0 -0
- data/public/images/admin/bg/flash-notice.png +0 -0
- data/public/images/admin/bg/green-stripes.gif +0 -0
- data/public/images/admin/bg/green-stripes.png +0 -0
- data/public/images/admin/bg/grid_header_back.png +0 -0
- data/public/images/admin/bg/grid_header_back_green.png +0 -0
- data/public/images/admin/bg/header-bg.png +0 -0
- data/public/images/admin/bg/header_bg.jpg +0 -0
- data/public/images/admin/bg/menu-current.png +0 -0
- data/public/images/admin/bg/red-stripes.gif +0 -0
- data/public/images/admin/bg/red-stripes.png +0 -0
- data/public/images/admin/bg/spree_50.png +0 -0
- data/public/images/admin/bg/subnav-divider.png +0 -0
- data/public/images/admin/bg/subnav.png +0 -0
- data/public/images/admin/bg/tab-back.png +0 -0
- data/public/images/admin/buttons/blue/left_01.png +0 -0
- data/public/images/admin/buttons/blue/right_01.png +0 -0
- data/public/images/admin/buttons/drag-handle-green.png +0 -0
- data/public/images/admin/buttons/green/left_01.png +0 -0
- data/public/images/admin/buttons/green/right_01.png +0 -0
- data/public/images/admin/buttons/left_01.png +0 -0
- data/public/images/admin/buttons/left_01_small.png +0 -0
- data/public/images/admin/buttons/orange/left_03.png +0 -0
- data/public/images/admin/buttons/orange/right_03.png +0 -0
- data/public/images/admin/buttons/right_01.png +0 -0
- data/public/images/admin/buttons/right_01_small.png +0 -0
- data/public/images/admin/icons/16x16/1.png +0 -0
- data/public/images/admin/icons/16x16/10.png +0 -0
- data/public/images/admin/icons/16x16/2.png +0 -0
- data/public/images/admin/icons/16x16/3.png +0 -0
- data/public/images/admin/icons/16x16/4.png +0 -0
- data/public/images/admin/icons/16x16/5.png +0 -0
- data/public/images/admin/icons/16x16/6.png +0 -0
- data/public/images/admin/icons/16x16/7.png +0 -0
- data/public/images/admin/icons/16x16/8.png +0 -0
- data/public/images/admin/icons/16x16/9.png +0 -0
- data/public/images/admin/icons/32x32/1.png +0 -0
- data/public/images/admin/icons/32x32/10.png +0 -0
- data/public/images/admin/icons/32x32/11.png +0 -0
- data/public/images/admin/icons/32x32/2.png +0 -0
- data/public/images/admin/icons/32x32/3.png +0 -0
- data/public/images/admin/icons/32x32/4.png +0 -0
- data/public/images/admin/icons/32x32/5.png +0 -0
- data/public/images/admin/icons/32x32/6.png +0 -0
- data/public/images/admin/icons/32x32/7.png +0 -0
- data/public/images/admin/icons/32x32/8.png +0 -0
- data/public/images/admin/icons/32x32/9.png +0 -0
- data/public/images/admin/icons/accept.png +0 -0
- data/public/images/admin/icons/add.gif +0 -0
- data/public/images/admin/icons/add.png +0 -0
- data/public/images/admin/icons/arrow-down.gif +0 -0
- data/public/images/admin/icons/cross.png +0 -0
- data/public/images/admin/icons/delete.gif +0 -0
- data/public/images/admin/icons/delete.png +0 -0
- data/public/images/admin/icons/drag.gif +0 -0
- data/public/images/admin/icons/edit.gif +0 -0
- data/public/images/admin/icons/edit.png +0 -0
- data/public/images/admin/icons/email.png +0 -0
- data/public/images/admin/icons/error.png +0 -0
- data/public/images/admin/icons/exclamation.png +0 -0
- data/public/images/admin/icons/feed.png +0 -0
- data/public/images/admin/icons/pdf.png +0 -0
- data/public/images/admin/icons/reorder.gif +0 -0
- data/public/images/admin/icons/search.gif +0 -0
- data/public/images/admin/icons/send-email.png +0 -0
- data/public/images/admin/icons/stop.png +0 -0
- data/public/images/admin/icons/tick.png +0 -0
- data/public/images/admin/icons/up.gif +0 -0
- data/public/images/admin/icons/xls.png +0 -0
- data/public/images/admin/tabs/off-left.png +0 -0
- data/public/images/admin/tabs/off-right.png +0 -0
- data/public/images/admin/tabs/on-left.png +0 -0
- data/public/images/admin/tabs/on-right.png +0 -0
- data/public/images/ajax_loader.gif +0 -0
- data/public/images/amex_cid.gif +0 -0
- data/public/images/bg-button-hover.png +0 -0
- data/public/images/bg-button-pressed.png +0 -0
- data/public/images/bg-button.gif +0 -0
- data/public/images/bg-button.png +0 -0
- data/public/images/blue/left_01.png +0 -0
- data/public/images/blue/right_01.png +0 -0
- data/public/images/body-back.png +0 -0
- data/public/images/bottom_shine.png +0 -0
- data/public/images/breadcrumb.gif +0 -0
- data/public/images/button-dark-hover.png +0 -0
- data/public/images/button-dark.png +0 -0
- data/public/images/buttons/bg-button-hover.png +0 -0
- data/public/images/buttons/bg-button-pressed.png +0 -0
- data/public/images/buttons/bg-button.gif +0 -0
- data/public/images/buttons/bg-button.png +0 -0
- data/public/images/buttons/blue/left_01.png +0 -0
- data/public/images/buttons/blue/right_01.png +0 -0
- data/public/images/buttons/button-dark-hover.png +0 -0
- data/public/images/buttons/button-dark.png +0 -0
- data/public/images/buttons/drag-handle-green.png +0 -0
- data/public/images/buttons/green/left_01.png +0 -0
- data/public/images/buttons/green/right_01.png +0 -0
- data/public/images/buttons/left_01.png +0 -0
- data/public/images/buttons/left_01_small.png +0 -0
- data/public/images/buttons/orange/left_03.png +0 -0
- data/public/images/buttons/orange/right_03.png +0 -0
- data/public/images/buttons/right_01.png +0 -0
- data/public/images/buttons/right_01_small.png +0 -0
- data/public/images/buttons/sxsw-ribbon-v1.png +0 -0
- data/public/images/buttons/top-shine.png +0 -0
- data/public/images/calendar_date_select/calendar.gif +0 -0
- data/public/images/cart-empty.png +0 -0
- data/public/images/cart-empty_x32.png +0 -0
- data/public/images/cart-full.png +0 -0
- data/public/images/cart-full_x32.png +0 -0
- data/public/images/checkout.png +0 -0
- data/public/images/creditcard.gif +0 -0
- data/public/images/datepicker/backstripes.gif +0 -0
- data/public/images/datepicker/bg_header.jpg +0 -0
- data/public/images/datepicker/bullet1.gif +0 -0
- data/public/images/datepicker/bullet2.gif +0 -0
- data/public/images/datepicker/cal.gif +0 -0
- data/public/images/datepicker/gradient-e5e5e5-ffffff.gif +0 -0
- data/public/images/discover_cid.gif +0 -0
- data/public/images/drag-handle-green.png +0 -0
- data/public/images/flags/ad.png +0 -0
- data/public/images/flags/ae.png +0 -0
- data/public/images/flags/af.png +0 -0
- data/public/images/flags/ag.png +0 -0
- data/public/images/flags/ai.png +0 -0
- data/public/images/flags/al.png +0 -0
- data/public/images/flags/am.png +0 -0
- data/public/images/flags/an.png +0 -0
- data/public/images/flags/ao.png +0 -0
- data/public/images/flags/ar.png +0 -0
- data/public/images/flags/as.png +0 -0
- data/public/images/flags/at.png +0 -0
- data/public/images/flags/au.png +0 -0
- data/public/images/flags/aw.png +0 -0
- data/public/images/flags/ax.png +0 -0
- data/public/images/flags/az.png +0 -0
- data/public/images/flags/ba.png +0 -0
- data/public/images/flags/bb.png +0 -0
- data/public/images/flags/bd.png +0 -0
- data/public/images/flags/be.png +0 -0
- data/public/images/flags/bf.png +0 -0
- data/public/images/flags/bg.png +0 -0
- data/public/images/flags/bh.png +0 -0
- data/public/images/flags/bi.png +0 -0
- data/public/images/flags/bj.png +0 -0
- data/public/images/flags/bm.png +0 -0
- data/public/images/flags/bn.png +0 -0
- data/public/images/flags/bo.png +0 -0
- data/public/images/flags/br.png +0 -0
- data/public/images/flags/bs.png +0 -0
- data/public/images/flags/bt.png +0 -0
- data/public/images/flags/bv.png +0 -0
- data/public/images/flags/bw.png +0 -0
- data/public/images/flags/by.png +0 -0
- data/public/images/flags/bz.png +0 -0
- data/public/images/flags/ca.png +0 -0
- data/public/images/flags/catalonia.png +0 -0
- data/public/images/flags/cc.png +0 -0
- data/public/images/flags/cd.png +0 -0
- data/public/images/flags/cf.png +0 -0
- data/public/images/flags/cg.png +0 -0
- data/public/images/flags/ch.png +0 -0
- data/public/images/flags/ci.png +0 -0
- data/public/images/flags/ck.png +0 -0
- data/public/images/flags/cl.png +0 -0
- data/public/images/flags/cm.png +0 -0
- data/public/images/flags/cn.png +0 -0
- data/public/images/flags/co.png +0 -0
- data/public/images/flags/cr.png +0 -0
- data/public/images/flags/cs.png +0 -0
- data/public/images/flags/cu.png +0 -0
- data/public/images/flags/cv.png +0 -0
- data/public/images/flags/cx.png +0 -0
- data/public/images/flags/cy.png +0 -0
- data/public/images/flags/cz.png +0 -0
- data/public/images/flags/da.png +0 -0
- data/public/images/flags/de.png +0 -0
- data/public/images/flags/de_CH.png +0 -0
- data/public/images/flags/dj.png +0 -0
- data/public/images/flags/dm.png +0 -0
- data/public/images/flags/do.png +0 -0
- data/public/images/flags/dz.png +0 -0
- data/public/images/flags/ec.png +0 -0
- data/public/images/flags/ee.png +0 -0
- data/public/images/flags/eg.png +0 -0
- data/public/images/flags/eh.png +0 -0
- data/public/images/flags/england.png +0 -0
- data/public/images/flags/er.png +0 -0
- data/public/images/flags/es.png +0 -0
- data/public/images/flags/et.png +0 -0
- data/public/images/flags/europeanunion.png +0 -0
- data/public/images/flags/fam.png +0 -0
- data/public/images/flags/fi.png +0 -0
- data/public/images/flags/fj.png +0 -0
- data/public/images/flags/fk.png +0 -0
- data/public/images/flags/fm.png +0 -0
- data/public/images/flags/fo.png +0 -0
- data/public/images/flags/fr.png +0 -0
- data/public/images/flags/ga.png +0 -0
- data/public/images/flags/gb.png +0 -0
- data/public/images/flags/gd.png +0 -0
- data/public/images/flags/ge.png +0 -0
- data/public/images/flags/gf.png +0 -0
- data/public/images/flags/gh.png +0 -0
- data/public/images/flags/gi.png +0 -0
- data/public/images/flags/gl.png +0 -0
- data/public/images/flags/gm.png +0 -0
- data/public/images/flags/gn.png +0 -0
- data/public/images/flags/gp.png +0 -0
- data/public/images/flags/gq.png +0 -0
- data/public/images/flags/gr.png +0 -0
- data/public/images/flags/gs.png +0 -0
- data/public/images/flags/gt.png +0 -0
- data/public/images/flags/gu.png +0 -0
- data/public/images/flags/gw.png +0 -0
- data/public/images/flags/gy.png +0 -0
- data/public/images/flags/hk.png +0 -0
- data/public/images/flags/hm.png +0 -0
- data/public/images/flags/hn.png +0 -0
- data/public/images/flags/hr.png +0 -0
- data/public/images/flags/ht.png +0 -0
- data/public/images/flags/hu.png +0 -0
- data/public/images/flags/id.png +0 -0
- data/public/images/flags/ie.png +0 -0
- data/public/images/flags/il.png +0 -0
- data/public/images/flags/in.png +0 -0
- data/public/images/flags/io.png +0 -0
- data/public/images/flags/iq.png +0 -0
- data/public/images/flags/ir.png +0 -0
- data/public/images/flags/is.png +0 -0
- data/public/images/flags/it.png +0 -0
- data/public/images/flags/jm.png +0 -0
- data/public/images/flags/jo.png +0 -0
- data/public/images/flags/jp.png +0 -0
- data/public/images/flags/ke.png +0 -0
- data/public/images/flags/kg.png +0 -0
- data/public/images/flags/kh.png +0 -0
- data/public/images/flags/ki.png +0 -0
- data/public/images/flags/km.png +0 -0
- data/public/images/flags/kn.png +0 -0
- data/public/images/flags/kp.png +0 -0
- data/public/images/flags/kr.png +0 -0
- data/public/images/flags/kw.png +0 -0
- data/public/images/flags/ky.png +0 -0
- data/public/images/flags/kz.png +0 -0
- data/public/images/flags/la.png +0 -0
- data/public/images/flags/lb.png +0 -0
- data/public/images/flags/lc.png +0 -0
- data/public/images/flags/li.png +0 -0
- data/public/images/flags/lk.png +0 -0
- data/public/images/flags/lr.png +0 -0
- data/public/images/flags/ls.png +0 -0
- data/public/images/flags/lt.png +0 -0
- data/public/images/flags/lu.png +0 -0
- data/public/images/flags/lv.png +0 -0
- data/public/images/flags/ly.png +0 -0
- data/public/images/flags/ma.png +0 -0
- data/public/images/flags/mc.png +0 -0
- data/public/images/flags/md.png +0 -0
- data/public/images/flags/me.png +0 -0
- data/public/images/flags/mg.png +0 -0
- data/public/images/flags/mh.png +0 -0
- data/public/images/flags/mk.png +0 -0
- data/public/images/flags/ml.png +0 -0
- data/public/images/flags/mm.png +0 -0
- data/public/images/flags/mn.png +0 -0
- data/public/images/flags/mo.png +0 -0
- data/public/images/flags/mp.png +0 -0
- data/public/images/flags/mq.png +0 -0
- data/public/images/flags/mr.png +0 -0
- data/public/images/flags/ms.png +0 -0
- data/public/images/flags/mt.png +0 -0
- data/public/images/flags/mu.png +0 -0
- data/public/images/flags/mv.png +0 -0
- data/public/images/flags/mw.png +0 -0
- data/public/images/flags/mx.png +0 -0
- data/public/images/flags/my.png +0 -0
- data/public/images/flags/mz.png +0 -0
- data/public/images/flags/na.png +0 -0
- data/public/images/flags/nc.png +0 -0
- data/public/images/flags/ne.png +0 -0
- data/public/images/flags/nf.png +0 -0
- data/public/images/flags/ng.png +0 -0
- data/public/images/flags/ni.png +0 -0
- data/public/images/flags/nl.png +0 -0
- data/public/images/flags/no.png +0 -0
- data/public/images/flags/np.png +0 -0
- data/public/images/flags/nr.png +0 -0
- data/public/images/flags/nu.png +0 -0
- data/public/images/flags/nz.png +0 -0
- data/public/images/flags/om.png +0 -0
- data/public/images/flags/pa.png +0 -0
- data/public/images/flags/pe.png +0 -0
- data/public/images/flags/pf.png +0 -0
- data/public/images/flags/pg.png +0 -0
- data/public/images/flags/ph.png +0 -0
- data/public/images/flags/pk.png +0 -0
- data/public/images/flags/pl.png +0 -0
- data/public/images/flags/pm.png +0 -0
- data/public/images/flags/pn.png +0 -0
- data/public/images/flags/pr.png +0 -0
- data/public/images/flags/ps.png +0 -0
- data/public/images/flags/pt.png +0 -0
- data/public/images/flags/pw.png +0 -0
- data/public/images/flags/py.png +0 -0
- data/public/images/flags/qa.png +0 -0
- data/public/images/flags/re.png +0 -0
- data/public/images/flags/ro.png +0 -0
- data/public/images/flags/rs.png +0 -0
- data/public/images/flags/ru.png +0 -0
- data/public/images/flags/rw.png +0 -0
- data/public/images/flags/sa.png +0 -0
- data/public/images/flags/sb.png +0 -0
- data/public/images/flags/sc.png +0 -0
- data/public/images/flags/scotland.png +0 -0
- data/public/images/flags/sd.png +0 -0
- data/public/images/flags/se.png +0 -0
- data/public/images/flags/sg.png +0 -0
- data/public/images/flags/sh.png +0 -0
- data/public/images/flags/si.png +0 -0
- data/public/images/flags/sj.png +0 -0
- data/public/images/flags/sk.png +0 -0
- data/public/images/flags/sl.png +0 -0
- data/public/images/flags/sm.png +0 -0
- data/public/images/flags/sn.png +0 -0
- data/public/images/flags/so.png +0 -0
- data/public/images/flags/sr.png +0 -0
- data/public/images/flags/st.png +0 -0
- data/public/images/flags/sv.png +0 -0
- data/public/images/flags/sy.png +0 -0
- data/public/images/flags/sz.png +0 -0
- data/public/images/flags/tc.png +0 -0
- data/public/images/flags/td.png +0 -0
- data/public/images/flags/tf.png +0 -0
- data/public/images/flags/tg.png +0 -0
- data/public/images/flags/th.png +0 -0
- data/public/images/flags/tj.png +0 -0
- data/public/images/flags/tk.png +0 -0
- data/public/images/flags/tl.png +0 -0
- data/public/images/flags/tm.png +0 -0
- data/public/images/flags/tn.png +0 -0
- data/public/images/flags/to.png +0 -0
- data/public/images/flags/tr.png +0 -0
- data/public/images/flags/tt.png +0 -0
- data/public/images/flags/tv.png +0 -0
- data/public/images/flags/tw.png +0 -0
- data/public/images/flags/tz.png +0 -0
- data/public/images/flags/ua.png +0 -0
- data/public/images/flags/ug.png +0 -0
- data/public/images/flags/um.png +0 -0
- data/public/images/flags/us.png +0 -0
- data/public/images/flags/uy.png +0 -0
- data/public/images/flags/uz.png +0 -0
- data/public/images/flags/va.png +0 -0
- data/public/images/flags/vc.png +0 -0
- data/public/images/flags/ve.png +0 -0
- data/public/images/flags/vg.png +0 -0
- data/public/images/flags/vi.png +0 -0
- data/public/images/flags/vn.png +0 -0
- data/public/images/flags/vu.png +0 -0
- data/public/images/flags/wales.png +0 -0
- data/public/images/flags/wf.png +0 -0
- data/public/images/flags/ws.png +0 -0
- data/public/images/flags/ye.png +0 -0
- data/public/images/flags/yt.png +0 -0
- data/public/images/flags/za.png +0 -0
- data/public/images/flags/zm.png +0 -0
- data/public/images/flags/zw.png +0 -0
- data/public/images/green/left_01.png +0 -0
- data/public/images/green/right_01.png +0 -0
- data/public/images/grid.png +0 -0
- data/public/images/left_01.png +0 -0
- data/public/images/left_01_small.png +0 -0
- data/public/images/master_cid.jpg +0 -0
- data/public/images/menu-current.png +0 -0
- data/public/images/menu-hover.png +0 -0
- data/public/images/noimage/mini.jpg +0 -0
- data/public/images/noimage/product.jpg +0 -0
- data/public/images/noimage/small.jpg +0 -0
- data/public/images/openid-inputicon.gif +0 -0
- data/public/images/orange/left_03.png +0 -0
- data/public/images/orange/right_03.png +0 -0
- data/public/images/progress.gif +0 -0
- data/public/images/rails.png +0 -0
- data/public/images/right_01.png +0 -0
- data/public/images/right_01_small.png +0 -0
- data/public/images/separator.png +0 -0
- data/public/images/shadow-top.png +0 -0
- data/public/images/shadow_top.png +0 -0
- data/public/images/spinner.gif +0 -0
- data/public/images/spree.jpg +0 -0
- data/public/images/spree/progress.gif +0 -0
- data/public/images/spree/spinner.gif +0 -0
- data/public/images/spree/spree.jpg +0 -0
- data/public/images/step-progress/completed-completed.gif +0 -0
- data/public/images/step-progress/completed-current.gif +0 -0
- data/public/images/step-progress/completed-first.gif +0 -0
- data/public/images/step-progress/current-first.gif +0 -0
- data/public/images/step-progress/current-incomplete.gif +0 -0
- data/public/images/step-progress/current-right.gif +0 -0
- data/public/images/step-progress/incomplete-incomplete.gif +0 -0
- data/public/images/step-progress/incomplete-right.gif +0 -0
- data/public/images/steps/1.png +0 -0
- data/public/images/steps/1_small.png +0 -0
- data/public/images/steps/2.png +0 -0
- data/public/images/steps/2_small.png +0 -0
- data/public/images/steps/3.png +0 -0
- data/public/images/steps/3_small.png +0 -0
- data/public/images/steps/4.png +0 -0
- data/public/images/steps/4_small.png +0 -0
- data/public/images/steps/5.png +0 -0
- data/public/images/steps/5_small.png +0 -0
- data/public/images/steps/6.png +0 -0
- data/public/images/steps/6_small.png +0 -0
- data/public/images/sxsw-ribbon-v1.png +0 -0
- data/public/images/tab_bottom.gif +0 -0
- data/public/images/tile-header.png +0 -0
- data/public/images/tile-slider.png +0 -0
- data/public/images/top-shine.png +0 -0
- data/public/images/tree-nav-icons/bullet.gif +0 -0
- data/public/images/tree-nav-icons/minus.gif +0 -0
- data/public/images/tree-nav-icons/plus.gif +0 -0
- data/public/images/tree-nav-icons/treeview-loading.gif +0 -0
- data/public/images/tree-nav-icons/treeview-sprite.gif +0 -0
- data/public/images/update.png +0 -0
- data/public/images/visa_cid.gif +0 -0
- data/public/images/wrapper-back-2.png +0 -0
- data/public/images/wrapper-back.png +0 -0
- data/public/images/yui-menubaritem_submenuindicator.png +0 -0
- data/public/images/yui-menubaritem_submenuindicator_disabled.png +0 -0
- data/public/images/yui-menuitem_checkbox.png +0 -0
- data/public/images/yui-menuitem_checkbox_disabled.png +0 -0
- data/public/images/yui-menuitem_submenuindicator.png +0 -0
- data/public/images/yui-menuitem_submenuindicator_disabled.png +0 -0
- data/public/images/yui-sprite.png +0 -0
- data/public/javascripts/additional-methods.js +0 -236
- data/public/javascripts/admin/address_states.js +0 -25
- data/public/javascripts/admin/checkouts/edit.js +0 -129
- data/public/javascripts/admin/orders/edit.js +0 -96
- data/public/javascripts/admin/orders/edit_form.js +0 -17
- data/public/javascripts/admin/payments/new.js +0 -9
- data/public/javascripts/admin/unobtrusive_handlers.js +0 -15
- data/public/javascripts/calculator.js +0 -13
- data/public/javascripts/checkout.js +0 -65
- data/public/javascripts/dashboard.js +0 -143
- data/public/javascripts/datepicker.js +0 -1445
- data/public/javascripts/gateway.js +0 -13
- data/public/javascripts/jqPlot/excanvas.min.js +0 -1
- data/public/javascripts/jqPlot/jquery.jqplot.min.js +0 -14
- data/public/javascripts/jqPlot/plugins/jqplot.canvasAxisLabelRenderer.min.js +0 -14
- data/public/javascripts/jqPlot/plugins/jqplot.canvasAxisTickRenderer.min.js +0 -14
- data/public/javascripts/jqPlot/plugins/jqplot.canvasTextRenderer.min.js +0 -14
- data/public/javascripts/jqPlot/plugins/jqplot.categoryAxisRenderer.min.js +0 -14
- data/public/javascripts/jqPlot/plugins/jqplot.dateAxisRenderer.min.js +0 -14
- data/public/javascripts/jqPlot/plugins/jqplot.highlighter.min.js +0 -14
- data/public/javascripts/jqPlot/plugins/jqplot.pieRenderer.min.js +0 -14
- data/public/javascripts/jquery-1.3.2.min.js +0 -19
- data/public/javascripts/jquery-and-plugins.js +0 -36
- data/public/javascripts/jquery-ui.js +0 -188
- data/public/javascripts/jquery.alerts/images/help.gif +0 -0
- data/public/javascripts/jquery.alerts/images/important.gif +0 -0
- data/public/javascripts/jquery.alerts/images/info.gif +0 -0
- data/public/javascripts/jquery.alerts/images/title.gif +0 -0
- data/public/javascripts/jquery.alerts/jquery.alerts.css +0 -57
- data/public/javascripts/jquery.alerts/jquery.alerts.js +0 -235
- data/public/javascripts/jquery.alerts/jquery.alerts.spree.css +0 -30
- data/public/javascripts/jquery.autocomplete.min.js +0 -13
- data/public/javascripts/jquery.js +0 -19
- data/public/javascripts/jquery.suggest.js +0 -276
- data/public/javascripts/jquery.template.js +0 -255
- data/public/javascripts/jquery.validate.min.js +0 -16
- data/public/javascripts/jrails.autocomplete.js +0 -274
- data/public/javascripts/jrails.js +0 -1
- data/public/javascripts/jsTree/jquery.tree.js +0 -2058
- data/public/javascripts/jsTree/plugins/jquery.tree.contextmenu.js +0 -129
- data/public/javascripts/jsTree/themes/apple/bg.jpg +0 -0
- data/public/javascripts/jsTree/themes/apple/dot_for_ie.gif +0 -0
- data/public/javascripts/jsTree/themes/apple/icons.png +0 -0
- data/public/javascripts/jsTree/themes/apple/style.css +0 -34
- data/public/javascripts/jsTree/themes/apple/throbber.gif +0 -0
- data/public/javascripts/lang/af.js +0 -40
- data/public/javascripts/lang/ar.js +0 -50
- data/public/javascripts/lang/de.js +0 -40
- data/public/javascripts/lang/du.js +0 -40
- data/public/javascripts/lang/en.js +0 -42
- data/public/javascripts/lang/es.js +0 -41
- data/public/javascripts/lang/fi.js +0 -40
- data/public/javascripts/lang/fr.js +0 -44
- data/public/javascripts/lang/gr.js +0 -40
- data/public/javascripts/lang/he.js +0 -49
- data/public/javascripts/lang/it.js +0 -13
- data/public/javascripts/lang/nl.js +0 -40
- data/public/javascripts/lang/no.js +0 -40
- data/public/javascripts/lang/pt.js +0 -50
- data/public/javascripts/lang/ro.js +0 -40
- data/public/javascripts/lang/ru.js +0 -40
- data/public/javascripts/lang/sp.js +0 -40
- data/public/javascripts/lang/sv.js +0 -41
- data/public/javascripts/lang/ua.js +0 -40
- data/public/javascripts/localization/messages_cn.js +0 -24
- data/public/javascripts/localization/messages_cs.js +0 -23
- data/public/javascripts/localization/messages_da.js +0 -21
- data/public/javascripts/localization/messages_de.js +0 -21
- data/public/javascripts/localization/messages_es.js +0 -24
- data/public/javascripts/localization/messages_fr.js +0 -23
- data/public/javascripts/localization/messages_hu.js +0 -21
- data/public/javascripts/localization/messages_it.js +0 -26
- data/public/javascripts/localization/messages_kk.js +0 -23
- data/public/javascripts/localization/messages_nl.js +0 -23
- data/public/javascripts/localization/messages_no.js +0 -23
- data/public/javascripts/localization/messages_pl.js +0 -23
- data/public/javascripts/localization/messages_ptbr.js +0 -30
- data/public/javascripts/localization/messages_ro.js +0 -24
- data/public/javascripts/localization/messages_ru.js +0 -23
- data/public/javascripts/localization/messages_se.js +0 -23
- data/public/javascripts/localization/messages_sk.js +0 -21
- data/public/javascripts/localization/messages_tr.js +0 -24
- data/public/javascripts/localization/messages_tw.js +0 -24
- data/public/javascripts/localization/messages_ua.js +0 -24
- data/public/javascripts/nested-attribute.js +0 -25
- data/public/javascripts/open_id.js +0 -15
- data/public/javascripts/product.js +0 -49
- data/public/javascripts/spree.js +0 -53
- data/public/javascripts/taxonomy.js +0 -196
- data/public/javascripts/zone.js +0 -40
- data/public/stylesheets/admin/admin-forms.css +0 -159
- data/public/stylesheets/admin/admin-reset.css +0 -67
- data/public/stylesheets/admin/admin-tables.css +0 -39
- data/public/stylesheets/admin/admin-typography.css +0 -117
- data/public/stylesheets/admin/admin.css +0 -571
- data/public/stylesheets/admin/dashboard.css +0 -143
- data/public/stylesheets/admin/edit_checkouts.css +0 -57
- data/public/stylesheets/admin/edit_orders.css +0 -65
- data/public/stylesheets/admin/grids.css +0 -314
- data/public/stylesheets/admin/reset-fonts-grids-2-6-0.css +0 -7
- data/public/stylesheets/admin/yui-includes.css +0 -14
- data/public/stylesheets/datepicker.css +0 -263
- data/public/stylesheets/jquery.autocomplete.css +0 -48
- data/public/stylesheets/scaffold.css +0 -54
- data/public/stylesheets/screen.css +0 -1194
- data/script/autospec +0 -5
- data/script/breakpointer +0 -3
- data/script/performance/request +0 -3
- data/script/spec +0 -5
- data/script/spec_server +0 -125
- data/spec/controllers/admin/configurations_controller_spec.rb +0 -9
- data/spec/controllers/admin/mail_settings_controller_spec.rb +0 -24
- data/spec/controllers/admin/shipping_categories_controller_spec.rb +0 -10
- data/spec/controllers/admin/shipping_methods_controller_spec.rb +0 -10
- data/spec/controllers/countries_controller_spec.rb +0 -24
- data/spec/controllers/orders_controller_spec.rb +0 -35
- data/spec/controllers/products_controller_spec.rb +0 -16
- data/spec/controllers/states_controller_spec.rb +0 -18
- data/spec/controllers/taxons_controller_spec.rb +0 -18
- data/spec/fixtures/app_configurations.yml +0 -7
- data/spec/fixtures/countries.yml +0 -3
- data/spec/fixtures/gateways.yml +0 -8
- data/spec/fixtures/preferences.yml +0 -15
- data/spec/fixtures/roles.yml +0 -2
- data/spec/fixtures/states.yml +0 -2
- data/spec/fixtures/tax_categories.yml +0 -4
- data/spec/fixtures/users.yml +0 -5
- data/spec/fixtures/zone_members.yml +0 -7
- data/spec/fixtures/zones.yml +0 -4
- data/spec/lib/easy_role_requirement_system_spec.rb +0 -140
- data/spec/models/address_spec.rb +0 -79
- data/spec/models/app_configuration_spec.rb +0 -13
- data/spec/models/creditcard_payment_spec.rb +0 -17
- data/spec/models/creditcard_spec.rb +0 -43
- data/spec/models/inventory_unit_spec.rb +0 -18
- data/spec/models/option_type_spec.rb +0 -36
- data/spec/models/option_value_spec.rb +0 -39
- data/spec/models/order_spec.rb +0 -207
- data/spec/models/payment_sepc.rb +0 -29
- data/spec/models/product_option_type_spec.rb +0 -38
- data/spec/models/product_property_spec.rb +0 -29
- data/spec/models/property_spec.rb +0 -37
- data/spec/models/prototype_spec.rb +0 -35
- data/spec/models/shipment_spec.rb +0 -8
- data/spec/models/shipping_category_spec.rb +0 -8
- data/spec/models/shipping_order_spec.rb +0 -113
- data/spec/models/tax_category_spec.rb +0 -11
- data/spec/models/taxon_spec.rb +0 -50
- data/spec/models/taxonomy_spec.rb +0 -37
- data/spec/models/zone_member_spec.rb +0 -5
- data/spec/models/zone_spec.rb +0 -137
- data/spec/rcov.opts +0 -2
- data/spec/spec.opts +0 -4
- data/spec/spec_helper.rb +0 -79
- data/vendor/extensions/overview_dashboard/spec/spec.opts +0 -6
- data/vendor/extensions/overview_dashboard/spec/spec_helper.rb +0 -37
- data/vendor/extensions/payment_gateway/spec/helpers/admin/gateways_helper_spec.rb +0 -6
- data/vendor/extensions/payment_gateway/spec/models/creditcard_spec.rb +0 -15
- data/vendor/extensions/payment_gateway/spec/models/gateway_spec.rb +0 -11
- data/vendor/extensions/payment_gateway/spec/models/order_spec.rb +0 -45
- data/vendor/extensions/payment_gateway/spec/spec.opts +0 -6
- data/vendor/extensions/payment_gateway/spec/spec_helper.rb +0 -37
- data/vendor/extensions/theme_default/spec/spec.opts +0 -6
- data/vendor/extensions/theme_default/spec/spec_helper.rb +0 -37
data/CHANGELOG
CHANGED
@@ -1,3 +1,35 @@
|
|
1
|
+
== 0.11.1
|
2
|
+
|
3
|
+
* # - 818 Migrate taxons to nested set for major performance boost
|
4
|
+
* # - 1303 Taxonomies with no taxons cause NoMethodError
|
5
|
+
* # - 1414 Bump will_paginate to 2.3.12
|
6
|
+
* # - 1439 Bump state_machine to latest version
|
7
|
+
* # - 1452 Extra closing tags in checkouts/_address
|
8
|
+
* # - 1462 Fix path finding for script/extension script
|
9
|
+
* # - 1463 Remove deprecated script/breakpointer
|
10
|
+
* # - 1464 Remove deprecated script/performance/request
|
11
|
+
* # - 1475 Require email address on checkout model
|
12
|
+
* # - 1482 Creditcard model only integer validation is wrong in syntax
|
13
|
+
* # - 1492 no such file to load -- rspec when running the tests
|
14
|
+
* # - 1494 Allow specifying where shipping methods are displayed
|
15
|
+
* # - 1499 Fix escaping HTML issue with rails 2.3.8
|
16
|
+
* # - 1503 Fix admin additional field labels id
|
17
|
+
* # - 1509 Extensions are not being loaded
|
18
|
+
* # - 1515 Shipping Methods mixed up between Country-based zone and State-based zone
|
19
|
+
* # - 1523 error from double submit on checkout payment
|
20
|
+
* # - 1526 Cannot proceed to Delivery Step from Address step if address entry does not meet validation
|
21
|
+
* # - 1534 Backport patches from rails3 branch
|
22
|
+
* # - 1538 Could not use Check payment because validation js of credit card payment
|
23
|
+
* # - 1541 Tidy up admin interface
|
24
|
+
* # - 1572 Checkout validation can raise exception in certain states
|
25
|
+
* # - 1573 Sample payments not capturing properly
|
26
|
+
* # - 1574 Editing a paid order in admin screen can result in incorrect shipment states
|
27
|
+
* # - 1621 Add validationMode support to Gateway::AuthorizeNetCim
|
28
|
+
* # - 1636 Coupon submission destroying payment
|
29
|
+
* # - 1654 RMA number changes when record updated
|
30
|
+
* # - 1658 Credits / Voids can result in invalid order states
|
31
|
+
* # - 1668 Canceled order should allow balance_due or credit_owed state
|
32
|
+
|
1
33
|
== 0.11.0
|
2
34
|
|
3
35
|
* # - 728 ProductsController::change_image method is not in use
|
@@ -41,7 +73,7 @@
|
|
41
73
|
* # - 1358 Move translations into new extension
|
42
74
|
* # - 1361 Wrong translation used to confirm password
|
43
75
|
* # - 1365 Allow specifying where payment methods are displayed
|
44
|
-
* # - 1374 Shipment API calls are not eagerly loading
|
76
|
+
* # - 1374 Shipment API calls are not eagerly loading
|
45
77
|
* # - 1376 Searching for user during admin order can be slow with large datasets
|
46
78
|
* # - 1377 Delete shipment does not unassign inventory units
|
47
79
|
* # - 1378 Allow adjustments to be added to new admin orders
|
@@ -55,7 +87,7 @@
|
|
55
87
|
* # - 1405 Improved staging environment
|
56
88
|
* # - 1406 Improve product search for admin orders
|
57
89
|
* # - 1409 Inventory units are not created / destroyed on admin order edit
|
58
|
-
* # - 1410 Dates change when searching for orders by date ranges
|
90
|
+
* # - 1410 Dates change when searching for orders by date ranges
|
59
91
|
* # - 1412 Document code in app/helpers/admin/base_helper.rb
|
60
92
|
* # - 1413 Upgrade to Rails 2.3.8
|
61
93
|
* # - 1415 Remove RubyGems deprecation warning workaround
|
@@ -64,7 +96,7 @@
|
|
64
96
|
* # - 1425 Promote new Rails2.3.6 way for Flash alert and notice
|
65
97
|
* # - 1430 Add tags, *.swp and rerun.txt to Gitignore
|
66
98
|
* # - 1432 Error when emptying the cart
|
67
|
-
* # - 1434 Escape issues with Rails 2.3.8
|
99
|
+
* # - 1434 Escape issues with Rails 2.3.8
|
68
100
|
* # - 1435 Remove deprecation warnings caused by rake tasks
|
69
101
|
* # - 1436 ruby 1.9.1 i18n wrong argument issue
|
70
102
|
* # - 1438 Cucumber tests can fail with RoR 2.3.8
|
@@ -86,7 +118,7 @@
|
|
86
118
|
* # - 1251 Skip confirmation step if payment profiles are not available
|
87
119
|
* # - 1253 Table variants doesn't exist when bootstrapping with extensions installed that modify the Variant model
|
88
120
|
* # - 1255 Products groups edit error
|
89
|
-
* # - 1257 Coupons do not recalculate credit after redeemed
|
121
|
+
* # - 1257 Coupons do not recalculate credit after redeemed
|
90
122
|
* # - 1261 Type Error when Checkout
|
91
123
|
* # - 1263 Submitting a coupon during the checkout confirmation fails
|
92
124
|
* # - 1269 Orders Overview page breaks when there are no orders in the last 7 days
|
@@ -97,199 +129,199 @@
|
|
97
129
|
* # - 1209 Ruby Gems Warning (reverted this fix - RubyGems 1.3.6 is now required again)
|
98
130
|
* # - 1245 payment_gateway extension fails to load in production when spree is gemified
|
99
131
|
* # - 759 Error with creating admin user during bootstrap: unknown attribute: password_confirmation (Fixed in production mode)
|
100
|
-
|
132
|
+
|
101
133
|
== 0.10.0
|
102
134
|
|
103
|
-
* # - 16
|
104
|
-
* # - 188
|
105
|
-
* # - 247
|
106
|
-
* # - 301
|
107
|
-
* # - 316
|
108
|
-
* # - 320
|
109
|
-
* # - 361
|
110
|
-
* # - 373
|
111
|
-
* # - 503
|
112
|
-
* # - 517
|
113
|
-
* # - 576
|
114
|
-
* # - 586
|
115
|
-
* # - 595
|
116
|
-
* # - 598
|
117
|
-
* # - 602
|
118
|
-
* # - 607
|
119
|
-
* # - 608
|
120
|
-
* # - 624
|
121
|
-
* # - 637
|
122
|
-
* # - 638
|
123
|
-
* # - 651
|
124
|
-
* # - 652
|
125
|
-
* # - 667
|
126
|
-
* # - 675
|
127
|
-
* # - 680
|
128
|
-
* # - 695
|
129
|
-
* # - 696
|
130
|
-
* # - 704
|
131
|
-
* # - 706
|
132
|
-
* # - 711
|
133
|
-
* # - 712
|
134
|
-
* # - 735
|
135
|
-
* # - 746
|
136
|
-
* # - 765
|
137
|
-
* # - 768
|
138
|
-
* # - 769
|
139
|
-
* # - 771
|
140
|
-
* # - 772
|
141
|
-
* # - 775
|
142
|
-
* # - 777
|
143
|
-
* # - 780
|
144
|
-
* # - 781
|
145
|
-
* # - 785
|
146
|
-
* # - 787
|
147
|
-
* # - 798
|
148
|
-
* # - 799
|
149
|
-
* # - 800
|
150
|
-
* # - 801
|
151
|
-
* # - 806
|
152
|
-
* # - 808
|
153
|
-
* # - 809
|
154
|
-
* # - 810
|
155
|
-
* # - 811
|
156
|
-
* # - 812
|
157
|
-
* # - 814
|
158
|
-
* # - 815
|
159
|
-
* # - 818
|
160
|
-
* # - 819
|
161
|
-
* # - 820
|
162
|
-
* # - 821
|
163
|
-
* # - 828
|
164
|
-
* # - 830
|
165
|
-
* # - 832
|
166
|
-
* # - 834
|
167
|
-
* # - 835
|
168
|
-
* # - 836
|
169
|
-
* # - 838
|
170
|
-
* # - 839
|
171
|
-
* # - 841
|
172
|
-
* # - 843
|
173
|
-
* # - 848
|
174
|
-
* # - 849
|
175
|
-
* # - 851
|
176
|
-
* # - 852
|
177
|
-
* # - 853
|
178
|
-
* # - 858
|
179
|
-
* # - 860
|
180
|
-
* # - 862
|
181
|
-
* # - 863
|
182
|
-
* # - 864
|
183
|
-
* # - 868
|
184
|
-
* # - 869
|
185
|
-
* # - 870
|
186
|
-
* # - 889
|
187
|
-
* # - 894
|
188
|
-
* # - 897
|
189
|
-
* # - 908
|
190
|
-
* # - 911
|
191
|
-
* # - 920
|
192
|
-
* # - 923
|
193
|
-
* # - 925
|
194
|
-
* # - 931
|
195
|
-
* # - 932
|
196
|
-
* # - 938
|
197
|
-
* # - 939
|
198
|
-
* # - 940
|
199
|
-
* # - 950
|
200
|
-
* # - 953
|
201
|
-
* # - 956
|
202
|
-
* # - 958
|
203
|
-
* # - 964
|
204
|
-
* # - 965
|
205
|
-
* # - 966
|
206
|
-
* # - 967
|
207
|
-
* # - 968
|
208
|
-
* # - 969
|
209
|
-
* # - 970
|
210
|
-
* # - 973
|
211
|
-
* # - 976
|
212
|
-
* # - 977
|
213
|
-
* # - 978
|
214
|
-
* # - 983
|
215
|
-
* # - 994
|
216
|
-
* # - 997
|
217
|
-
* # - 1000
|
218
|
-
* # - 1001
|
219
|
-
* # - 1002
|
220
|
-
* # - 1004
|
221
|
-
* # - 1005
|
222
|
-
* # - 1007
|
223
|
-
* # - 1009
|
224
|
-
* # - 1011
|
225
|
-
* # - 1015
|
226
|
-
* # - 1017
|
227
|
-
* # - 1027
|
228
|
-
* # - 1028
|
229
|
-
* # - 1032
|
230
|
-
* # - 1033
|
231
|
-
* # - 1038
|
232
|
-
* # - 1042
|
233
|
-
* # - 1044
|
234
|
-
* # - 1046
|
235
|
-
* # - 1048
|
236
|
-
* # - 1049
|
237
|
-
* # - 1050
|
238
|
-
* # - 1056
|
239
|
-
* # - 1057
|
240
|
-
* # - 1058
|
241
|
-
* # - 1067
|
242
|
-
* # - 1068
|
243
|
-
* # - 1073
|
244
|
-
* # - 1075
|
245
|
-
* # - 1080
|
246
|
-
* # - 1084
|
247
|
-
* # - 1085
|
248
|
-
* # - 1086
|
249
|
-
* # - 1087
|
250
|
-
* # - 1091
|
251
|
-
* # - 1092
|
252
|
-
* # - 1095
|
253
|
-
* # - 1102
|
254
|
-
* # - 1106
|
255
|
-
* # - 1118
|
256
|
-
* # - 1123
|
257
|
-
* # - 1125
|
258
|
-
* # - 1126
|
259
|
-
* # - 1128
|
260
|
-
* # - 1131
|
261
|
-
* # - 1132
|
262
|
-
* # - 1135
|
263
|
-
* # - 1136
|
264
|
-
* # - 1138
|
265
|
-
* # - 1139
|
266
|
-
* # - 1143
|
267
|
-
* # - 1144
|
268
|
-
* # - 1145
|
269
|
-
* # - 1150
|
270
|
-
* # - 1151
|
271
|
-
* # - 1152
|
272
|
-
* # - 1154
|
273
|
-
* # - 1162
|
274
|
-
* # - 1166
|
275
|
-
* # - 1168
|
276
|
-
* # - 1171
|
277
|
-
* # - 1172
|
278
|
-
* # - 1173
|
279
|
-
* # - 1182
|
280
|
-
* # - 1183
|
281
|
-
* # - 1185
|
282
|
-
* # - 1198
|
283
|
-
* # - 1204
|
284
|
-
* # -
|
135
|
+
* # - 16 Add Robots.txt file
|
136
|
+
* # - 188 Allow admin to create new shipments
|
137
|
+
* # - 247 Restrict shipping methods based on order contents
|
138
|
+
* # - 301 Limit billing and shipping address to the same list of countries.
|
139
|
+
* # - 316 Relation between option_types and product_option_types can break
|
140
|
+
* # - 320 Remove all traces of Prototype
|
141
|
+
* # - 361 Drop tlsmail dependency
|
142
|
+
* # - 373 Rake gems command fails if you have an earlier version of haml then what is required
|
143
|
+
* # - 503 Problem adding multiple option types to a product
|
144
|
+
* # - 517 _products.html.erb hardcodes an image size.
|
145
|
+
* # - 576 Support test:unit in extensions
|
146
|
+
* # - 586 Modify SEO Product URL's in favor of single path to product
|
147
|
+
* # - 595 Move extension load order out of environment.rb
|
148
|
+
* # - 598 Ruby 1.9 Support
|
149
|
+
* # - 602 sku search on admin/products shows one link per matching variant
|
150
|
+
* # - 607 Add extension that will give your store accurate titles in the core.
|
151
|
+
* # - 608 Migrations for the site extension should always be applied last
|
152
|
+
* # - 624 link_to_delete, ajax request missing datatype
|
153
|
+
* # - 637 Translation of helpers and confirmation messages
|
154
|
+
* # - 638 Property and Prototype specs fails when spree is running in language other than en-US
|
155
|
+
* # - 651 Use I18n to display order statuses in com bobox.
|
156
|
+
* # - 652 Calls will_paginate helper with wrong attributes.
|
157
|
+
* # - 667 jQuery.validate plugin should support internationalization.
|
158
|
+
* # - 675 Remove calendar_date_select
|
159
|
+
* # - 680 Administration for payment gateways is not over SSL
|
160
|
+
* # - 695 admin product editing needs to report validation failures
|
161
|
+
* # - 696 Add "clone" function to product admin interface
|
162
|
+
* # - 704 Names of additional fields of variant must displayed in current locale.
|
163
|
+
* # - 706 Paypal password field is visible
|
164
|
+
* # - 711 account_url don't work.
|
165
|
+
* # - 712 Improve performance of work with inventory units.
|
166
|
+
* # - 735 reject_unknown_object fails for products
|
167
|
+
* # - 746 move inline javascripts to it's own file
|
168
|
+
* # - 765 Charge information should not change for completed order
|
169
|
+
* # - 768 Change filename of ApplicationController (application.rb)
|
170
|
+
* # - 769 Move common controller logic into Spree::BaseController
|
171
|
+
* # - 771 Move contents of application.js
|
172
|
+
* # - 772 Rebase database migrations
|
173
|
+
* # - 775 Update payment_gateway extension to use jQuery and I18n.
|
174
|
+
* # - 777 SearchLogic and thinking_sphinx
|
175
|
+
* # - 780 Upgrade state machine plugin
|
176
|
+
* # - 781 OrderMailer views are no longer overrideable
|
177
|
+
* # - 785 title helper_method not available for extension controllers
|
178
|
+
* # - 787 Rename application layout
|
179
|
+
* # - 798 html cleanup
|
180
|
+
* # - 799 Update french localization
|
181
|
+
* # - 800 "Unknown action" when changing local after a login error message displayed
|
182
|
+
* # - 801 Little bug in report_criteria partial.
|
183
|
+
* # - 806 Document i18n rake tasks
|
184
|
+
* # - 808 rake db:sample to load fixtures and copy over assets from extensions
|
185
|
+
* # - 809 User login is forced to be same as email
|
186
|
+
* # - 810 dynamic product groups
|
187
|
+
* # - 811 Refactor Payment Gateways
|
188
|
+
* # - 812 Remove Github gem dependencies
|
189
|
+
* # - 814 FlatPercent calculator doesn't work for shipment method.
|
190
|
+
* # - 815 Calls of admin_country_states_path oriented to U.S.
|
191
|
+
* # - 818 Migrate taxons to nested set for major performance boost
|
192
|
+
* # - 819 improve product scopes
|
193
|
+
* # - 820 Product search
|
194
|
+
* # - 821 Don't hit db on every config call
|
195
|
+
* # - 828 Billing Integration configuration
|
196
|
+
* # - 830 OpenID Support
|
197
|
+
* # - 832 Creditcard.expiry_date is hardcoded to current date
|
198
|
+
* # - 834 Preference values get truncated over 255 characters
|
199
|
+
* # - 835 cleanup and separate thumbnail related javascripts
|
200
|
+
* # - 836 Coupons usage_limit is not counting correctly
|
201
|
+
* # - 838 Fix taxons fixtures for in sample data
|
202
|
+
* # - 839 404 while assigning product taxons
|
203
|
+
* # - 841 New applicable? method for adjustments
|
204
|
+
* # - 843 shipping charge descriptions not updated
|
205
|
+
* # - 848 Rails Metal doesn't work from extensions
|
206
|
+
* # - 849 Product search does not search master variant
|
207
|
+
* # - 851 Guest account email on registration
|
208
|
+
* # - 852 Missing strings localizations
|
209
|
+
* # - 853 Issue with Shipping Address On Multiple Checkouts From Single User
|
210
|
+
* # - 858 Integration tests failing because of Metal
|
211
|
+
* # - 860 Checkout can prematurely process creditcard
|
212
|
+
* # - 862 Errors when adding item to order are never displayed
|
213
|
+
* # - 863 Improve performance of displaying of products.
|
214
|
+
* # - 864 Ensure global admin activity indicator is visible on long pages
|
215
|
+
* # - 868 Cannot register new account during checkout
|
216
|
+
* # - 869 Little bug in redirect after login via OpenID
|
217
|
+
* # - 870 Variant#check_price trigger failed in case Product.destroy_all
|
218
|
+
* # - 889 Allow extensions to override core seed and sample data
|
219
|
+
* # - 894 Random test failure with short Faker user_name
|
220
|
+
* # - 897 Error in admin Shipping_rates_controller
|
221
|
+
* # - 908 make add_extension_admin_tab more UF
|
222
|
+
* # - 911 2 javascript caches with same name bug
|
223
|
+
* # - 920 Australian translation - en_AU
|
224
|
+
* # - 923 Security issue: Customer addresses and telephone numbers are insecure
|
225
|
+
* # - 925 Allow admin to edit order and adjustments
|
226
|
+
* # - 931 Inventory units should not backordered if backorders disallowed
|
227
|
+
* # - 932 "Mark as shipped" causes incorrect order total
|
228
|
+
* # - 938 Invalid HTML in app/views/admin/products/index.html.erb
|
229
|
+
* # - 939 Charge and Credit amount saved before checkout is complete
|
230
|
+
* # - 940 Order.email not set
|
231
|
+
* # - 950 Exclude stylesheet requests from admin user check
|
232
|
+
* # - 953 Add FSM for shipments along with associated state events
|
233
|
+
* # - 956 rails default english locale not being picked up
|
234
|
+
* # - 958 Zone#country_list is empty for state-based zones
|
235
|
+
* # - 964 Theme Support
|
236
|
+
* # - 965 Multi-Step Checkout
|
237
|
+
* # - 966 Do not create shipments at checkout
|
238
|
+
* # - 967 Incorrect for-attribute in labels for address fields.
|
239
|
+
* # - 968 List of states does not updated when user change selected country
|
240
|
+
* # - 969 Update Ruby 1.9.x support
|
241
|
+
* # - 970 Provide friendly error message if no shipping methods are configured
|
242
|
+
* # - 973 Creditcard model should not store mask information
|
243
|
+
* # - 976 Provide an option to prevent loading sample data from the Spree core
|
244
|
+
* # - 977 User isn't set in the new Order
|
245
|
+
* # - 978 Update Russian translation (for 1.0)
|
246
|
+
* # - 983 Support creating new orders via admin ui
|
247
|
+
* # - 994 Order views should not assume address information
|
248
|
+
* # - 997 ProductGroup#products generates invalid SQL for mysql and postgresql
|
249
|
+
* # - 1000 Validation errors in LineItem should support I18n.
|
250
|
+
* # - 1001 Remove config.extensions from environment.rb
|
251
|
+
* # - 1002 Typo in views/admin/prototypes/new.html.erb
|
252
|
+
* # - 1004 Verify that params[:page] and params[:per_page] are an integer
|
253
|
+
* # - 1005 Several new/edit admin page have no way back to index view.
|
254
|
+
* # - 1007 Admin screen (edge spree) shows exception instead of listing products
|
255
|
+
* # - 1009 hook to add additional scripts to admin pages footer
|
256
|
+
* # - 1011 Add I18n support to password resetting
|
257
|
+
* # - 1015 bill_address can be nil
|
258
|
+
* # - 1017 more patches breaks on heroku
|
259
|
+
* # - 1027 CheckoutsController#register action needs to be protected by SSL
|
260
|
+
* # - 1028 Convenient name method for order
|
261
|
+
* # - 1032 REST API for managing orders and shipments
|
262
|
+
* # - 1033 Don't check deleted_at attribute directly, use deleted? instead
|
263
|
+
* # - 1038 Delete invalid, unused template.
|
264
|
+
* # - 1042 Some unit tests inherit from Test::Unit::TestCase not ActiveSupport::TestCase
|
265
|
+
* # - 1044 Speed up ProductGroupTest
|
266
|
+
* # - 1046 It should be possible to remove only one item from the cart
|
267
|
+
* # - 1048 Cart: row for the "your cart is empty" message should be rendered iff there is not items in the cart
|
268
|
+
* # - 1049 Email string should be split on comma prior to uniq
|
269
|
+
* # - 1050 Support Authorize.net CIM
|
270
|
+
* # - 1056 Provide consistent validation instructions
|
271
|
+
* # - 1057 Enhanced Google Analytics Configuration
|
272
|
+
* # - 1058 Sales Report
|
273
|
+
* # - 1067 Support for refunds and voids (including profile based ones)
|
274
|
+
* # - 1068 Change required to validate as XHTML 1.1
|
275
|
+
* # - 1073 Default tax category isn't assigned to new products
|
276
|
+
* # - 1075 Graceful error handling for ActiveMerchant::ConnectionError
|
277
|
+
* # - 1080 Improve Product Group Performance
|
278
|
+
* # - 1084 XSS security vulnerability in LocaleController
|
279
|
+
* # - 1085 Translation for product_has_no_description is incorrect
|
280
|
+
* # - 1086 Extend API to return products / variant information
|
281
|
+
* # - 1087 Doesn't work sorting products by price in admin panel.
|
282
|
+
* # - 1091 User text input for all admin date selectors
|
283
|
+
* # - 1092 Staging env caused problems with sessions.
|
284
|
+
* # - 1095 Replace Papercliip plugin with gem dependency
|
285
|
+
* # - 1102 Error with inventory_units for db:bootstrap
|
286
|
+
* # - 1106 Ensure both products and taxons are only available via one url
|
287
|
+
* # - 1118 Update to ActiveMerchant 1.5.0
|
288
|
+
* # - 1123 Shipping/Billing addresses always the same during checkout
|
289
|
+
* # - 1125 Fix <br> clear attribute for shared admin partials
|
290
|
+
* # - 1126 Fix missing <tr> for admin coupon partial
|
291
|
+
* # - 1128 Fix tax_rates partial to be XHTML valid
|
292
|
+
* # - 1131 Vietnamese Translation
|
293
|
+
* # - 1132 Fix alt tooltip for few translation
|
294
|
+
* # - 1135 Error on creditcards/index while creating a new order
|
295
|
+
* # - 1136 Support multiple payment methods
|
296
|
+
* # - 1138 admin/option_types/_form.html.erb partial rendered wrongly under Ruby19
|
297
|
+
* # - 1139 Czech localization
|
298
|
+
* # - 1143 The extension functional test generate template uses the wrong base class.
|
299
|
+
* # - 1144 wrong hook in admin/products
|
300
|
+
* # - 1145 Adjustments not included in admin/orders controller
|
301
|
+
* # - 1150 Update to ActiveMerchant 1.5.1 to fix Billing Response bug
|
302
|
+
* # - 1151 Address duplication is back
|
303
|
+
* # - 1152 FIx deprecated param for number_with_precision
|
304
|
+
* # - 1154 System does not send first_name and last_name to authorize.net so CC transactions fail.
|
305
|
+
* # - 1162 rake db:load_file, db:load_dir unnecessarily establishes connection (?)
|
306
|
+
* # - 1166 City and phone not translated in checkout edit address view
|
307
|
+
* # - 1168 Need to recreate reduced BillingIntegration class
|
308
|
+
* # - 1171 Local change suddenly when browsing into admin overview
|
309
|
+
* # - 1172 Payments admin views should use partials for each payment_method
|
310
|
+
* # - 1173 CSS problem with js-validation of address
|
311
|
+
* # - 1182 Beanstream Secure Payment profile support
|
312
|
+
* # - 1183 rake spree:i18n:sync failed with Ruby 1.9 due to invalid byte sequence in UTF8
|
313
|
+
* # - 1185 HTML title of Admin doesn't use translation
|
314
|
+
* # - 1198 Failures in tests for payment_gateway extension.
|
315
|
+
* # - 1204 Products aren't filtered by low level taxons
|
316
|
+
* # -
|
285
317
|
== 0.9.4
|
286
318
|
|
287
319
|
* # - 961 Fixed an issue with RDoc (which occured when installing the 0.9.3 gem)
|
288
320
|
|
289
321
|
== 0.9.3
|
290
322
|
|
291
|
-
* # - 947 Stylesheets broken when running under a sub uri
|
292
|
-
* # - 948 Updated to Rails 2.3.5
|
323
|
+
* # - 947 Stylesheets broken when running under a sub uri
|
324
|
+
* # - 948 Updated to Rails 2.3.5
|
293
325
|
|
294
326
|
== 0.9.2
|
295
327
|
|
@@ -301,96 +333,96 @@
|
|
301
333
|
|
302
334
|
== 0.9.0
|
303
335
|
|
304
|
-
* # - 137
|
305
|
-
* # - 143
|
306
|
-
* # - 217
|
307
|
-
* # - 285
|
308
|
-
* # - 477
|
309
|
-
* # - 480
|
310
|
-
* # - 488
|
311
|
-
* # - 496
|
312
|
-
* # - 498
|
313
|
-
* # - 499
|
314
|
-
* # - 502
|
315
|
-
* # - 504
|
316
|
-
* # - 508
|
317
|
-
* # - 518
|
318
|
-
* # - 519
|
319
|
-
* # - 521
|
320
|
-
* # - 525
|
321
|
-
* # - 526
|
322
|
-
* # - 531
|
323
|
-
* # - 532
|
324
|
-
* # - 533
|
325
|
-
* # - 536
|
326
|
-
* # - 543
|
327
|
-
* # - 544
|
328
|
-
* # - 545
|
329
|
-
* # - 546
|
330
|
-
* # - 549
|
331
|
-
* # - 557
|
332
|
-
* # - 558
|
333
|
-
* # - 560
|
334
|
-
* # - 561
|
335
|
-
* # - 562
|
336
|
-
* # - 564
|
337
|
-
* # - 565
|
338
|
-
* # - 567
|
339
|
-
* # - 569
|
340
|
-
* # - 572
|
341
|
-
* # - 577
|
342
|
-
* # - 578
|
343
|
-
* # - 579
|
344
|
-
* # - 581
|
345
|
-
* # - 582
|
346
|
-
* # - 585
|
347
|
-
* # - 587
|
348
|
-
* # - 589
|
349
|
-
* # - 590
|
350
|
-
* # - 593
|
351
|
-
* # - 600
|
352
|
-
* # - 601
|
353
|
-
* # - 603
|
354
|
-
* # - 604
|
355
|
-
* # - 605
|
356
|
-
* # - 606
|
357
|
-
* # - 613
|
358
|
-
* # - 615
|
359
|
-
* # - 616
|
360
|
-
* # - 621
|
361
|
-
* # - 622
|
362
|
-
* # - 626
|
363
|
-
* # - 627
|
364
|
-
* # - 629
|
365
|
-
* # - 630
|
366
|
-
* # - 635
|
367
|
-
* # - 636
|
368
|
-
* # - 639
|
369
|
-
* # - 645
|
370
|
-
* # - 646
|
371
|
-
* # - 649
|
372
|
-
* # - 650
|
373
|
-
* # - 654
|
374
|
-
* # - 655
|
375
|
-
* # - 660
|
376
|
-
* # - 661
|
377
|
-
* # - 663
|
378
|
-
* # - 668
|
379
|
-
* # - 674
|
380
|
-
* # - 681
|
381
|
-
* # - 682
|
382
|
-
* # - 691
|
383
|
-
* # - 693
|
384
|
-
* # - 697
|
385
|
-
* # - 698
|
386
|
-
* # - 709
|
387
|
-
* # - 718
|
388
|
-
* # - 720
|
389
|
-
* # - 722
|
390
|
-
* # - 723
|
391
|
-
* # - 726
|
392
|
-
* # - 733
|
393
|
-
* # - 736
|
336
|
+
* # - 137 Products without variants can't have a weight.
|
337
|
+
* # - 143 Load initializers from extensions
|
338
|
+
* # - 217 Remove Paperclip messages from log
|
339
|
+
* # - 285 Problem with spree command in older versions of Ruby Gems.
|
340
|
+
* # - 477 Refactor checkout into its own model, view and controller
|
341
|
+
* # - 480 Error when browsing to an invalid taxon
|
342
|
+
* # - 488 Can't add new product with cyrrilic symbols in Name
|
343
|
+
* # - 496 Record checkout completion timestamp
|
344
|
+
* # - 498 Additional Translation Strings
|
345
|
+
* # - 499 Refactor order totaling to use a system of charges
|
346
|
+
* # - 502 Image upload not working....
|
347
|
+
* # - 504 Handling requests for products/taxons not in the db
|
348
|
+
* # - 508 Spree admin does not render well in IE
|
349
|
+
* # - 518 SKU disappears when variants are added.
|
350
|
+
* # - 519 Upgrade to newer version of compass
|
351
|
+
* # - 521 Cannot checkout using IE6
|
352
|
+
* # - 525 Latest master checkout resulted in migrations failing
|
353
|
+
* # - 526 Tests failing with Russian and French locales
|
354
|
+
* # - 531 Spree should not require exact haml-edge version
|
355
|
+
* # - 532 Hebrew translation
|
356
|
+
* # - 533 Thai localization
|
357
|
+
* # - 536 Possible issue with i18n:sync
|
358
|
+
* # - 543 Migration failure on newer versions of Postgres
|
359
|
+
* # - 544 Improve efficient for product display
|
360
|
+
* # - 545 Refactor order totaling to use a system of credits
|
361
|
+
* # - 546 Allow configuration for automatic capture
|
362
|
+
* # - 549 Spree is overwritting :per_page parameter
|
363
|
+
* # - 557 Need to avoid silent failures in the checkout process
|
364
|
+
* # - 558 Remove admin user check from products controller
|
365
|
+
* # - 560 Allow admin view to display a customized order display
|
366
|
+
* # - 561 Upgrade the vendored version of Paperclip?
|
367
|
+
* # - 562 Removed favicon.ico file?
|
368
|
+
* # - 564 Losses of confirmation emails for registered users
|
369
|
+
* # - 565 Need access to image width and height
|
370
|
+
* # - 567 Credit card type guessing in checkout has been disconnected
|
371
|
+
* # - 569 Reduce application layout duplication
|
372
|
+
* # - 572 Repeated saves of CC objects leaves XXXX-XXXX-XXXX- in display_number field
|
373
|
+
* # - 577 Add Dutch translation files
|
374
|
+
* # - 578 Support coupons and discounts
|
375
|
+
* # - 579 Allow calculator configuration (shipping, coupons, etc.) via admin interface
|
376
|
+
* # - 581 Password reset mails should come from the "generic" address
|
377
|
+
* # - 582 Allow login bar to be called via https
|
378
|
+
* # - 585 Support for variant images
|
379
|
+
* # - 587 Upgrading to the new version of searchlogic
|
380
|
+
* # - 589 Update locale translations
|
381
|
+
* # - 590 Fixed confusing error message in UsersController
|
382
|
+
* # - 593 InventoryUnit does not associate with an order when sold
|
383
|
+
* # - 600 An alternative to spree:upgrade?
|
384
|
+
* # - 601 Finnish localization
|
385
|
+
* # - 603 Don't show restricted administrator tabs
|
386
|
+
* # - 604 Several not translated strings
|
387
|
+
* # - 605 update totals after removing line items
|
388
|
+
* # - 606 Avoid clobbering formbuilder in product forms
|
389
|
+
* # - 613 Rails 2.3.4 Compatibility
|
390
|
+
* # - 615 Add Mexican Spanish localization files
|
391
|
+
* # - 616 Protect cart for mass_assignement
|
392
|
+
* # - 621 Provide type aware preference helper
|
393
|
+
* # - 622 Sample users are not added to the 'user' role
|
394
|
+
* # - 626 rake spree:upgrade doesn't delete initializers/searchlogic.rb
|
395
|
+
* # - 627 Add some named scopes for common filtering operations
|
396
|
+
* # - 629 Incomplete usage help text for script/generate extension_migration
|
397
|
+
* # - 630 zone_members.yml contains unknown zone ids
|
398
|
+
* # - 635 Mail templates have hard-coded $
|
399
|
+
* # - 636 Bug when canceling/resuming orders with language other than en-US
|
400
|
+
* # - 639 Jquery checkout bug
|
401
|
+
* # - 645 state changesin order don't produce SteteEvents
|
402
|
+
* # - 646 address model spec failing on missing state test
|
403
|
+
* # - 649 Order summary partial don't supports I18n.
|
404
|
+
* # - 650 Improvement to route upgrade process
|
405
|
+
* # - 654 en_GB_rails is broken - fails to load up some translations
|
406
|
+
* # - 655 Quantity field does not update in orders/edit
|
407
|
+
* # - 660 addresses in checkout should default to the ones the customer last used
|
408
|
+
* # - 661 Checkout address forms don't show state_name for state-less countries
|
409
|
+
* # - 663 Show selected Variant image in cart
|
410
|
+
* # - 668 Add support for faceted search / filtering
|
411
|
+
* # - 674 Testing of orders is slow (and will fail around 1 time in 259)
|
412
|
+
* # - 681 Improvements for zone handling
|
413
|
+
* # - 682 Improve seeding code
|
414
|
+
* # - 691 SMTP error during checkout prevents order from being properly completed
|
415
|
+
* # - 693 Error on deploy edge version
|
416
|
+
* # - 697 Rails Metal is not loaded properly
|
417
|
+
* # - 698 LineItem validation needs more care with checking of stock levels
|
418
|
+
* # - 709 update_addresses not defined in checkout.js
|
419
|
+
* # - 718 Don't work sorting orders by email.
|
420
|
+
* # - 720 Improve messages for require_{no_}user
|
421
|
+
* # - 722 Unknown object case doesn't handle case where id parameter is empty
|
422
|
+
* # - 723 Modify percentage calculator to use percentages
|
423
|
+
* # - 726 product.variants contains deleted variants
|
424
|
+
* # - 733 reject_unknown_object fails for collections
|
425
|
+
* # - 736 Column deleted_at can be ambiguous in some cases.
|
394
426
|
|
395
427
|
== 0.8.5
|
396
428
|
|
@@ -418,37 +450,37 @@ Same as 0.8.4 (problem with release in 0.8.4)
|
|
418
450
|
|
419
451
|
== 0.8.0
|
420
452
|
|
421
|
-
* # 273 -
|
422
|
-
* # 292 -
|
423
|
-
* # 299 -
|
424
|
-
* # 304 -
|
425
|
-
* # 313 -
|
426
|
-
* # 318 -
|
427
|
-
* # 321 -
|
428
|
-
* # 322 -
|
429
|
-
* # 328 -
|
430
|
-
* # 329 -
|
431
|
-
* # 331 -
|
432
|
-
* # 333 -
|
433
|
-
* # 334 -
|
434
|
-
* # 337 -
|
435
|
-
* # 338 -
|
436
|
-
* # 339 -
|
437
|
-
* # 340 -
|
438
|
-
* # 341 -
|
439
|
-
* # 345 -
|
440
|
-
* # 346 -
|
441
|
-
* # 347 -
|
442
|
-
* # 348 -
|
443
|
-
* # 349 -
|
444
|
-
* # 352 -
|
445
|
-
* # 357 -
|
446
|
-
* # 362 -
|
447
|
-
* # 365 -
|
448
|
-
* # 366 -
|
449
|
-
* # 367 -
|
450
|
-
* # 369 -
|
451
|
-
* # 386 -
|
453
|
+
* # 273 - Improve usefulness of prototypes
|
454
|
+
* # 292 - Allow the ability to import roles based permission yaml files from extensions
|
455
|
+
* # 299 - Translation to dutch (belgium)
|
456
|
+
* # 304 - Password reset functionality
|
457
|
+
* # 313 - Line items association extension causes issues with AJAX version of cart
|
458
|
+
* # 318 - Rails 2.3.2 Support
|
459
|
+
* # 321 - Broken spec for admin/variants/edit, and form doesn't show option settings
|
460
|
+
* # 322 - Move searchlogic and all unreleased gems into vendor/gems
|
461
|
+
* # 328 - Bug when adding taxonomies
|
462
|
+
* # 329 - Move shipping out of extension and into main core
|
463
|
+
* # 331 - New Spree apps should be created with a default site extension
|
464
|
+
* # 333 - Switch to authlogic gem to handle authentication
|
465
|
+
* # 334 - Meta data keywords and description fields for products
|
466
|
+
* # 337 - Add user login field which is not restricted to be the user email address
|
467
|
+
* # 338 - Guest Checkout
|
468
|
+
* # 339 - Empty cart should not actually destroy the entire order
|
469
|
+
* # 340 - Token access to restrict viewing of incomplete orders
|
470
|
+
* # 341 - Add email address to order model
|
471
|
+
* # 345 - Refactor address model and relationships
|
472
|
+
* # 346 - Remove defunct viewable_id field from products table
|
473
|
+
* # 347 - Dump active_presenter in favor of nested_attributes
|
474
|
+
* # 348 - Upgrade task should automatically update permissions
|
475
|
+
* # 349 - Upgrade task should update routes.rb
|
476
|
+
* # 352 - Make checkout process more extensible
|
477
|
+
* # 357 - multiple shipments being created for 1 item in checkout
|
478
|
+
* # 362 - Rake doesn't use UTC time
|
479
|
+
* # 365 - Ajax failing on product pages
|
480
|
+
* # 366 - Echoe gem dependency is not installed
|
481
|
+
* # 367 - pagination is missing when you browse products through the taxonomy
|
482
|
+
* # 369 - Upgrade task should automatically update boot.rb
|
483
|
+
* # 386 - Currency problem in order confirmation page
|
452
484
|
|
453
485
|
== 0.7.1
|
454
486
|
|
@@ -465,123 +497,123 @@ Same as 0.8.4 (problem with release in 0.8.4)
|
|
465
497
|
|
466
498
|
== 0.7.0
|
467
499
|
|
468
|
-
* #
|
469
|
-
* #
|
470
|
-
* #
|
471
|
-
* #
|
472
|
-
* #
|
473
|
-
* #
|
474
|
-
* #
|
475
|
-
* #
|
476
|
-
* #
|
477
|
-
* #
|
478
|
-
* #
|
479
|
-
* #
|
480
|
-
* #
|
481
|
-
* #
|
482
|
-
* #
|
483
|
-
* #
|
484
|
-
* #
|
485
|
-
* #
|
486
|
-
* #
|
487
|
-
* #
|
488
|
-
* #
|
489
|
-
* #
|
490
|
-
* #
|
491
|
-
* #
|
492
|
-
* #
|
493
|
-
* #
|
494
|
-
* #
|
500
|
+
* # 166 - Order numbers should also use permalink
|
501
|
+
* # 220 - Security holes in a few controllers
|
502
|
+
* # 234 - Sales tax should recalculate after a change in shipping address
|
503
|
+
* # 239 - Rake task for upgrade an existing Spree deployment
|
504
|
+
* # 242 - State events show the UTC version of the timestamp
|
505
|
+
* # 246 - Rake tasks failing if highline is not installed on the system
|
506
|
+
* # 247 - Restrict shipping methods based on order contents
|
507
|
+
* # 249 - Backorders not updated with new quantity
|
508
|
+
* # 251 - Missing message
|
509
|
+
* # 253 - Norwegian Translation
|
510
|
+
* # 255 - Admin has problems with "Available On"
|
511
|
+
* # 260 - Remove the automatic pay event from the order model
|
512
|
+
* # 261 - Do not allow creditcard capture without a response code
|
513
|
+
* # 263 - Support for Protx Gateway
|
514
|
+
* # 264 - Change credit card month and year to drop down
|
515
|
+
* # 265 - Google Analytics Order Tracking
|
516
|
+
* # 266 - Allow quantities when adding a variant to an order
|
517
|
+
* # 268 - Cannot cancel an incomplete order
|
518
|
+
* # 269 - Adjusting inventory on a 1 variant product does not update backorder status properly
|
519
|
+
* # 270 - Additional database indexes
|
520
|
+
* # 276 - French Translation
|
521
|
+
* # 277 - New users should be assigned the 'user' role by default
|
522
|
+
* # 278 - Allow backordering to be set at the variant level instead of all-or-nothing
|
523
|
+
* # 279 - No variant is pre-selected
|
524
|
+
* # 280 - Even deleted variants are available
|
525
|
+
* # 284 - Russian Translation
|
526
|
+
* # 288 - Credit card information should be filtered in logs
|
495
527
|
|
496
528
|
== 0.6.0
|
497
529
|
|
498
|
-
* #
|
499
|
-
* #
|
500
|
-
* #
|
501
|
-
* #
|
502
|
-
* #
|
503
|
-
* #
|
504
|
-
* #
|
505
|
-
* #
|
506
|
-
* #
|
507
|
-
* #
|
508
|
-
* #
|
509
|
-
* #
|
510
|
-
* #
|
511
|
-
* #
|
512
|
-
* #
|
513
|
-
* #
|
514
|
-
* #
|
515
|
-
* #
|
516
|
-
* #
|
517
|
-
* #
|
518
|
-
* #
|
519
|
-
* #
|
520
|
-
* #
|
521
|
-
* #
|
522
|
-
* #
|
523
|
-
* #
|
524
|
-
* #
|
525
|
-
* #
|
526
|
-
* #
|
527
|
-
* #
|
528
|
-
* #
|
529
|
-
* #
|
530
|
-
* #
|
531
|
-
* #
|
532
|
-
* #
|
533
|
-
* #
|
534
|
-
* #
|
535
|
-
* #
|
536
|
-
* #
|
537
|
-
* #
|
538
|
-
* #
|
539
|
-
* #
|
540
|
-
* #
|
541
|
-
* #
|
542
|
-
* #
|
543
|
-
* #
|
544
|
-
* #
|
545
|
-
* #
|
546
|
-
* #
|
547
|
-
* #
|
548
|
-
* #
|
549
|
-
* #
|
550
|
-
* #
|
551
|
-
* #
|
552
|
-
* #
|
530
|
+
* # 129 - Public extension assets don't respect order when mirrored.
|
531
|
+
* # 131 - Core specs keeps being overriden by extension specs.
|
532
|
+
* # 132 - Add support for use routes.rb files inside extensions instead of using class_eval.
|
533
|
+
* # 133 - Make extension gems be installed by the same gem tasks that installs the system gems.
|
534
|
+
* # 136 - SEO Friendly URL's for Taxonomy
|
535
|
+
* # 142 - Spree don't bootstrap from inside skeleton root dir.
|
536
|
+
* # 145 - Remove legacy FLAT_SHIPPING_RATE variable
|
537
|
+
* # 146 - All actions in the admin order list view should be confirmed
|
538
|
+
* # 147 - Params[:id] in OrdersController used for both product id and order id
|
539
|
+
* # 149 - Bootstrap task should load sample data from SPREE_ROOT instead of RAILS_ROOT
|
540
|
+
* # 150 - Allow users to configure SSL settings for all modes.
|
541
|
+
* # 151 - Switch from attachment_fu to paperclip.
|
542
|
+
* # 152 - Allow extensions to add tabs to products admin UI
|
543
|
+
* # 153 - Allow adding fields to either products or variants
|
544
|
+
* # 156 - New taxonomy is created with a nil permalink
|
545
|
+
* # 158 - CamelCased migration name results in incorrect migration file name
|
546
|
+
* # 159 - Make the number of products that are displayed on the admin interface configurable.
|
547
|
+
* # 160 - Renaming a product causes exception
|
548
|
+
* # 161 - Borders not appearing correctly on cart view (Safari Only)
|
549
|
+
* # 162 - Paranoid deletion of products.
|
550
|
+
* # 163 - Allow user to configure default tax category for products
|
551
|
+
* # 164 - Validation error messages for tax category and shipping category.
|
552
|
+
* # 165 - Child taxon permalinks can get out of date when parent updates
|
553
|
+
* # 167 - Improper zone matching for tax calculations if shipping zones are also configured
|
554
|
+
* # 168 - Product named_scopes should use table names
|
555
|
+
* # 169 - Old taxons route needs to be repositioned
|
556
|
+
* # 171 - Order status filter does not work with certain state names.
|
557
|
+
* # 172 - Allow user to configure the logo in the admin user interface
|
558
|
+
* # 173 - Allow shipping of backordered items.
|
559
|
+
* # 174 - Allow orders to be searched by name
|
560
|
+
* # 175 - Show default "No Image Available" placeholder when a product doesn't have any images.
|
561
|
+
* # 176 - Order search results are not preserved when paging
|
562
|
+
* # 177 - Searching on products and associated models can be slow
|
563
|
+
* # 178 - Standardize security model
|
564
|
+
* # 179 - Unauthorized users are redirected to login page.
|
565
|
+
* # 180 - Allow usesr to view their order history
|
566
|
+
* # 181 - My account should not show incomplete orders
|
567
|
+
* # 184 - add variant
|
568
|
+
* # 185 - When executing rake specs from inside an extension only its specs should be executed
|
569
|
+
* # 186 - Add paging to admin/users
|
570
|
+
* # 187 - Allow admin to assign user roles
|
571
|
+
* # 189 - Text Bug
|
572
|
+
* # 190 - Add "Resume" event for undoing canceled orders, etc.
|
573
|
+
* # 191 - Country list on address form is firing ajax queries too frequently.
|
574
|
+
* # 192 - shared/form_address partial hard codes the address_country_id field id
|
575
|
+
* # 193 - Allow admin to search existing users
|
576
|
+
* # 194 - Allow orders per page to be configurable
|
577
|
+
* # 197 - Disable bootstrap task in production
|
578
|
+
* # 203 - Create a rake task for keeping translation files in sync with en-US.yml
|
579
|
+
* # 210 - Error when attemtping to create new taxonomy
|
580
|
+
* # 216 - New rake task for creating new translations
|
581
|
+
* # 221 - Rake tasks fail if activemerchant gem is not up to date
|
582
|
+
* # 222 - New demo mode for use in the online demo
|
583
|
+
* # 224 - BCC email is not sent if only one the bcc fields is configured
|
584
|
+
* # 229 - generate_secret is deprecated
|
553
585
|
|
554
586
|
== 0.5.0
|
555
587
|
|
556
|
-
* #
|
557
|
-
* #
|
558
|
-
* #
|
559
|
-
* #
|
560
|
-
* #
|
561
|
-
* #
|
562
|
-
* #
|
563
|
-
* #
|
564
|
-
* #
|
565
|
-
* #
|
566
|
-
* #
|
567
|
-
* #
|
568
|
-
* #
|
569
|
-
* #
|
570
|
-
* #
|
571
|
-
* #
|
572
|
-
* #
|
573
|
-
* #
|
574
|
-
* #
|
575
|
-
* #
|
576
|
-
* #
|
577
|
-
* #
|
578
|
-
* #
|
579
|
-
* #
|
580
|
-
* #
|
581
|
-
* #
|
582
|
-
* #
|
583
|
-
* #
|
584
|
-
* #
|
588
|
+
* # 55 - Variants need shipping weights to do shipping calculations.
|
589
|
+
* # 66 - Add a migration generator for extensions
|
590
|
+
* # 83 - Internal Server Error when adding product property to product
|
591
|
+
* # 90 - Support for sample data in extensions
|
592
|
+
* # 91 - Shipping address should be limited to the countries that are configured by a shipping zone
|
593
|
+
* # 92 - Configuration screen for inventory settings.
|
594
|
+
* # 95 - Bogus gateway should decline card instead of raising an exception
|
595
|
+
* # 96 - Creating first Taxon fails with blank database
|
596
|
+
* # 97 - Exception when returning to cart from shipping method selection screen
|
597
|
+
* # 98 - Exception occurs when changing country dropdown for Ship Address
|
598
|
+
* # 99 - Provide built-in mechanism for dealing with near static content
|
599
|
+
* # 100 - Add support for require gems inside extensions and an easy way to install them.
|
600
|
+
* # 101 - Add configuration setting to make bogus gateway in development mode optional
|
601
|
+
* # 102 - Credit card information is not being stored.
|
602
|
+
* # 103 - Rails 2.1.2 Support
|
603
|
+
* # 105 - Error when viewing order with non US state in either address.
|
604
|
+
* # 106 - Adding a new variant causes NoMethodError
|
605
|
+
* # 107 - SKU not saving for products (empty variant)
|
606
|
+
* # 108 - Correct after_transition for paid state in Order model
|
607
|
+
* # 109 - Add purchase method to Spree::PaymentGateway
|
608
|
+
* # 110 - Empty address cannot be validated
|
609
|
+
* # 112 - Check for user before emailing order confirmations
|
610
|
+
* # 113 - Property model references bogus value table.
|
611
|
+
* # 114 - Remove unsupported deactivate method from extensions
|
612
|
+
* # 116 - Updating option types causes all option values to disappear
|
613
|
+
* # 118 - Default authenticaiton screen should be login
|
614
|
+
* # 119 - Include login fields on user creation screen
|
615
|
+
* # 120 - Orders search does not return any results.
|
616
|
+
* # 122 - Credit card Number text field enforces 17 character restriction
|
585
617
|
* # 124 - Move the pay action out of the FSM for order.
|
586
618
|
* # 125 - Sales Tax calculation causes exception
|
587
619
|
* # 126 - Incomplete orders are appearing in admin orders views.
|
@@ -609,7 +641,7 @@ Same as 0.8.4 (problem with release in 0.8.4)
|
|
609
641
|
* #63 - New spree applications should use a random secret key for sessions
|
610
642
|
* #64 - Extension support of "public" assets
|
611
643
|
* #69 - New spree project is missing script/plugin
|
612
|
-
* #79 - Frozen gems inside of the Spree source are not copied into new applications
|
644
|
+
* #79 - Frozen gems inside of the Spree source are not copied into new applications
|
613
645
|
* #80 - Named routes don't work when defined inside its own extension using define_routes.
|
614
646
|
* #84 - Generating Thumbnails for products: wrong aspect ratio
|
615
647
|
* #82 - Unable to start server when both rails and spree are frozen
|
@@ -622,11 +654,11 @@ Same as 0.8.4 (problem with release in 0.8.4)
|
|
622
654
|
|
623
655
|
== 0.0.9 2008-04-23
|
624
656
|
|
625
|
-
* Changed source code layout. Spree now runs in stand alone, gem and application modes.
|
657
|
+
* Changed source code layout. Spree now runs in stand alone, gem and application modes.
|
626
658
|
* Removed dependency on Engines plugin.
|
627
659
|
* Removed free tagging (will be made obsolete by categorization features in upcoming release)
|
628
660
|
* #20 - Product images in arbitrary order.
|
629
|
-
|
661
|
+
|
630
662
|
== 0.0.8 2008-03-27
|
631
663
|
|
632
664
|
* Fixed a few new bugs introduced by the variant refactoring
|
@@ -635,7 +667,7 @@ Same as 0.8.4 (problem with release in 0.8.4)
|
|
635
667
|
== 0.0.7 2008-03-26
|
636
668
|
|
637
669
|
* Fixed an error with improperly named helper in one of the mailers (this was preventing checkout)
|
638
|
-
* Removed several trivial references to old project name
|
670
|
+
* Removed several trivial references to old project name
|
639
671
|
|
640
672
|
== 0.0.6 2008-03-26
|
641
673
|
|