Skip to content

Commit

Permalink
update readme and stuff
Browse files Browse the repository at this point in the history
Signed-off-by: Conrad Hübler <Conrad.Huebler@gmx.net>
  • Loading branch information
conradhuebler committed Dec 26, 2024
1 parent aecf1f3 commit dfabc61
Show file tree
Hide file tree
Showing 10 changed files with 319 additions and 505 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,5 @@ This might be one day a Tidal Player for Sailfish OS using the tidalapi v0.7.1 (
### TIDAL API useage
As v0.7.1 is not fully compatible with TIDAL anymore, the line 114 of tidalapi/user.py is removed during the packaging process.

### Usage of AI
The current development is driven by Claude 3.5 Sonnet. The icon is made by Midjourney.
Binary file modified harbour-tidalplayer.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 4 additions & 2 deletions qml/components/AuthManager.qml
Original file line number Diff line number Diff line change
Expand Up @@ -43,13 +43,15 @@ Item {
function checkAndLogin() {
if (token_type.value && access_token.value) {
if (isTokenValid()) {
tidalApi.loginIn(token_type.value,
console.log("old token valid");
pythonApi.loginIn(token_type.value,
access_token.value,
refresh_token.value,
expiry_time.value)
} else {
// Token abgelaufen, mit Refresh Token versuchen
tidalApi.loginIn(token_type.value,
console.log("old token invalid");
pythonApi.loginIn(token_type.value,
refresh_token.value,
refresh_token.value,
expiry_time.value)
Expand Down
Loading

0 comments on commit dfabc61

Please sign in to comment.