Extended openApi info + deps update

This commit is contained in:
Rick van Lieshout 2024-07-07 11:51:04 +02:00
parent 8b09759e5e
commit 1f856eedbd
6 changed files with 1536 additions and 840 deletions

View File

@ -3,6 +3,13 @@
All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
<https://github.com/Times-Z>
## [5.15.0]
- Added all missing swagger/openApi info with the help of [Times-Z](https://github.com/Times-Z)
- Updated most dependency versions
- This includes Electron 31!
## [5.14.1]

View File

@ -26,7 +26,7 @@ The web version of [listen.tidal.com](https://listen.tidal.com) running in elect
- [Using source](#using-source)
- [Integrations](#integrations)
- [Known bugs](#known-bugs)
- [DRM not working on Windows](#drm-not-working-on-windows)
- [DRM not working on Windows (error S6007)](#drm-not-working-on-windows-error-s6007)
- [Special thanks to](#special-thanks-to)
- [Donations](#donations)
- [Images](#images)
@ -153,11 +153,13 @@ Integrations with other projects that are not included natively:
## Known bugs
### DRM not working on Windows
### DRM not working on Windows (error S6007)
Most Windows users run into DRM issues when trying to use TIDAL Hi-Fi.
Nothing I can do about that I'm afraid... Tidal is working on removing/changing DRM so when they finish with that we can give it another shot.
Until then you'll have to use the official app unfortunately.
## Special thanks to
- [Castlabs](https://castlabs.com/)

2313
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -1,6 +1,6 @@
{
"name": "tidal-hifi",
"version": "5.14.1",
"version": "5.15.0",
"description": "Tidal on Electron with widevine(hifi) support",
"main": "ts-dist/main.js",
"scripts": {
@ -45,12 +45,12 @@
"axios": "^1.7.2",
"cors": "^2.8.5",
"discord-rpc": "^4.0.1",
"electron-store": "^8.2.0",
"electron-store": "^8.0.0",
"express": "^4.19.2",
"hotkeys-js": "^3.13.7",
"mpris-service": "^2.1.2",
"request": "^2.88.2",
"sass": "^1.77.4",
"sass": "^1.77.6",
"swagger-ui-express": "^5.0.1"
},
"devDependencies": {
@ -58,27 +58,27 @@
"@types/cors": "^2.8.17",
"@types/discord-rpc": "^4.0.8",
"@types/express": "^4.17.21",
"@types/node": "^20.12.12",
"@types/node": "^20.14.10",
"@types/request": "^2.48.12",
"@types/swagger-ui-express": "^4.1.6",
"@typescript-eslint/eslint-plugin": "^6.18.0",
"@typescript-eslint/parser": "^6.18.0",
"@typescript-eslint/eslint-plugin": "^7.15.0",
"@typescript-eslint/parser": "^7.15.0",
"copyfiles": "^2.4.1",
"electron": "git+https://github.com/castlabs/electron-releases#v28.1.1+wvcus",
"electron-builder": "^24.9.1",
"electron": "git+https://github.com/castlabs/electron-releases#v31.1.0+wvcus",
"electron-builder": "^24.13.3",
"eslint": "^8.56.0",
"js-yaml": "^4.1.0",
"markdown-toc": "^1.2.0",
"nodemon": "^3.0.2",
"prettier": "^3.1.1",
"stylelint": "^16.1.0",
"stylelint-config-standard": "^36.0.0",
"stylelint-config-standard-scss": "^13.0.0",
"nodemon": "^3.1.4",
"prettier": "^3.3.2",
"stylelint": "^16.6.1",
"stylelint-config-standard": "^36.0.1",
"stylelint-config-standard-scss": "^13.1.0",
"stylelint-prettier": "^5.0.0",
"swagger-jsdoc": "^6.2.8",
"ts-node": "^10.9.2",
"tsc-watch": "^6.0.4",
"typescript": "^5.3.3"
"tsc-watch": "^6.2.0",
"typescript": "^5.5.3"
},
"prettier": "@mastermindzh/prettier-config"
}

View File

@ -2,7 +2,7 @@
"openapi": "3.1.0",
"info": {
"title": "TIDAL Hi-Fi API",
"version": "5.14.1",
"version": "5.15.0",
"description": "",
"license": {
"name": "MIT",
@ -64,7 +64,7 @@
},
"/player/play": {
"post": {
"summary": "Play action",
"summary": "Play the current media",
"tags": [
"player"
],
@ -84,7 +84,7 @@
},
"/player/favorite/toggle": {
"post": {
"summary": "Add the current song to your favorites, or remove it if its already added to your favorites",
"summary": "Add the current media to your favorites, or remove it if its already added to your favorites",
"tags": [
"player"
],
@ -104,7 +104,7 @@
},
"/player/pause": {
"post": {
"summary": "Pause action",
"summary": "Pause the current media",
"tags": [
"player"
],
@ -164,7 +164,7 @@
},
"/player/shuffle/toggle": {
"post": {
"summary": "Previous action",
"summary": "Play the previous song",
"tags": [
"player"
],
@ -204,7 +204,7 @@
},
"/player/playpause": {
"post": {
"summary": "Toggle play/pause",
"summary": "Start playing the media if paused, or pause the media if playing",
"tags": [
"player"
],
@ -337,7 +337,7 @@
},
"/play": {
"get": {
"summary": "Play action",
"summary": "Play the current media",
"tags": [
"legacy"
],
@ -358,7 +358,7 @@
},
"/favorite/toggle": {
"get": {
"summary": "Add the current song to your favorites, or remove it if its already added to your favorites",
"summary": "Add the current media to your favorites, or remove it if its already added to your favorites",
"tags": [
"legacy"
],
@ -379,7 +379,7 @@
},
"/pause": {
"get": {
"summary": "Pause action",
"summary": "Pause the current media",
"tags": [
"legacy"
],

View File

@ -443,7 +443,7 @@
<h4>TIDAL Hi-Fi</h4>
<div class="about-section__version">
<a target="_blank" rel="noopener"
href="https://github.com/Mastermindzh/tidal-hifi/releases/tag/5.14.1">5.14.1</a>
href="https://github.com/Mastermindzh/tidal-hifi/releases/tag/5.15.0">5.15.0</a>
</div>
<div class="about-section__links">
<a target="_blank" rel="noopener" href="https://github.com/mastermindzh/tidal-hifi/"