Skip to content
Open
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
12 changes: 10 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Spoti15
### A Spotify Applet for the Logitech G15/G510S
### A Spotify Applet for the Logitech G15/G510S/G13

---
The original developer has abandoned the project so I've kept this applet updated to work with the latest version of [SpotifyAPI-NET](https://github.com/JohnnyCrazy/SpotifyAPI-NET) and updated it with new features.
Expand All @@ -17,7 +17,7 @@

2\. Create a new applet in the Spotify Developer Dashboard. Save the Client ID and Secret ID.

3\. In the Applet page of the Spotify Developer Dashboard, under 'Edit Settings' enter the following URI to the 'Redirect URIs' whitelist: `http://localhost:4002`. Then click 'Add' and finally 'Save'.
3\. In the Applet page of the Spotify Developer Dashboard, under 'Edit Settings' enter the following URI to the 'Redirect URIs' whitelist: `http://127.0.0.1:4002`. Then click 'Add' and finally 'Save'.

4\. Run Spoti15. Use the Client ID and Secret ID in the web browser window that pops up.

Expand Down Expand Up @@ -70,6 +70,14 @@ Pressing the left button (button 0) will go to the previous song. Pressing the l

### *Changelog:*
```
v2.0.2 [November 27 2025]
+ Fixed the hard-coded Localhost use breaking the entire connection between Spoti15 and Spotify

v2.0.1 [April 20 2020]
+ Fixed a NullReferenceException.
+ Fixed some overlapping text.
+ Fixed some errors with Artist playback mode.

v2.0.0 [April 12 2020]
+ Updated SpotifyAPI-NET, total rewrite of the software

Expand Down
2 changes: 1 addition & 1 deletion Spoti15.cs
Original file line number Diff line number Diff line change
Expand Up @@ -409,7 +409,7 @@ private async void OnAuthReceived(object sender, AuthorizationCode payload)

private void Authorize()
{
var url = "http://localhost:4002";
var url = "http://127.0.0.1:4002";

System.Diagnostics.Debug.Write("Re-authorize\r\n");
auth?.Stop();
Expand Down