Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Addressing bugs #10

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ For all changes prior to the inception of this project, see the [Release History
## Versions
## [Unreleased]

## [v3.1.0] - 2024-12-31
## [v3.1.0] - 2024-12-31 (gem yanked, pending resolution of [Issue 8](https://github.com/shakacode/comfortable-media-surfer/issues/8))

### Added

Expand Down
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,12 @@ UPDATE comfy_cms_revisions SET record_type = 'Comfy::Cms::Layout' WHERE record_t
UPDATE comfy_cms_revisions SET record_type = 'Comfy::Cms::Snippet' WHERE record_type = 'Occams::Cms::Snippet';
```

If you are using ActiveStorage

```sql
UPDATE active_storage_attachments SET record_type = 'Comfy::Cms::File' WHERE record_type = 'Occams::Cms::File';
```

## Quick Start Guide

After finishing installation you should be able to navigate to http://localhost:3000/admin
Expand Down
8 changes: 0 additions & 8 deletions lib/generators/comfy/cms/README
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,3 @@ Then go to http://your-rails-app/admin to start adding content.

Default username and password are: user / pass
Change these defaults in config/initializers/occams.rb

----------------------------
IF YOU ARE ON RAILS 6.x
----------------------------
and encounter errors referencing webpacker:
ensure that you have nvm installed, and then run
- nvm install 13.7 && nvm use 13.7
- rails webpacker:install