Skip to content

Commit

Permalink
Respond 2.4 update
Browse files Browse the repository at this point in the history
  • Loading branch information
madoublet committed Nov 11, 2013
1 parent f7f945c commit 2a58407
Show file tree
Hide file tree
Showing 117 changed files with 11,696 additions and 1,802 deletions.
33 changes: 29 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,37 @@
Respond CMS
aRespond CMS
===========

Respond is an open source, responsive content management system that you can use to build responsive sites. Respond 2.2 features a REST API, a lightning-fast Knockout-based UI, Bootstrap 3.0, and an enhanced data layer using PDO. In the latest release, we have cleaned up the UI for our editor and improved support for tabular data. Respond 2.2 is faster, more secure, and more beautiful than ever.
Respond is an open source, responsive content management system that you can use to build responsive sites. Respond 2.4 features a REST API, a lightning-fast Knockout-based UI, Bootstrap 3.0, and an enhanced data layer using PDO. In the latest release, we have cleaned up the UI, fixed bugs, improved blog support, and added support for paid site subsciptions via Stripe. Respond 2.4 is faster, more secure, and more beautiful than ever.

Learn more about Respond CMS at: http://respondcms.com

View our documentation at: http://respondcms.com/page/documentation

Our current version is 2.2.
Our current version is 2.4.

See whats new in the October 2013 update: http://respondcms.com/update/october-2013
See whats new in the November 2013 update: http://respondcms.com/update/november-2013

New in 2.4:
- Paid Stripe subscriptions: bill customers via Stripe
- New slide out menu, other UI tweaks
- Timezone stored in PHP format
- Better blog support: added to default site
- Update File Upload (show progress, make icon clickable)
- Emails for creating accounts, payment successful, payment failed
- Bug fixes

How to Update from 2.3:
- Pull latest version, does require updates to Setup.php to merge your version with the new version
- In Sites table, change TimeZone to varchar(50), update field to your default timezone (e.g. America/Chicago). See http://php.net/manual/en/timezones.php.

ALTER TABLE Sites MODIFY TimeZone varchar(50)
UPDATE Sites SET TimeZone = 'America/Chicago'

- In Sites table, add column Type varchar(25) with a default of "Non-Subscription"

ALTER TABLE Sites ADD COLUMN Type varchar(25) NOT NULL DEFAULT 'Non-Subscription' AFTER LastLogin

- In Sites table, add column CustomerId varchar(256) with a default of NULL

ALTER TABLE Sites ADD COLUMN CustomerId varchar(256) DEFAULT NULL AFTER Type

Loading

0 comments on commit 2a58407

Please sign in to comment.