Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix Electron vulnerabilities #41

Merged
merged 2 commits into from
Oct 26, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
[![GitHub downloads](https://img.shields.io/github/downloads/SietseT/ElundusCoreApp/total?style=flat-square)]()
[![GitHub issues](https://img.shields.io/github/issues/SietseT/ElundusCoreApp?style=flat-square)]()

Elundus Core is a desktop application you can use to simulate/preview text-to-speech (TTS) voice messages for Twitch. It's a port of the website https://www.elunduscore.com that I've initially created for the same purpose.
Elundus Core is a desktop application you can use to simulate/preview text-to-speech (TTS) voice messages for Twitch. It's a port of the website that I've initially created for the same purpose.

<details>
<summary><b>Screenshot</b></summary>
Expand Down Expand Up @@ -44,7 +44,7 @@ Elundus Core is a desktop application you can use to simulate/preview text-to-sp
---

# How it works
The frontend, apart from a few minor tweaks, is exactly the same as the https://www.elunduscore.com website that I've made. But instead of calling an external API, the application comes bundled with it's own API which in turn calls the [Streamlabs](https://streamlabs.com) API to convert the text-to-speech.
The frontend, apart from a few minor tweaks, is exactly the same as the website that I've made. But instead of calling an external API, the application comes bundled with it's own API which in turn calls the [Streamlabs](https://streamlabs.com) API to convert the text-to-speech.

---

Expand Down
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "elundus-core",
"description": "Use this simple desktop application to simulate StreamElements text-to-speech (TTS) voice messages for Twitch. Hear how a donation for your favorite streamer sounds like!",
"version": "0.6.2",
"version": "0.6.3",
"author": {
"name": "Sietse Trommelen"
},
Expand All @@ -12,7 +12,7 @@
"build": {
"appId": "sito.elunduscore",
"productName": "Elundus Core",
"copyright": "Copyright © 2021 ${author}",
"copyright": "Copyright © 2023 ${author}",
"win": {
"icon": "public/icon.png"
},
Expand All @@ -39,7 +39,7 @@
"cors": "^2.8.5",
"electron-is-dev": "^2.0.0",
"electron-log": "^4.3.3",
"electron-updater": "^4.3.8",
"electron-updater": "^6.1.4",
"express": "^4.17.1",
"react": "^17.0.2",
"react-bootstrap": "^1.5.2",
Expand Down Expand Up @@ -82,8 +82,8 @@
]
},
"devDependencies": {
"electron": "^16.0.6",
"electron-builder": "^22.14.5",
"electron": "^27.0.2",
"electron-builder": "^24.6.4",
"prop-types": "^15.7.2"
}
}
Loading