mspertus

Results 10 comments of mspertus

Google Play/My Library/Songs and then press Shuffle All

Thanks. To be more specific, just pressing "Shuffle All" starts the library playing. There is no need to press play.

Thank you for the new release. This now works in the web interface, but I noticed it didn't work in iPeng. After posting in the iPeng support thread, Pippin responded...

Thanks Hechtus How do I randomly select 500 tracks from the library as you suggested? Regarding iPeng, I will ask Pippin for more information.

Hmmm, I'm running 7.8.0 - 1395409907, which always uses port 80 for https, and I'm experiencing the same problem (no audio but everything else works), so I think there is...

Upgrading to the latest 7.9 nightly did the trick. I'm working now! Thanks!

It looks like the problem is with it computing the wrong aggregate arity for tuple. Adding the following specialization seems to fix it (although note that there is [another problem](https://github.com/p-ranav/alpaca/issues/23)...

Thanks for the quick response. Unfortunately, same problem if I write it with `MyType` ```c++ #include #include #include std::vector bytes; struct MyType { std::tuple t{1, 2.3}; }; MyType m; #include...

Of course. Yes, that seems to work. It also seems to resolve [my other issue](https://github.com/p-ranav/alpaca/issues/23) as well. Thanks very much! Granting all of that, it looks like the code changes...

It looks like I spoke too soon about it working if you wrap a tuple in a struct. If you modify your example to have only one type in the...