Skip to content
Merged
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: 2 additions & 0 deletions news/changelog-1.8.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## In this release

- ([#13046](https://github.com/quarto-dev/quarto-cli/issues/13046)): Use new url for multiplex socket.io server <https://multiplex.up.railway.app/> as default for `format: revealjs` and `revealjs.multiplex: true`.

## In previous releases

- ([#13369](https://github.com/quarto-dev/quarto-cli/issues/13369)): Fix failure in theme compilation when `brand.color.primary` is specified for light or dark but not both.
Expand Down
2 changes: 1 addition & 1 deletion src/format/reveal/format-reveal-multiplex.ts
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ interface RevealMultiplexToken {
url: string;
}

const kDefaultMultiplexUrl = "https://reveal-multiplex.glitch.me/";
const kDefaultMultiplexUrl = "https://multiplex.up.railway.app/";

async function revealMultiplexToken(
format: Format,
Expand Down
10 changes: 5 additions & 5 deletions src/resources/editor/tools/vs-code.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -19270,7 +19270,7 @@ var require_yaml_intelligence_resources = __commonJS({
properties: {
url: {
string: {
default: "https://reveal-multiplex.glitch.me/",
default: "https://multiplex.up.railway.app/",
description: "Multiplex token server (defaults to Reveal-hosted server)\n"
}
},
Expand Down Expand Up @@ -21908,7 +21908,7 @@ var require_yaml_intelligence_resources = __commonJS({
"The path to an XML stylesheet (XSL file) used to style the RSS\nfeed.",
{
short: "The date format to use when displaying dates (e.g.&nbsp;d-M-yyy).",
long: 'The date format to use when displaying dates (e.g.&nbsp;d-M-yyy). Learn\nmore about supported date formatting values <a href="https://deno.land/[email protected]/datetime">here</a>.'
long: 'The date format to use when displaying dates (e.g.&nbsp;d-M-yyy). Learn\nmore about supported date formatting values <a href="https://quarto.org/docs/reference/dates.html">here</a>.'
},
{
short: "The maximum length (in characters) of the description displayed in\nthe listing.",
Expand Down Expand Up @@ -24927,12 +24927,12 @@ var require_yaml_intelligence_resources = __commonJS({
mermaid: "%%"
},
"handlers/mermaid/schema.yml": {
_internalId: 197539,
_internalId: 197474,
type: "object",
description: "be an object",
properties: {
"mermaid-format": {
_internalId: 197531,
_internalId: 197466,
type: "enum",
enum: [
"png",
Expand All @@ -24948,7 +24948,7 @@ var require_yaml_intelligence_resources = __commonJS({
exhaustiveCompletions: true
},
theme: {
_internalId: 197538,
_internalId: 197473,
type: "anyOf",
anyOf: [
{
Expand Down

Large diffs are not rendered by default.

10 changes: 5 additions & 5 deletions src/resources/editor/tools/yaml/web-worker.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions src/resources/editor/tools/yaml/yaml-intelligence-resources.json
Original file line number Diff line number Diff line change
Expand Up @@ -12242,7 +12242,7 @@
"properties": {
"url": {
"string": {
"default": "https://reveal-multiplex.glitch.me/",
"default": "https://multiplex.up.railway.app/",
"description": "Multiplex token server (defaults to Reveal-hosted server)\n"
}
},
Expand Down Expand Up @@ -14880,7 +14880,7 @@
"The path to an XML stylesheet (XSL file) used to style the RSS\nfeed.",
{
"short": "The date format to use when displaying dates (e.g.&nbsp;d-M-yyy).",
"long": "The date format to use when displaying dates (e.g.&nbsp;d-M-yyy). Learn\nmore about supported date formatting values <a href=\"https://deno.land/[email protected]/datetime\">here</a>."
"long": "The date format to use when displaying dates (e.g.&nbsp;d-M-yyy). Learn\nmore about supported date formatting values <a href=\"https://quarto.org/docs/reference/dates.html\">here</a>."
},
{
"short": "The maximum length (in characters) of the description displayed in\nthe listing.",
Expand Down Expand Up @@ -17899,12 +17899,12 @@
"mermaid": "%%"
},
"handlers/mermaid/schema.yml": {
"_internalId": 197539,
"_internalId": 197474,
"type": "object",
"description": "be an object",
"properties": {
"mermaid-format": {
"_internalId": 197531,
"_internalId": 197466,
"type": "enum",
"enum": [
"png",
Expand All @@ -17920,7 +17920,7 @@
"exhaustiveCompletions": true
},
"theme": {
"_internalId": 197538,
"_internalId": 197473,
"type": "anyOf",
"anyOf": [
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ config:
multiplex:
secret: null
id: null
url: "https://reveal-multiplex.glitch.me/"
url: "https://multiplex.up.railway.app/"
2 changes: 1 addition & 1 deletion src/resources/schema/document-reveal-tools.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@
properties:
url:
string:
default: https://reveal-multiplex.glitch.me/
default: https://multiplex.up.railway.app/
description: |
Multiplex token server (defaults to Reveal-hosted server)
id:
Expand Down
Loading