Skip to content

Commit

Permalink
Fix memory offset for track id on 64 bit (#9)
Browse files Browse the repository at this point in the history
* add offset for 64 Bit version of 1.2.26.1187.g36b715a1

* 1.1.17
  • Loading branch information
jumpingpxl committed Dec 17, 2023
1 parent 2dbb225 commit 4d64626
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion build.gradle
Expand Up @@ -4,7 +4,7 @@ plugins {
}

group 'de.labystudio'
version '1.1.16'
version '1.1.17'

compileJava {
sourceCompatibility = '1.8'
Expand Down
Expand Up @@ -18,6 +18,7 @@ public class SpotifyProcess extends WinProcess {
// Spotify track id
private static final String PREFIX_SPOTIFY_TRACK = "spotify:track:";
private static final long[] OFFSETS_TRACK_ID = {
0x154A60, // 64-Bit (1.2.26.1187.g36b715a1)
0x14FA30, // 64-Bit (1.2.21.1104.g42cf0a50)
0x106198, // 32-Bit (1.2.21.1104.g42cf0a50)
0x14C9F0, // 64-Bit (Old)
Expand Down

0 comments on commit 4d64626

Please sign in to comment.