Skip to content

Commit

Permalink
did some more work. Mainly worked on code cleanliness and hotkey supp…
Browse files Browse the repository at this point in the history
  • Loading branch information
Mastermindzh committed Oct 20, 2019
1 parent cbf1596 commit 9c3ac88
Show file tree
Hide file tree
Showing 14 changed files with 1,672 additions and 122 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
node_modules
node_modules
dist
23 changes: 23 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
MIT License

Copyright (c) 2019 Rick van Lieshout (Mastermindzh)

Online version: https://choosealicense.com/licenses/mit/

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
48 changes: 42 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,23 +1,59 @@
# tidal-hifi-electron
<img src = "./build/icon.png" height="50" style="float:right; margin-top: 29px;" />
# Tidal-hifi

The web version of [listen.tidal.com](listen.tidal.com) running in electron with hifi support thanks to widevine.

![tidal-hifi preview](./docs/preview.png)

<!-- toc -->

- [Installation](#installation)
- [Using releases](#using-releases)
- [Using source](#using-source)
- [Why](#why)
- [Requirements](#requirements)
- [Integrations](#integrations)
- [Why not extend existing projects?](#why-not-extend-existing-projects)
- [Special thanks to..](#special-thanks-to)

<!-- tocstop -->

## Why
## Installation

When I started this project there weren't any Linux apps that offered Tidal's "hifi" options nor any scripts to control it.
### Using releases

Various packaged versions of the software are available on the [releases](https://github.com/Mastermindzh/tidal-hifi/releases) tab.

### Using source

To install and work with the code on this project follow these steps:

- git clone https://github.com/Mastermindzh/tidal-hifi.git
- cd tidal-hifi
- npm install
- npm start

## Why

## Requirements
I moved from Spotify over to Tidal and found Linux support to be lacking.

- Internet connection
When I started this project there weren't any Linux apps that offered Tidal's "hifi" options nor any scripts to control it.

## Integrations

- [i3 blocks config]() - My dotfiles where I use this app to fetch currently playing music

## Why not extend existing projects?

Whilst there are a handful of projects attempting to run Tidal on Electron they are all unappealing to me because of various reasons:

- Lack of a maintainers/developers. (no hotfixes, no issues being handled etc)
- Most are simple web wrappers, not my cup of tea.
- Some are DE oriented. I want this to work on WM's too.
- None have widevine working at the moment and that is really the hardest part..

Sometimes it's just easier to start over, cover my own needs and then making it available to the public :)

## Special thanks to..

- [Castlabs](https://castlabs.com/)
For maintaining Electron with Widevine CDM installation, Verified Media Path (VMP), and persistent licenses (StorageID)
17 changes: 17 additions & 0 deletions build/electron-builder.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
appId: com.rickvanlieshout.tidal-hifi
snap:
plugs:
- default
- screen-inhibit-control
linux:
category: Audio
target:
- pacman
- tar.gz
- deb
- AppImage
- snap
mac:
category: public.app-category.entertainment
win:
target: msi
Binary file added build/icon.ico
Binary file not shown.
Binary file added build/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/preview.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 9c3ac88

Please sign in to comment.