Skip to content
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
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
(e.g., `/connect`). (#2999)
- Fixed text and button alignment in webview (#3071)

### Added

- Added support for deploying Quarto Shiny content to Connect Cloud (#3265)

## [1.24.0]

### Added
Expand Down
2 changes: 1 addition & 1 deletion internal/clients/types/types.go
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ func CloudContentTypeFromPublisherType(contentType contenttypes.ContentType) (Co
return ContentTypeShiny, nil
case contenttypes.ContentTypePythonStreamlit:
return ContentTypeStreamlit, nil
case contenttypes.ContentTypeQuartoDeprecated, contenttypes.ContentTypeQuarto:
case contenttypes.ContentTypeQuartoDeprecated, contenttypes.ContentTypeQuarto, contenttypes.ContentTypeQuartoShiny:
return ContentTypeQuarto, nil
case contenttypes.ContentTypeRMarkdown:
return ContentTypeRMarkdown, nil
Expand Down