release v4.4.2

This commit is contained in:
idotj 2024-04-04 13:41:29 +02:00
parent f945026b16
commit 4e7c40eb42
8 changed files with 12 additions and 14 deletions

View File

@ -1,4 +1,4 @@
v4.4.1 - 04/04/2024
v4.4.2 - 04/04/2024
- Fix render emojos in warning/spoiler text
- Sanitize post content before rendering
- Add custom title for play video button

View File

@ -65,11 +65,11 @@ This option allows you to start without the need to upload any files on your ser
Copy the following CSS and JS links to include them in your project:
```html
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@idotj/mastodon-embed-timeline@4.4.1/dist/mastodon-timeline.min.css" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@idotj/mastodon-embed-timeline@4.4.2/dist/mastodon-timeline.min.css" crossorigin="anonymous">
```
```html
<script src="https://cdn.jsdelivr.net/npm/@idotj/mastodon-embed-timeline@4.4.1/dist/mastodon-timeline.umd.js" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/@idotj/mastodon-embed-timeline@4.4.2/dist/mastodon-timeline.umd.js" crossorigin="anonymous"></script>
```
### Package manager

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

4
package-lock.json generated
View File

@ -1,12 +1,12 @@
{
"name": "@idotj/mastodon-embed-timeline",
"version": "4.4.1",
"version": "4.4.2",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "@idotj/mastodon-embed-timeline",
"version": "4.4.1",
"version": "4.4.2",
"license": "GNU",
"devDependencies": {
"@rollup/plugin-terser": "^0.4.4",

View File

@ -1,6 +1,6 @@
{
"name": "@idotj/mastodon-embed-timeline",
"version": "4.4.1",
"version": "4.4.2",
"description": "Displays Mastodon timeline with posts embed in your website. Very easy to setup, no dependencies, no trackers, cross-browser, WCAG compliant and fully responsive.",
"license": "GNU",
"author": {

View File

@ -1,4 +1,4 @@
/* Mastodon embed timeline v4.4.1 */
/* Mastodon embed timeline v4.4.2 */
/* More info at: */
/* https://gitlab.com/idotj/mastodon-embed-timeline */

View File

@ -1,7 +1,7 @@
/**
* Mastodon embed timeline
* @author idotj
* @version 4.4.1
* @version 4.4.2
* @url https://gitlab.com/idotj/mastodon-embed-timeline
* @license GNU AGPLv3
*/
@ -1530,7 +1530,6 @@ export class Init {
*/
#addPostListener() {
this.mtBodyNode.addEventListener("click", (e) => {
console.log("click on: ", e);
const target = e.target;
const localName = target.localName;
const parentNode = target.parentNode;
@ -1575,7 +1574,6 @@ export class Init {
(parentNode.getAttribute("data-media-type") === "video" ||
parentNode.getAttribute("data-media-type") === "gifv"))
) {
console.log("loadPostVideo");
this.#loadPostVideo(e);
}
});