Skip to content

Latest commit

 

History

History
37 lines (25 loc) · 1.22 KB

CHANGELOG.md

File metadata and controls

37 lines (25 loc) · 1.22 KB

Master (Unreleased)

If you're upgrading from previous versions, you must add the following to your app/views/layouts/application.html.erb before the closing of the <head> tag or your credit card form will no longer work:

<%= yield :koudoku %>

If you have a Haml layout file, it is:

= yield :koudoku

Version 0.0.9

Adding support for non-monthly plans. The default is still monthly. To accommodate this, a interval attribute has been added to the Plan class. To upgrade earlier installations, you can run the following commands:

$ rails g migration add_interval_to_plan interval:string
$ rake db:migrate

You'll also need to make this attribute mass-assignable:

class Plan < ActiveRecord::Base
  include Koudoku::Plan
  attr_accessible :interval
end

Version 0.0.16

Fixed updating credit card as default. There was issue Accounts that are Past due. CC, cannot be updated.

  1. User creates a CF account and makes a valid payment.
  2. After x months' user's CC goes out of date or is declined for another reason.
  3. User loses access to their funnel dashboard.
  4. When user logs back in, they are presented with a choice to choose a new plan.
  5. They enter new CC info and select a plan.