Age | Commit message (Collapse) | Author | |
---|---|---|---|
2020-09-12 | Fix #1001 playlist timestamps showing UTC time still | Scott Jackson | |
2020-09-12 | Fix hard crash when storage issues are preventing saving/loading stuff | Scott Jackson | |
2020-09-12 | Stop the constant logcat spam from decrypting passwords | Scott Jackson | |
2020-05-26 | Merge pull request #993 from MyNameIsTroll/patch-1 | Scott Jackson | |
Corrections strings.xml | |||
2020-05-23 | Corrections strings.xml | MyNameIsTroll | |
some corrections, spelling mistakes. | |||
2020-02-07 | Merge pull request #957 from KBerstene/bugfix/oreoWidgetIntents | Scott Jackson | |
Bugfix for widget PendingIntents on Android Oreo and higher | |||
2020-02-07 | Merge pull request #980 from Kakadua/fix-intentextradata | Scott Jackson | |
Fix for send log not working properly | |||
2020-02-07 | Merge pull request #984 from Kakadua/fix-decadesmax2010 | Scott Jackson | |
Fix for decades maxing out at 2010 | |||
2020-02-01 | Decades where hardcoded to max out at 2010, this fixes it so the current ↵ | Patrik | |
decade is always max | |||
2020-01-15 | Fix for extra data not being passed to email intent when sending log files. ↵ | Patrik | |
Requires the minSdk to be bumped one step to 15 but that shouldn't really be a problem today. | |||
2019-09-12 | Merge pull request #964 from Kakadua/audio-focus-lost | Scott Jackson | |
Bugfix for pause on losing focus | |||
2019-08-31 | When loosing focus with TRANSIENT_MAY_DUCK the app would no longer run ↵ | Patrik | |
onAudioFocusChange This fixes that | |||
2019-06-05 | Bugfix for widget PendingIntents on Android Oreo and higher | Kevin T. Berstene | |
2019-04-08 | Merge pull request #945 from KBerstene/feature/encryptedPasswords | Scott Jackson | |
Added password encryption for SDK 23 and higher | |||
2019-04-08 | Merge pull request #946 from KBerstene/bugfix/autoMissingAlbumArt | Scott Jackson | |
Bugfix for album art not appearing in Auto notifications | |||
2019-04-05 | Bugfix for album art not appearing in Auto notifications | Kevin T. Berstene | |
2019-04-01 | Added password encryption for SDK 23 and higher | Kevin T. Berstene | |
2018-12-07 | Merge pull request #923 from Koenvh1/edge | Scott Jackson | |
Fix Chromecast routes | |||
2018-12-07 | Fix Chromecast routes | Koen | |
2018-12-07 | Merge pull request #4 from daneren2005/edge | Koen | |
5.4.4 | |||
2018-11-26 | Merge pull request #917 from vrih/fix/#916 | Scott Jackson | |
Fix failing test #916 | |||
2018-11-26 | Merge pull request #920 from vrih/fix/stop-on-downvote | Scott Jackson | |
Stop current track if rated bad and empty playlist | |||
2018-11-24 | Stop current track if rated bad and empty playlist | Daniel Bowman | |
2018-11-23 | Update ServerProxy gradle version | Scott Jackson | |
2018-11-23 | Merge pull request #913 from vrih/feature/gradle-3 | Scott Jackson | |
Upgrade to gradle 3.2.1 | |||
2018-11-22 | Fix failing test #916 | Daniel Bowman | |
Testing previous relies on the player state. The test in it's current form relies on too many side effects for a good unit test. Setting the player state manually for now. | |||
2018-11-18 | Upgrade to gradle 3.2.1 | Daniel Bowman | |
2018-10-31 | Merge pull request #906 from glennguy/edge | Scott Jackson | |
Don't call shutGoogleUpNotification when service is already in foreground | |||
2018-10-29 | Don't call shutGoogleUpNotification when service is already in foreground | Glenn Guy | |
Since adding the call to shutGoogleUpNotification to onStartCommand, using the controls on the notification would always remove the current notification which is pretty annoying. This fixes that unwanted behaviour and I think is much nicer than blindly calling it every time. | |||
2018-10-27 | Merge pull request #905 from vrih/fix/avatar-error | Scott Jackson | |
Don't log error if avatar isn't available | |||
2018-10-27 | Merge pull request #904 from vrih/fix/failing-tests | Scott Jackson | |
Fix Genre comparator to pass unit tests | |||
2018-10-27 | Don't log error if avatar isn't available | Daniel Bowman | |
2018-10-27 | Fix Genre comparator to pass unit tests | Daniel Bowman | |
2018-10-26 | Add changelog for 5.4.4 | Scott Jackson | |
2018-10-26 | Merge branch 'glennguy-edge' into edge | Scott Jackson | |
2018-10-25 | Update gradle version to be the same as what we have in target-sdk-23 | Scott Jackson | |
2018-10-25 | Merge remote-tracking branch 'glennguy/edge' into glennguy-edge | Scott Jackson | |
2018-10-22 | Merge pull request #900 from vrih/fix/download-service-crash-empty-playlist | Scott Jackson | |
Fix a crash on getRecentDownloads if playlist is empty | |||
2018-10-20 | Fix a crash on getRecentDownloads if playlist is empty | Daniel Bowman | |
2018-10-17 | requestAudioFocus not behaving properly | Glenn Guy | |
Other apps were only triggering the listener if I had started dsub from Android Auto It seems that the AudioManager instance needs to come from application context rather than the service - I found the hint here: https://stackoverflow.com/a/14129015 | |||
2018-10-17 | Ensure startForeground() is called | Glenn Guy | |
Fixes #890 | |||
2018-10-13 | Fix again registering/unregistering AudioNoisyReceiver | Glenn Guy | |
Moved to onCreate()/onDestroy() rather than start() stop() and pause() - receiver would not be registered in some cases causing and exception to occur and audio playback to continue when bluetooth is disconnected. | |||
2018-10-12 | Fix playback pausing when disconnecting bluetooth | Glenn Guy | |
2018-10-11 | Fix metadata lag and missing artist/album/duration on Pie | Glenn Guy | |
Android Pie takes the metadata from the queue. Missing the Description (album) metadata seems to cause it to wait a few seconds (this error in the log - `2018-10-11 23:39:14.757 31985-31985/? D/NewAvrcpMediaPlayerWrapper: Metadata currently out of sync for github.daneren2005.dsub`) before sending the info over AVRCP. | |||
2018-10-11 | Remove registerMediaButtonEventReceiver for API >= 21 | Glenn Guy | |
Finally figured out that this was causing an extra controller to be registered with the AVRCP module. With DSub as the only media app running the log would show `V/NewAvrcpMediaPlayerList: onActiveSessionsChanged: number of controllers: 0` on entry into the app and would increase to 2 shortly after. On Android Pie this causes problems as the new AVRCP module's logic is causing the metadata to be sent through to the wrong controller. I'm not sure if you think I've gone about it in the correct way but I've removed the setting for media buttons as well for Lollipop onwards, considering that this setting has no effect anyway on >= 21. | |||
2018-10-11 | Migrate media libraries to support v4 | Glenn Guy | |
2018-10-10 | Merge pull request #3 from daneren2005/edge | Koen | |
5.4.3 | |||
2018-09-11 | Merge pull request #883 from glennguy/edge | Scott Jackson | |
AA voice search improvements | |||
2018-09-11 | Dsub 5.4.3 released | Scott Jackson | |
2018-09-08 | AA voice search improvements | Glenn Guy | |
Specific song requests weren't doing anything, and requests to 'play some (artist)' would queue up albums in chronological order. Single songs now working, and artist requests will shuffle which is in line with other services like spotify etc. |