Skip to content

Commit 525fcdd

Browse files
Merge pull request #16 from pexip/15-release-120
chore: release 1.2.0
2 parents 759a325 + 9567411 commit 525fcdd

4 files changed

Lines changed: 17 additions & 6 deletions

File tree

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,17 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](http://keepachangelog.com/) and this
66
project adheres to [Semantic Versioning](http://semver.org/).
77

8+
## [1.2.0] - 2025-08-13
9+
10+
### Added
11+
12+
- Support for i18n and two languages: English and Dutch.
13+
14+
### Changed
15+
16+
- Update dependencies to latest versions.
17+
- Move the buttons from the settings panel to the toolbar.
18+
819
## [1.1.0] 2024-08-30
920

1021
### Added

package-lock.json

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "message-overlay",
3-
"version": "1.1.0",
3+
"version": "1.2.0",
44
"description": "Plugin that allows the host to display messages embedded in the video stream.",
55
"main": "index.js",
66
"scripts": {
@@ -10,7 +10,7 @@
1010
},
1111
"keywords": [],
1212
"author": "",
13-
"license": "ISC",
13+
"license": "Apache-2.0",
1414
"type": "module",
1515
"dependencies": {
1616
"@pexip/plugin-api": "21.1.2",

src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { setPlugin } from './plugin'
66
import { logger } from './logger'
77
import { i18next } from './i18n'
88

9-
const version = 1
9+
const version = 2
1010

1111
const icon =
1212
'<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px" fill="rgb(50, 50, 50)"><path d="M240-320h320v-80H240v80Zm400 0h80v-80h-80v80ZM240-480h80v-80h-80v80Zm160 0h320v-80H400v80ZM160-160q-33 0-56.5-23.5T80-240v-480q0-33 23.5-56.5T160-800h640q33 0 56.5 23.5T880-720v480q0 33-23.5 56.5T800-160H160Zm0-80h640v-480H160v480Zm0 0v-480 480Z"/></svg>'

0 commit comments

Comments
 (0)