Changes for the week ending 2012-08-26:

  • v1.0: Fix for ^^custom_fields^^ place holder missing in checkout.
  • v0.7.2 – v1.0: Total-Apps payment Gateway is added.
  • v1.0: Due to a change to an associative array for the countries Javascript object (FC.locations),  custom scripts using an iterator based loop (like ‘for (var i = 0; i < countries.length; i++) { }') to navigate the countries will no longer work. Instead you can reference the country you are looking for directly by its ISO 3166-1 alpha-2 code like 'US', 'GB' etc. If you need to loop over all of the countries, you can do that using a key-value loop like 'for (var code in countries) { }'. The structure went from [{...},{...},{...},...] to ["AZ": {...}, "AU": {...}, ...].