Skip to content

Commit 01ce3cd

Browse files
author
lijiahao
committed
Custom TURN server
1 parent 7fa9cf4 commit 01ce3cd

40 files changed

Lines changed: 2083 additions & 1991 deletions

app/background.js

Lines changed: 5 additions & 2 deletions
Large diffs are not rendered by default.

app/preload.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

flatpak/io.github.Geocld.XStreamingDesktop.metainfo.xml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,14 @@
3434
</screenshot>
3535
</screenshots>
3636
<releases>
37+
<release version="1.8.3" date="2025-07-16">
38+
<description>
39+
<ul>
40+
<li>Feature:</li>
41+
<li>Enable custom TURN server.</li>
42+
</ul>
43+
</description>
44+
</release>
3745
<release version="1.8.2" date="2025-07-05">
3846
<description>
3947
<ul>

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"private": true,
33
"name": "xstreaming",
44
"description": "xstreaming",
5-
"version": "1.8.2",
5+
"version": "1.8.3",
66
"author": "Geocld <lijiahao5372@gmail.com>",
77
"main": "app/background.js",
88
"scripts": {
@@ -15,7 +15,7 @@
1515
"flatpak-build": "nextron build --no-pack && electron-builder --dir"
1616
},
1717
"dependencies": {
18-
"@nextui-org/react": "^2.4.6",
18+
"@heroui/react": "^2.8.1",
1919
"axios": "^1.7.7",
2020
"compare-versions": "^6.1.0",
2121
"debounce": "^2.1.1",
@@ -39,7 +39,7 @@
3939
"uplot": "^1.6.30",
4040
"uuid-1345": "^1.0.2",
4141
"xbox-webapi": "^1.4.1",
42-
"xstreaming-player": "0.2.17",
42+
"xstreaming-player": "0.2.18",
4343
"xvfb-maybe": "^0.2.1"
4444
},
4545
"devDependencies": {

renderer/components/AchivementModal.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import {
99
Progress,
1010
Card,
1111
CardBody
12-
} from "@nextui-org/react";
12+
} from "@heroui/react";
1313
import { useTranslation } from "next-i18next";
1414
import Image from "next/image";
1515

renderer/components/ActionBar.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import {
55
DropdownTrigger,
66
DropdownMenu,
77
DropdownItem,
8-
} from "@nextui-org/react";
8+
} from "@heroui/react";
99
// import Ipc from "../lib/ipc";
1010
import { useSettings } from "../context/userContext";
1111

renderer/components/Alert.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import {
55
ModalBody,
66
ModalFooter,
77
Button,
8-
} from "@nextui-org/react";
8+
} from "@heroui/react";
99
import { useTranslation } from "next-i18next";
1010

1111
function Alert(props) {

renderer/components/Audio.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import {
44
ModalHeader,
55
ModalBody,
66
Slider,
7-
} from "@nextui-org/react";
7+
} from "@heroui/react";
88
import { useTranslation } from "next-i18next";
99

1010
function Audio(props) {

renderer/components/AuthModal.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import {
66
ModalBody,
77
ModalFooter,
88
Button,
9-
} from "@nextui-org/react";
9+
} from "@heroui/react";
1010
import { useTranslation } from 'next-i18next';
1111

1212
const AuthModal = ({ show, onConfirm }) => {

renderer/components/ConfirmModal.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import {
55
ModalBody,
66
ModalFooter,
77
Button,
8-
} from "@nextui-org/react";
8+
} from "@heroui/react";
99
import { useTranslation } from "next-i18next";
1010

1111
function ConfirmModal(props) {

0 commit comments

Comments
 (0)