Compare commits

..

8 Commits

Author SHA1 Message Date
Janis
1cac2ca77f change version in auth payload 2023-10-07 15:22:49 +02:00
Janis
f6bf559612 update to version 1.2.3 2023-10-07 15:22:30 +02:00
Janis
15f18ecf31 Merge branch 'main' of https://github.com/DerTyp7/ts5-obs-overlay 2023-10-07 15:20:47 +02:00
Janis
6998f7cbbf add github actions deploy 2023-10-07 15:20:46 +02:00
Janis
bb707b7450 Update README.md 2023-10-07 15:10:26 +02:00
Janis
1afc82ff93 Update dependabot.yml 2023-09-08 11:00:45 +02:00
Janis
9f11fa0241 updated version 2023-08-03 00:14:58 +02:00
Janis
33a6e20e00 updated api version 2023-08-03 00:13:52 +02:00
6 changed files with 43 additions and 11 deletions

View File

@@ -7,4 +7,4 @@ updates:
- package-ecosystem: "npm" # See documentation for possible values
directory: "/" # Location of package manifests
schedule:
interval: "weekly"
interval: "monthly"

31
.github/workflows/deploy.yml vendored Normal file
View File

@@ -0,0 +1,31 @@
name: Deploy to GitHub Pages on Release
on:
release:
types:
- created
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: '18'
- name: Install dependencies
run: npm install
- name: Build
run: npm run build
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./dist

View File

@@ -1,6 +1,6 @@
# Teamspeak5-OBS-Overlay
This is a overlay for OBS to show the current talking clients in your Teamspeak 5 Channel.
This is an overlay for OBS to show the current talking clients in your Teamspeak 5 Channel.
This App uses the new "Remote Apps" feature of Teamspeak 5.
This overlay uses the [Teamspeak 5 Remote App API](https://github.com/DerTyp7/react-ts5-remote-app-api).

12
package-lock.json generated
View File

@@ -1,19 +1,19 @@
{
"name": "ts5-obs-overlay",
"version": "1.2.0",
"version": "1.2.1",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "ts5-obs-overlay",
"version": "1.2.0",
"version": "1.2.1",
"dependencies": {
"@types/node": "^20.4.5",
"jest": "^29.6.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.14.2",
"react-ts5-remote-app-api": "^1.1.0",
"react-ts5-remote-app-api": "^1.1.1",
"sass": "^1.64.1"
},
"devDependencies": {
@@ -4836,9 +4836,9 @@
}
},
"node_modules/react-ts5-remote-app-api": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/react-ts5-remote-app-api/-/react-ts5-remote-app-api-1.1.0.tgz",
"integrity": "sha512-H7Y7sLkZ8cgT+gWRbf3uBR4HqhT9EFuSyaHM86WXYcirjppEy1fO3vxAG/jm9o7sV6JZ8wkxgc9oHoByeOuplw==",
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/react-ts5-remote-app-api/-/react-ts5-remote-app-api-1.1.1.tgz",
"integrity": "sha512-bPgbk3NA2JTsm6itE+CCq6/aC1eofkL1hG/rZWuAB89lK5luPAD3nNuTJ3fkAuQD6WFwkScZpj7FAHqgxJDZCA==",
"dependencies": {
"@rollup/plugin-typescript": "^11.1.2",
"react": "^16.8.0 || ^17.0.0 || ^18.0.0",

View File

@@ -1,7 +1,7 @@
{
"name": "ts5-obs-overlay",
"private": true,
"version": "1.2.1",
"version": "1.2.3",
"type": "module",
"scripts": {
"dev": "vite",
@@ -15,7 +15,7 @@
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.14.2",
"react-ts5-remote-app-api": "^1.1.0",
"react-ts5-remote-app-api": "^1.1.1",
"sass": "^1.64.1"
},
"devDependencies": {

View File

@@ -11,10 +11,11 @@ export default function App() {
remoteAppPort: parseInt(searchParams.get("remoteAppPort") ?? "5899"),
auth: {
identifier: "de.tealfire.obs",
version: "1.2.1",
version: "1.2.3",
name: "TS5 OBS Overlay",
description: "A OBS overlay for TS5 by DerTyp876",
},
logging: true,
});
return (