├── .gitignore ├── README.md ├── build └── icon.ico └── screenshot.png /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | dist/ 3 | .DS_Store 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Harmony 2 | 3 |

4 | Harmony Screenshot 5 |

6 | 7 |

8 | Total Downloads 9 |

10 | 11 | * Play music from SoundCloud, Google Play Music, Spotify, Deezer, Hype Machine, YouTube, Reddit or your local tracks 12 | * All your playlists within the same app 13 | * Sound menu integration or system tray for incompatible systems 14 | * Last.fm scrobbling 15 | * Super sleek interface 16 | * Dark mode (Cmd/Ctrl + D) 17 | * Keyboard control 18 | * Distraction-free 19 | * Background notifications 20 | 21 | ## Download 22 | 23 | Download Harmony from the [website](https://getharmony.xyz/download). 24 | 25 | ## Reporting issues 26 | 27 | Please indicate your operating system, Harmony's version and if you can, steps to reproduce the bug. 28 | 29 | Also, please include the log of Harmony (Cmd/Ctrl + Alt + i, console tab). 30 | 31 | Altough you can submit feature requests, keep in mind that I only prioritize requests coming from [paying users](https://getharmony.xyz/buy). 32 | 33 | ## Where is the source code? 34 | 35 | Harmony used to be an open-source software. It is now a free-to-evaluate software, but you need a license for continued use. 36 | 37 | I explain this decision [here](https://getharmony.xyz/buy). 38 | 39 | You can still access the source code prior to the 0.5.0 release on this repo. 40 | 41 | 42 | [![Metrics powered By Nucleus](http://nucleus.sh/banner_small.png)](https://nucleus.sh) -------------------------------------------------------------------------------- /build/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincelwt/harmony/8d86eb714c4fe8c3611477a59d6792fd74dc6b58/build/icon.ico -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincelwt/harmony/8d86eb714c4fe8c3611477a59d6792fd74dc6b58/screenshot.png --------------------------------------------------------------------------------