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.

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