From 20ee64ba1e1fb2b435ac8a70c3a1edeec2833388 Mon Sep 17 00:00:00 2001 From: Steffen Date: Wed, 8 Jun 2022 12:59:17 +0200 Subject: [PATCH 1/4] Update TextformatterVideoEmbedOptions.config.json vimeo do not track --- TextformatterVideoEmbedOptions.config.json | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/TextformatterVideoEmbedOptions.config.json b/TextformatterVideoEmbedOptions.config.json index 2a8b9a3..44c6a46 100644 --- a/TextformatterVideoEmbedOptions.config.json +++ b/TextformatterVideoEmbedOptions.config.json @@ -194,5 +194,12 @@ "label": "Vimeo: Show Title", "description": "Show the title on the video.", "notes": "Defaults to 1." + }, + "vm_dnt": { + "type": null, + "value": true, + "label": "Vimeo: Do Not Track", + "description": "Setting this parameter to "true" will block the player from tracking any session data, including all cookies and analytics. (Will have the same effect as enabling a Do Not Track setting in your browser).", + "notes": "Defaults to true here. (Vimeos default is false, though)." } -} \ No newline at end of file +} From 0afa690597b1d88ce69b52363c4f6251e335a733 Mon Sep 17 00:00:00 2001 From: Steffen Date: Wed, 8 Jun 2022 13:07:40 +0200 Subject: [PATCH 2/4] escape quotes When you edit code in github ... --- TextformatterVideoEmbedOptions.config.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TextformatterVideoEmbedOptions.config.json b/TextformatterVideoEmbedOptions.config.json index 44c6a46..1a26074 100644 --- a/TextformatterVideoEmbedOptions.config.json +++ b/TextformatterVideoEmbedOptions.config.json @@ -199,7 +199,7 @@ "type": null, "value": true, "label": "Vimeo: Do Not Track", - "description": "Setting this parameter to "true" will block the player from tracking any session data, including all cookies and analytics. (Will have the same effect as enabling a Do Not Track setting in your browser).", + "description": "Setting this parameter to \"true\" will block the player from tracking any session data, including all cookies and analytics. (Will have the same effect as enabling a Do Not Track setting in your browser).", "notes": "Defaults to true here. (Vimeos default is false, though)." } } From c7e6b68089e2ac2c59c5791e61af87bf8c9a9d92 Mon Sep 17 00:00:00 2001 From: Steffen Date: Wed, 8 Jun 2022 13:09:16 +0200 Subject: [PATCH 3/4] use string "true" value --- TextformatterVideoEmbedOptions.config.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TextformatterVideoEmbedOptions.config.json b/TextformatterVideoEmbedOptions.config.json index 1a26074..29ed1e4 100644 --- a/TextformatterVideoEmbedOptions.config.json +++ b/TextformatterVideoEmbedOptions.config.json @@ -197,7 +197,7 @@ }, "vm_dnt": { "type": null, - "value": true, + "value": "true", "label": "Vimeo: Do Not Track", "description": "Setting this parameter to \"true\" will block the player from tracking any session data, including all cookies and analytics. (Will have the same effect as enabling a Do Not Track setting in your browser).", "notes": "Defaults to true here. (Vimeos default is false, though)." From 568055df1ee1c4da83303ae59349589da04220da Mon Sep 17 00:00:00 2001 From: Steffen Date: Wed, 15 Jun 2022 20:00:46 +0200 Subject: [PATCH 4/4] Use number instead of string for vm_dnt setting --- TextformatterVideoEmbedOptions.config.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/TextformatterVideoEmbedOptions.config.json b/TextformatterVideoEmbedOptions.config.json index 29ed1e4..3954b56 100644 --- a/TextformatterVideoEmbedOptions.config.json +++ b/TextformatterVideoEmbedOptions.config.json @@ -197,9 +197,9 @@ }, "vm_dnt": { "type": null, - "value": "true", + "value": 1, "label": "Vimeo: Do Not Track", - "description": "Setting this parameter to \"true\" will block the player from tracking any session data, including all cookies and analytics. (Will have the same effect as enabling a Do Not Track setting in your browser).", - "notes": "Defaults to true here. (Vimeos default is false, though)." + "description": "Setting this parameter to 1 will block the player from tracking any session data, including all cookies and analytics. (Will have the same effect as enabling a Do Not Track setting in your browser).", + "notes": "Defaults to 1 here. (Vimeos default is 0, though)." } }