Re: [SlimDevices: Plugins] [Announce] Band's Campout 1.8

2022-11-22 Thread Michael Herger

Wouldn't un-commenting that call to registerURLHandler() at the top of
ProtocolHandler.pm be good enough? Seems to be working here.


Having retested it, indeed it would be.  I'd got myself confused by it
not handling the situation when a Bandcamp URL is already on the
playlist (because you'd added with a broken version of the plugin).


Are you saying that re-enabling that line would fix the issue for you? 
If so, could you please use that for a while this way? I wonder whether 
that would break other things, or why I disabled it in the first place...

___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins


Re: [SlimDevices: Plugins] [Announce] Band's Campout 1.8

2022-11-22 Thread mavit


mherger wrote: 
> Wouldn't un-commenting that call to registerURLHandler() at the top of
> ProtocolHandler.pm be good enough? Seems to be working here.

Having retested it, indeed it would be.  I'd got myself confused by it
not handling the situation when a Bandcamp URL is already on the
playlist (because you'd added with a broken version of the plugin).



mavit's Profile: http://forums.slimdevices.com/member.php?userid=10203
View this thread: http://forums.slimdevices.com/showthread.php?t=112519

___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins


Re: [SlimDevices: Plugins] [Announce] Band's Campout 1.8

2022-11-22 Thread Michael Herger
Wouldn't un-commenting that regex at the top of ProtocolHandler.pm be 
good enough? Seems to be working here. I'm wondering why it's commented 
out...

___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins


Re: [SlimDevices: Plugins] [Announce] Band's Campout 1.8

2022-11-22 Thread Michael Herger
Is this broken in the latest 1.9, too? You're saying it was broken in 
1.8.5. But you're moving quite a bit of code to revert that 
regression... Can you tell me what was broken, and how you're fixing it? 
I'd like to keep a bugfix simpler than that re-factoring :-)

___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins


Re: [SlimDevices: Plugins] [Announce] Band's Campout 1.8

2022-11-21 Thread mavit


The feature introduced in version 1.8.0 where you could paste a Bandcamp
URL into the "Tune in to URL" box was lost again in version 1.8.5. 
Here's a patch to restore it:


Code:


  From 6714d94c0001a5128ce739e6e470aca6979ff343 Mon Sep 17 00:00:00 2001
  From: Peter Oliver 
  Date: Mon, 21 Nov 2022 20:53:58 +
  Subject: [PATCH] Restore "Tune In URL" handling.
  
  ---
  Plugin.pm  |  7 +++
  ProtocolHandler.pm | 23 +--
  URLHandler.pm  | 28 
  3 files changed, 36 insertions(+), 22 deletions(-)
  create mode 100644 URLHandler.pm
  
  diff --git a/Plugin.pm b/Plugin.pm
  index 84ca0e1..7efe0c5 100644
  --- a/Plugin.pm
  +++ b/Plugin.pm
  @@ -135,6 +135,13 @@ sub initPlugin {
},
) );
  
  + if (Slim::Player::ProtocolHandlers->can('registerURLHandler')) {
  + Slim::Player::ProtocolHandlers->registerURLHandler(
  + Plugins::Bandcamp::URLHandler::PAGE_URL_REGEX,
  + 'Plugins::Bandcamp::URLHandler'
  + );
  + }
  +
# initialize recent plays: need to add them to the LRU cache ordered by 
timestamp
my $recent_plays = $cache->get('recent_plays');
map {
  diff --git a/ProtocolHandler.pm b/ProtocolHandler.pm
  index 89cce95..385859a 100644
  --- a/ProtocolHandler.pm
  +++ b/ProtocolHandler.pm
  @@ -1,7 +1,7 @@
  package Plugins::Bandcamp::ProtocolHandler;
  
  use strict;
  -use base qw(Slim::Player::Protocols::HTTPS);
  +use base qw(Plugins::Bandcamp::URLHandler);
  
  # use Scalar::Util qw(blessed);
  
  @@ -9,10 +9,6 @@ package Plugins::Bandcamp::ProtocolHandler;
  
  use Plugins::Bandcamp::Plugin;
  
  -use constant PAGE_URL_REGEX   => 
qr{^https?://(?:[a-z0-9-]+\.)?bandcamp\.com/}i;
  -
  -# Slim::Player::ProtocolHandlers->registerURLHandler(PAGE_URL_REGEX, 
__PACKAGE__) if Slim::Player::ProtocolHandlers->can('registerURLHandler');
  -
  my $log = logger('plugin.bandcamp');
  
  sub new {
  @@ -38,23 +34,6 @@ sub new {
return $sock;
  }
  
  -sub explodePlaylist {
  - my ($class, $client, $url, $cb) = @_;
  -
  - if ($url =~ m{https?://bandcamp\.com/stream_redirect}) {
  - return $cb->([$url]);
  - }
  -
  - Plugins::Bandcamp::Plugin::get_item_info_by_url( $client, sub {
  - $cb->([ map { $_->{'play'} // () } @{$_[0]} ]);
  - }, {}, { 'url' => $url } );
  -}
  -
  -sub getMetadataFor {
  - my ( $class, $client, $url ) = @_;
  - return Plugins::Bandcamp::Plugin::metadata_provider($client, $url);
  -}
  -
  sub scanUrl {
my ($class, $url, $args) = @_;
$args->{'cb'}->($args->{'song'}->currentTrack());
  diff --git a/URLHandler.pm b/URLHandler.pm
  new file mode 100644
  index 000..26ae1a1
  --- /dev/null
  +++ b/URLHandler.pm
  @@ -0,0 +1,28 @@
  +package Plugins::Bandcamp::URLHandler;
  +
  +use strict;
  +use base qw(Slim::Player::Protocols::HTTPS);
  +use Plugins::Bandcamp::Plugin;
  +
  +use constant PAGE_URL_REGEX   => 
qr{^https?://(?:[a-z0-9-]+\.)?bandcamp\.com/}i;
  +
  +
  +sub explodePlaylist {
  + my ($class, $client, $url, $cb) = @_;
  +
  + if ($url =~ m{https?://bandcamp\.com/stream_redirect}) {
  + return $cb->([$url]);
  + }
  +
  + Plugins::Bandcamp::Plugin::get_item_info_by_url( $client, sub {
  + $cb->([ map { $_->{'play'} // () } @{$_[0]} ]);
  + }, {}, { 'url' => $url } );
  +}
  +
  +sub getMetadataFor {
  + my ( $class, $client, $url ) = @_;
  + return Plugins::Bandcamp::Plugin::metadata_provider($client, $url);
  +}
  +
  +
  +1;
  -- 
  2.38.1
  




mavit's Profile: http://forums.slimdevices.com/member.php?userid=10203
View this thread: http://forums.slimdevices.com/showthread.php?t=112519

___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins


Re: [SlimDevices: Plugins] [Announce] Band's Campout 1.8

2021-06-17 Thread mherger


Added a small new feature to Band's Campout 1.9: access to the Bandcamp
Daily shows. You can either play the tracks as featured in the show, or
select the individual albums. Have fun!



Michael

"It doesn't work - what shall I do?" - "Please check your server.log
and/or scanner.log file!"
(LMS: Settings/Information)

mherger's Profile: http://forums.slimdevices.com/member.php?userid=50
View this thread: http://forums.slimdevices.com/showthread.php?t=112519

___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins


Re: [SlimDevices: Plugins] [Announce] Band's Campout 1.8

2021-05-01 Thread annoyingmouse


Spotted that 1.8.6 update was available so I've updated and it appears
to be working fine now.  Thanks!!



annoyingmouse's Profile: http://forums.slimdevices.com/member.php?userid=49704
View this thread: http://forums.slimdevices.com/showthread.php?t=112519

___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins


Re: [SlimDevices: Plugins] [Announce] Band's Campout 1.8

2021-04-30 Thread annoyingmouse


mherger wrote: 
> > I'm using LMS 7.9.1 and BC 1.8.4 (although I only updated the plugin
> > from the previous version this morning)
> 
> Anything in server.log?

No errors but I had a look at the log with debug on for the plugin and I
can see that where I presume it is supposed to be reading an artist tag
it is reading nothing.



annoyingmouse's Profile: http://forums.slimdevices.com/member.php?userid=49704
View this thread: http://forums.slimdevices.com/showthread.php?t=112519

___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins


Re: [SlimDevices: Plugins] [Announce] Band's Campout 1.8

2021-04-30 Thread Michael Herger
I think I've fixed the Search issue. I'll look into the second issue 
later tonight/this weekend.

___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins


Re: [SlimDevices: Plugins] [Announce] Band's Campout 1.8

2021-04-30 Thread Michael Herger

I'm using LMS 7.9.1 and BC 1.8.4 (although I only updated the plugin
from the previous version this morning)


Anything in server.log?
___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins


Re: [SlimDevices: Plugins] [Announce] Band's Campout 1.8

2021-04-30 Thread annoyingmouse


I'm having two issues which may or may not be connected but were
definitely not happening last week. Firstly, search is no longer working
correctly for me.  I've tried searching for various things that are no
longer appearing.  I tried selecting things from "Recent Searches" that
no longer give me a result even though they worked at some point in the
last few weeks.  I am getting some results that are odd.  For example, I
was trying to listen to
https://nanaadjoa.bandcamp.com/album/big-dreaming-ants-remixes this
morning.  I searched "Nana Adjoa" and instead of getting the artist, I'm
getting one result: https://microtalk.bandcamp.com/album/expanding-dark
After investigating further I discovered that release has a tag that
reads "Nana Adjoa"

Secondly, using "Bandcamp URL" is working but, when I add tracks from
there, the artist isn't appearing.  I've tested adding tracks from My
Bandcamp>Collection and that works fine.  As an example, yesterday I
listened to https://crake.bandcamp.com/album/four-tracks-2 and it didn't
show the artist so I tried adding
https://crake.bandcamp.com/album/dear-natalie from the same artist which
I also have in my collection.  When playing via the Bandcamp URL option,
the artist isn't appearing but when playing via collection it appears
fine  (I don't normally play anything from collection via the plugin as
I have those tracks on the LMS anyway)

I'm using LMS 7.9.1 and BC 1.8.4 (although I only updated the plugin
from the previous version this morning)



annoyingmouse's Profile: http://forums.slimdevices.com/member.php?userid=49704
View this thread: http://forums.slimdevices.com/showthread.php?t=112519

___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins


Re: [SlimDevices: Plugins] [Announce] Band's Campout 1.8

2021-02-12 Thread Michael Herger

I assume it is Bandcamp that sets the upper limit for playback to 128
kbps?
Bandcamp is not primarily a streaming service, but a store where you can 
buy music. If you want higher quality than this "preview", you go and 
buy the tracks, and include them in your library.

___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins


Re: [SlimDevices: Plugins] [Announce] Band's Campout 1.8

2021-02-12 Thread Zombie


I assume it is Bandcamp that sets the upper limit for playback to 128
kbps?



Zombie's Profile: http://forums.slimdevices.com/member.php?userid=25009
View this thread: http://forums.slimdevices.com/showthread.php?t=112519

___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins


Re: [SlimDevices: Plugins] [Announce] Band's Campout 1.8

2021-02-07 Thread Michael Herger

I have no idea what has happened, but now everything works again…


Might have been a temporary network or server issue on Bandcamp's end. 
Good to know. Thanks!

___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins


Re: [SlimDevices: Plugins] [Announce] Band's Campout 1.8

2021-02-07 Thread peeter

I have no idea what has happened, but now everything works again…



peeter's Profile: http://forums.slimdevices.com/member.php?userid=63715
View this thread: http://forums.slimdevices.com/showthread.php?t=112519

___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins


Re: [SlimDevices: Plugins] [Announce] Band's Campout 1.8

2021-02-07 Thread Michael Herger

I've suddenly started seeing these errors when trying to access
Bandcamp:


Can you give me step-by-step instructions to reproduce this problem?
___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins


Re: [SlimDevices: Plugins] [Announce] Band's Campout 1.8

2021-02-07 Thread peeter


I've suddenly started seeing these errors when trying to access
Bandcamp:

Code:

[21-02-07 15:29:25.9710] Slim::Networking::IO::Select::__ANON__ (130) 
Error: Select task failed calling Slim::Networking::Async::_async_read: Not a 
HASH reference at 
/Users/server/Library/Caches/Squeezebox/InstalledPlugins/Plugins/Bandcamp/API.pm
 line 314.
  ; fh=Slim::Networking::Async::Socket::HTTPS=GLOB(0x7fceeb973738)
  


Any ideas? I recently updated LMS to the latest 8.1.2 on a mac running
10.4.6.



peeter's Profile: http://forums.slimdevices.com/member.php?userid=63715
View this thread: http://forums.slimdevices.com/showthread.php?t=112519

___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins


Re: [SlimDevices: Plugins] [Announce] Band's Campout 1.8

2020-12-30 Thread Michael Herger

It's the 2nd time I've had to do this . . .


Oops... thanks for the heads up! I implemented a workaround back then, 
but never released it. Should be on its way now.


--

Michael
___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins


Re: [SlimDevices: Plugins] [Announce] Band's Campout 1.8

2020-12-30 Thread waldo


mherger wrote: 
> > Two files uploaded just in case:
> > 1.- Waldo_BandCamp_MusicFeed.log : the part of the logs for BandCamp
> > plugin
> 
> I don't see anything wrong about the call, yet bandcamp reports an 
> invalid request. But it's still working fine for me... Is the issue 
> ongoing? Or could there have been a temporary hiccup on their end?
> 
> -- 
> 
> Michael

I've tried removing Bandcamp plugin (that included deleting bandcamp.db*
from the cache folder) and reinstalling -after rebooting server- but
made no difference.
Then I replaced the Identity Cookie by a simple string "www" and much to
my surprise I can still access "Wishlist" and "Bands" (which leads me to
think these options were working just because they don't use the Id.
Cookie, just the Username).

Finally, I filled the Id. cookie with the correct value and much to my
surprise "Music Feed" is working now though "Collection" is still empty.



waldo's Profile: http://forums.slimdevices.com/member.php?userid=19888
View this thread: http://forums.slimdevices.com/showthread.php?t=112519

___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins


Re: [SlimDevices: Plugins] [Announce] Band's Campout 1.8

2020-12-30 Thread kidstypike

mherger wrote: 
> >  [20-12-28 22:48:36.2099] main::init (388) Starting Logitech Media
> Server (v8.2.0, 1609139175, Mon Dec 28 09:23:00 CET 2020) perl 5.032000
> - aarch64-linux-thread-multi[20-12-28 22:48:39.2053]
> Slim::Utils::PluginManager::load (393) Warning: Couldn't call
> Plugins::Bandcamp::Plugin->initPlugin: Can't use string
> ("12345678™á_"...) as a HASH ref while "strict refs" in use at
> /usr/local/slimserver/Cache/InstalledPlugins/Plugins/Bandcamp/Search.pm
> line 33.
> 
> You might be able to recover by deleting bandcamp.db from the cache
> folder.
> 
> -- 
> 
> Michael

Yes, thanks, that works.


Code:

[20-12-30 09:34:46.4871] main::init (388) Starting Logitech Media Server 
(v8.2.0, 1609139175, Mon Dec 28 09:23:00 CET 2020) perl 5.032000 - 
aarch64-linux-thread-multi
  [20-12-30 09:34:48.8508] Plugins::Bandcamp::Plugin::initPlugin (181) 
Successfully registered image proxy for Bandcamp artwork
  



It's the 2nd time I've had to do this . . .
https://forums.slimdevices.com/showthread.php?112519-Announce-Band-s-Campout-1-8=994023=1#post994023



*Server - LMS 8.2.0 *Pi4B 4GB/Flirc case/pCP v7.0.0 - 74K library,
playlists & LMS cache on SSD (ntfs)
*Study -* Pi3B/pCP 7.0.0b6/pi screen/Allo Boss DAC Ruark MR1 Mk2
*Lounge* - Pi2/pCP 6.0.0 > HiFiBerry DIGI+ > AudioEngine DAC1 > AVI DM5
*Garage* - Squeezebox Boom + Fostex sub
*Dining Room* - Pi3B/Bluetooth/Echo Show 8

*Spares* - 2xTouch, 1xSB Radio. 1xSB3, 6xRPi

kidstypike's Profile: http://forums.slimdevices.com/member.php?userid=10436
View this thread: http://forums.slimdevices.com/showthread.php?t=112519

___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins


Re: [SlimDevices: Plugins] [Announce] Band's Campout 1.8

2020-12-30 Thread Michael Herger

 [20-12-28 22:48:36.2099] main::init (388) Starting Logitech Media Server (v8.2.0, 1609139175, Mon 
Dec 28 09:23:00 CET 2020) perl 5.032000 - aarch64-linux-thread-multi[20-12-28 22:48:39.2053] 
Slim::Utils::PluginManager::load (393) Warning: Couldn't call 
Plugins::Bandcamp::Plugin->initPlugin: Can't use string ("12345678™á_"...) as a HASH ref 
while "strict refs" in use at 
/usr/local/slimserver/Cache/InstalledPlugins/Plugins/Bandcamp/Search.pm line 33.


You might be able to recover by deleting bandcamp.db from the cache folder.

--

Michael
___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins


Re: [SlimDevices: Plugins] [Announce] Band's Campout 1.8

2020-12-29 Thread slartibartfast

kidstypike wrote: 
> Bandcamp problems for me too. App not appearing in My Apps.
> 
> > 
Code:

  >   > [20-12-28 22:48:36.2099] main::init (388) Starting Logitech Media 
Server (v8.2.0, 1609139175, Mon Dec 28 09:23:00 CET 2020) perl 5.032000 - 
aarch64-linux-thread-multi[20-12-28 22:48:39.2053] 
Slim::Utils::PluginManager::load (393) Warning: Couldn't call 
Plugins::Bandcamp::Plugin->initPlugin: Can't use string 
("12345678Â[emoji769]á_"...) as a HASH ref while "strict refs" in use at 
/usr/local/slimserver/Cache/InstalledPlugins/Plugins/Bandcamp/Search.pm line 33.
  > [20-12-29 08:31:53.8958] main::init (388) Starting Logitech Media Server 
(v8.2.0, 1609139175, Mon Dec 28 09:23:00 CET 2020) perl 5.032000 - 
aarch64-linux-thread-multi
  > [20-12-29 08:32:43.9322] main::init (388) Starting Logitech Media Server 
(v8.2.0, 1609139175, Mon Dec 28 09:23:00 CET 2020) perl 5.032000 - 
aarch64-linux-thread-multi [20-12-29 08:32:47.2023] 
Slim::Utils::PluginManager::load (393) Warning: Couldn't call 
Plugins::Bandcamp::Plugin->initPlugin: Can't use string 
("12345678Â[emoji769]á_"...) as a HASH ref while "strict refs" in use at 
/usr/local/slimserver/Cache/InstalledPlugins/Plugins/Bandcamp/Search.pm line 33.

> > 
> 
> 32714Could be related to the EU My Squeezebox issues this morning. Although
that is apparently resolved now.

Sent from my Pixel 3a using Tapatalk





slartibartfast's Profile: http://forums.slimdevices.com/member.php?userid=35609
View this thread: http://forums.slimdevices.com/showthread.php?t=112519

___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins


Re: [SlimDevices: Plugins] [Announce] Band's Campout 1.8

2020-12-29 Thread kidstypike

Bandcamp problems for me too. App not appearing in My Apps.


Code:

[20-12-28 22:48:36.2099] main::init (388) Starting Logitech Media Server 
(v8.2.0, 1609139175, Mon Dec 28 09:23:00 CET 2020) perl 5.032000 - 
aarch64-linux-thread-multi[20-12-28 22:48:39.2053] 
Slim::Utils::PluginManager::load (393) Warning: Couldn't call 
Plugins::Bandcamp::Plugin->initPlugin: Can't use string ("12345678™á_"...) as 
a HASH ref while "strict refs" in use at 
/usr/local/slimserver/Cache/InstalledPlugins/Plugins/Bandcamp/Search.pm line 33.
  [20-12-29 08:31:53.8958] main::init (388) Starting Logitech Media Server 
(v8.2.0, 1609139175, Mon Dec 28 09:23:00 CET 2020) perl 5.032000 - 
aarch64-linux-thread-multi
  [20-12-29 08:32:43.9322] main::init (388) Starting Logitech Media Server 
(v8.2.0, 1609139175, Mon Dec 28 09:23:00 CET 2020) perl 5.032000 - 
aarch64-linux-thread-multi [20-12-29 08:32:47.2023] 
Slim::Utils::PluginManager::load (393) Warning: Couldn't call 
Plugins::Bandcamp::Plugin->initPlugin: Can't use string ("12345678™á_"...) as 
a HASH ref while "strict refs" in use at 
/usr/local/slimserver/Cache/InstalledPlugins/Plugins/Bandcamp/Search.pm line 33.



32714


+---+
|Filename: Bandcamp.jpg |
|Download: http://forums.slimdevices.com/attachment.php?attachmentid=32714|
+---+


*Server - LMS 8.2.0 *Pi4B 4GB/Flirc case/pCP v7.0.0 - 74K library,
playlists & LMS cache on SSD (ntfs)
*Study -* Pi3B/pCP 7.0.0b6/pi screen/Allo Boss DAC Ruark MR1 Mk2
*Lounge* - Pi2/pCP 6.0.0 > HiFiBerry DIGI+ > AudioEngine DAC1 > AVI DM5
*Garage* - Squeezebox Boom + Fostex sub
*Dining Room* - Pi3B/Bluetooth/Echo Show 8

*Spares* - 2xTouch, 1xSB Radio. 1xSB3, 6xRPi

kidstypike's Profile: http://forums.slimdevices.com/member.php?userid=10436
View this thread: http://forums.slimdevices.com/showthread.php?t=112519

___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins


Re: [SlimDevices: Plugins] [Announce] Band's Campout 1.8

2020-12-29 Thread waldo

mherger wrote: 
> > Two files uploaded just in case:
> > 1.- Waldo_BandCamp_MusicFeed.log : the part of the logs for BandCamp
> > plugin
> 
> I don't see anything wrong about the call, yet bandcamp reports an 
> invalid request. But it's still working fine for me... Is the issue 
> ongoing? Or could there have been a temporary hiccup on their end?
> 
> -- 
> 
> Michael

Still ongoing :(
I never used it before, hence cannot tell whether it is something new.
If it is working for you, maybe something is wrong with my BandCamp
account. 
Given that I can manage adding records to the wishlist, feel free to put
this to the bottom of your list.

Martí



waldo's Profile: http://forums.slimdevices.com/member.php?userid=19888
View this thread: http://forums.slimdevices.com/showthread.php?t=112519

___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins


Re: [SlimDevices: Plugins] [Announce] Band's Campout 1.8

2020-12-28 Thread Michael Herger

Two files uploaded just in case:
1.- Waldo_BandCamp_MusicFeed.log : the part of the logs for BandCamp
plugin


I don't see anything wrong about the call, yet bandcamp reports an 
invalid request. But it's still working fine for me... Is the issue 
ongoing? Or could there have been a temporary hiccup on their end?


--

Michael
___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins


Re: [SlimDevices: Plugins] [Announce] Band's Campout 1.8

2020-12-28 Thread waldo


mherger wrote: 
> > Hi Michael, didn't expect to see you on a Sunday!! There was a typo,
> it
> > was "*Music Feed*" menu
> 
> Ok. That's working fine here. Please enable logging for plugin.bandcamp,
> 
> then upload your server.log.zip to:
> 
> https://www.dropbox.com/request/T3RctyzGgNg0oFDubq6a
> 
> (and don't forget to reset logging options afterwards)
> 
> -- 
> 
> Michael

Done!
Two files uploaded just in case:
1.- Waldo_BandCamp_MusicFeed.log : the part of the logs for BandCamp
plugin
2.- Waldo_Server.log: server log starting with a reboot (BandCamp Plugin
contents located at the end)



waldo's Profile: http://forums.slimdevices.com/member.php?userid=19888
View this thread: http://forums.slimdevices.com/showthread.php?t=112519

___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins


Re: [SlimDevices: Plugins] [Announce] Band's Campout 1.8

2020-12-27 Thread Michael Herger

Hi Michael, didn't expect to see you on a Sunday!! There was a typo, it
was "*Music Feed*" menu


Ok. That's working fine here. Please enable logging for plugin.bandcamp, 
then upload your server.log.zip to:


https://www.dropbox.com/request/T3RctyzGgNg0oFDubq6a

(and don't forget to reset logging options afterwards)

--

Michael
___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins


Re: [SlimDevices: Plugins] [Announce] Band's Campout 1.8

2020-12-27 Thread waldo


mherger wrote: 
> > When I go to "Music Find" get this error (tried with iPeng and web
> interface)
> 
> 
> What exact menu is this? 
> 
> 


Hi Michael, didn't expect to see you on a Sunday!! There was a typo, it
was "*Music Feed*" menu



waldo's Profile: http://forums.slimdevices.com/member.php?userid=19888
View this thread: http://forums.slimdevices.com/showthread.php?t=112519

___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins


Re: [SlimDevices: Plugins] [Announce] Band's Campout 1.8

2020-12-27 Thread Michael Herger

When I go to "Music Find" get this error (tried with iPeng and web
interface):


What exact menu is this?


-Plugins::Bandcamp::API::__ANON__ (144) There was an error accessing the
data servers. Please double-check or re-set your identity cookie in the
plugin settings.-


I can't reproduce this issue. Maybe because I can't find the menu you're 
referring to.



Anybody has experienced something similar? I understand I must fill the
identity cookie with the char string without "identity=" in front of it,
isn't it?


Yes.

--

Michael
___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins


Re: [SlimDevices: Plugins] [Announce] Band's Campout 1.8

2020-12-27 Thread waldo


Sorry to bother with a problem but could not find anything after a
whilesearching.
Logitech Media Server Version: 7.9.3 running in Raspi 4B (Max2Play)
Band's Campout v1.8.3

When I go to "Music Find" get this error (tried with iPeng and web
interface):

-Plugins::Bandcamp::API::__ANON__ (144) There was an error accessing the
data servers. Please double-check or re-set your identity cookie in the
plugin settings.-

I've updated the Identity cookie value but no difference. Any clue?

Other sections work fine (Wishlist, Bands). Only exception is
"Collection" that is Empty (and no message in the server logs when using
this option).

Anybody has experienced something similar? I understand I must fill the
identity cookie with the char string without "identity=" in front of it,
isn't it?



waldo's Profile: http://forums.slimdevices.com/member.php?userid=19888
View this thread: http://forums.slimdevices.com/showthread.php?t=112519

___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins


Re: [SlimDevices: Plugins] [Announce] Band's Campout 1.8

2020-11-10 Thread kidstypike


mherger wrote: 
> > For a while now I have no Band Camp under My Apps.
> > 
> > Plugin settings show this:
> 
> Go to Settings/Advanced/Bandcamp instead.
> 
> >  [20-11-10 10:04:32.2510] main::init (388) Starting Logitech Media
> Server (v8.0.0, 160468, Thu Nov  5 09:29:13 CET 2020) perl 5.032000
> - aarch64-linux-thread-multi[20-11-10 10:04:36.4538]
> Slim::Utils::PluginManager::load (392) Warning: Couldn't call
> Plugins::Bandcamp::Plugin->initPlugin: Can't use string
> ("12345678u_"...) as a HASH ref while "strict refs" in use at
> /usr/local/slimserver/Cache/InstalledPlugins/Plugins/Bandcamp/Search.pm
> line 33.
> 
> Is this the literal error message you get?
> 
> You should be able to recover by shutting down LMS and removing 
> bandcamp.db from your cache folder.
> 
> -- 
> 
> Michael

Not listed under Settings/Advanced/Bandcamp

32116

Not literal, no, seems to have lost something in the copy/paste, picture
below instead.

32117

Deleted the file bandcamp.db and back in business. :D

Thanks.


+---+
|Filename: bandcamp3.jpg|
|Download: http://forums.slimdevices.com/attachment.php?attachmentid=32117|
+---+


*Server - LMS 8.0.0 *Pi4B 4GB/Flirc case/pCP v7.0.0b6 - 74K library,
playlists & LMS cache on SSD (ntfs)
*Study -* Pi3B/pCP 6.1.0/pi screen/Allo Boss DAC Ruark MR1 Mk2
*Lounge* - Pi2/pCP 6.0.0 > HiFiBerry DIGI+ > AudioEngine DAC1 > AVI DM5
*Garage* - Squeezebox Boom + Fostex sub
*Dining Room* - Squeezebox Radio

*Spares* - 2xTouch, 1xSB3, 7xRPi

kidstypike's Profile: http://forums.slimdevices.com/member.php?userid=10436
View this thread: http://forums.slimdevices.com/showthread.php?t=112519

___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins


Re: [SlimDevices: Plugins] [Announce] Band's Campout 1.8

2020-11-10 Thread Michael Herger

For a while now I have no Band Camp under My Apps.

Plugin settings show this:


Go to Settings/Advanced/Bandcamp instead.


 [20-11-10 10:04:32.2510] main::init (388) Starting Logitech Media Server (v8.0.0, 160468, Thu 
Nov  5 09:29:13 CET 2020) perl 5.032000 - aarch64-linux-thread-multi[20-11-10 10:04:36.4538] 
Slim::Utils::PluginManager::load (392) Warning: Couldn't call 
Plugins::Bandcamp::Plugin->initPlugin: Can't use string ("12345678u_"...) as a HASH ref 
while "strict refs" in use at 
/usr/local/slimserver/Cache/InstalledPlugins/Plugins/Bandcamp/Search.pm line 33.


Is this the literal error message you get?

You should be able to recover by shutting down LMS and removing 
bandcamp.db from your cache folder.


--

Michael
___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins


Re: [SlimDevices: Plugins] [Announce] Band's Campout 1.8

2020-11-10 Thread Man in a van


Working here on 

> Logitech Media Server Version: 7.9.4 - 1603273368 @ Thu Oct 22 04:21:56
> CEST 2020
>   Hostname: LMS
>   Server IP Address: 192.168.1.119
>   Server HTTP Port Number: 9000
>   Operating system: piCore - EN - utf8 
>   Platform Architecture: armv8l-linux
>   Perl Version: 5.28.2 - 
> arm-linux-gnueabihf-thread-multi-64int
>   Audio::Scan: 1.02
>   IO::Socket::SSL: 2.066
>   Database Version: DBD::SQLite 1.58 (sqlite 3.22.0)
>   Total Players Recognized: 2
> 
> 



v 1.8.3

32115

ronnie


+---+
|Filename: bandcamp.jpg |
|Download: http://forums.slimdevices.com/attachment.php?attachmentid=32115|
+---+


Man in a van's Profile: http://forums.slimdevices.com/member.php?userid=43627
View this thread: http://forums.slimdevices.com/showthread.php?t=112519

___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins


Re: [SlimDevices: Plugins] [Announce] Band's Campout 1.8

2020-11-10 Thread kidstypike


Logitech Media Server Version: 8.0.0 - 1604995301 @ Tue Nov 10 09:27:59
CET 2020
Hostname: musicbox
Server IP Address: 192.168.1.4
Server HTTP Port Number: 9000
Operating system: piCore - EN - utf8
Platform Architecture: aarch64-linux
Perl Version: 5.32.0 - aarch64-linux-thread-multi
Audio::Scan: 1.02
IO::Socket::SSL: 2.068
Database Version: DBD::SQLite 1.58 (sqlite 3.22.0)
Total Players Recognized: 5

For a while now I have no Band Camp under My Apps.

Plugin settings show this:

32114

Uninstalled, reinstalled plugin, cleared browser cache, nothing I've
tried helps.

Last few lines of server log:




Code:

[20-11-10 10:04:32.2510] main::init (388) Starting Logitech Media Server 
(v8.0.0, 160468, Thu Nov  5 09:29:13 CET 2020) perl 5.032000 - 
aarch64-linux-thread-multi[20-11-10 10:04:36.4538] 
Slim::Utils::PluginManager::load (392) Warning: Couldn't call 
Plugins::Bandcamp::Plugin->initPlugin: Can't use string ("12345678u_"...) as a 
HASH ref while "strict refs" in use at 
/usr/local/slimserver/Cache/InstalledPlugins/Plugins/Bandcamp/Search.pm line 33.
  [20-11-10 10:07:20.9491] main::init (388) Starting Logitech Media Server 
(v8.0.0, 160468, Thu Nov  5 09:29:13 CET 2020) perl 5.032000 - 
aarch64-linux-thread-multi
  [20-11-10 10:08:27.1480] main::init (388) Starting Logitech Media Server 
(v8.0.0, 160468, Thu Nov  5 09:29:13 CET 2020) perl 5.032000 - 
aarch64-linux-thread-multi
  [20-11-10 10:08:31.1775] Slim::Utils::PluginManager::load (392) Warning: 
Couldn't call Plugins::Bandcamp::Plugin->initPlugin: Can't use string 
("12345678u_"...) as a HASH ref while "strict refs" in use at 
/usr/local/slimserver/Cache/InstalledPlugins/Plugins/Bandcamp/Search.pm line 33.
  [20-11-10 10:11:53.4704] main::init (388) Starting Logitech Media Server 
(v8.0.0, 1604995301, Tue Nov 10 09:27:59 CET 2020) perl 5.032000 - 
aarch64-linux-thread-multi [20-11-10 10:11:57.3925] 
Slim::Utils::PluginManager::load (392) Warning: Couldn't call 
Plugins::Bandcamp::Plugin->initPlugin: Can't use string ("12345678u_"...) as a 
HASH ref while "strict refs" in use at 
/usr/local/slimserver/Cache/InstalledPlugins/Plugins/Bandcamp/Search.pm line 33.



+---+
|Filename: bandcamp.jpg |
|Download: http://forums.slimdevices.com/attachment.php?attachmentid=32114|
+---+


*Server - LMS 8.0.0 *Pi4B 4GB/Flirc case/pCP v7.0.0b6 - 74K library,
playlists & LMS cache on SSD (ntfs)
*Study -* Pi3B/pCP 6.1.0/pi screen/Allo Boss DAC Ruark MR1 Mk2
*Lounge* - Pi2/pCP 6.0.0 > HiFiBerry DIGI+ > AudioEngine DAC1 > AVI DM5
*Garage* - Squeezebox Boom + Fostex sub
*Dining Room* - Squeezebox Radio

*Spares* - 2xTouch, 1xSB3, 7xRPi

kidstypike's Profile: http://forums.slimdevices.com/member.php?userid=10436
View this thread: http://forums.slimdevices.com/showthread.php?t=112519

___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins


Re: [SlimDevices: Plugins] [Announce] Band's Campout 1.8

2020-11-10 Thread stuarty


Just a quick thank you for this plugin. It's working great on my nightly
of LMS 8.0. I couldn't find the Bandcamp login cookie in Safari but it
can be found in Chrome.



stuarty's Profile: http://forums.slimdevices.com/member.php?userid=32294
View this thread: http://forums.slimdevices.com/showthread.php?t=112519

___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins


Re: [SlimDevices: Plugins] [Announce] Band's Campout 1.8

2020-10-13 Thread annoyingmouse


mherger wrote: 
> > So, as an example, earlier today I played
> > https://drewcitron.bandcamp.com/album/free-now through the plugin and
> > the last two tracks appeared on the playlist as below:
> 
> Thanks, that helped. Please give v1.8.3 a try.
> 
> -- 
> 
> Michael

That's working great.  Thanks



annoyingmouse's Profile: http://forums.slimdevices.com/member.php?userid=49704
View this thread: http://forums.slimdevices.com/showthread.php?t=112519

___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins


Re: [SlimDevices: Plugins] [Announce] Band's Campout 1.8

2020-10-12 Thread Michael Herger

So, as an example, earlier today I played
https://drewcitron.bandcamp.com/album/free-now through the plugin and
the last two tracks appeared on the playlist as below:


Thanks, that helped. Please give v1.8.3 a try.

--

Michael
___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins


Re: [SlimDevices: Plugins] [Announce] Band's Campout 1.8

2020-10-12 Thread annoyingmouse


mherger wrote: 
> > Since updating to the most recent version (1.8.2), I've been having
> an
> > (minor) issue where for some reason track and album titles are using
> > HTML character encoding for some characters (e.g.
> 
> Would you have an example?
> 
> -- 
> 
> Michael

So, as an example, earlier today I played
https://drewcitron.bandcamp.com/album/free-now through the plugin and
the last two tracks appeared on the playlist as below:

31815

As you can (hopefully) see, on the web interface, the track is fine on
the left panel and the now playing/current track display but shows the
HTML encoding on the playlist.  On other apps, this isn't the case.  On
squeeze commander:

3181931820

and on Jivelite/Picoreplayer:

31818

It's also scrobbling the tracks to last.fm that way.  I've tried it via
3 different players (raspberry pi/picoreplayer, Squeezebox Receiver and
Squeeze Player app) and it's the same no matter what I use.  As I said
before, this is only happening on this plugin and it wasn't happening
before.  (As I also said before, this is a minor problem and isn't
having any effect on playback and is just a bit of an annoyance more
than anything)


+---+
|Filename: sqcommanderpl.jpg|
|Download: http://forums.slimdevices.com/attachment.php?attachmentid=31820|
+---+


annoyingmouse's Profile: http://forums.slimdevices.com/member.php?userid=49704
View this thread: http://forums.slimdevices.com/showthread.php?t=112519

___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins


Re: [SlimDevices: Plugins] [Announce] Band's Campout 1.8

2020-10-11 Thread Michael Herger

Since updating to the most recent version (1.8.2), I've been having an
(minor) issue where for some reason track and album titles are using
HTML character encoding for some characters (e.g.


Would you have an example?

--

Michael
___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins


Re: [SlimDevices: Plugins] [Announce] Band's Campout 1.8

2020-10-08 Thread annoyingmouse


Since updating to the most recent version (1.8.2), I've been having an
(minor) issue where for some reason track and album titles are using
HTML character encoding for some characters (e.g. 
Code:



 instead of ').  I have no recollection of this happening before and it
is only happening with tracks played through this plugin.  Any ideas? 
(Should add that this is pretty minor and tracks are playing without
problem)



annoyingmouse's Profile: http://forums.slimdevices.com/member.php?userid=49704
View this thread: http://forums.slimdevices.com/showthread.php?t=112519

___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins


Re: [SlimDevices: Plugins] [Announce] Band's Campout 1.8

2020-09-30 Thread Michael Herger

Band's Campout works great for me but for one detail - in iPeng I can't
access Bandcamp Weekly. I get as far as the choice between "Listen as
podcast (with comments)" and "Listen to songs (without comments)", but
when I click on either of the options nothing happens. It works just
fine in the web interface.
Any ideas or should i take my question to the iPeng thread?


I can confirm that. I'll ping pippin.

--

Michael
___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins


Re: [SlimDevices: Plugins] [Announce] Band's Campout 1.8

2020-09-30 Thread peeter


I'm not sure whether to post this here or in the iPeng thread, but I'll
give it a go.
Band's Campout works great for me but for one detail - in iPeng I can't
access Bandcamp Weekly. I get as far as the choice between "Listen as
podcast (with comments)" and "Listen to songs (without comments)", but
when I click on either of the options nothing happens. It works just
fine in the web interface.
Any ideas or should i take my question to the iPeng thread?



peeter's Profile: http://forums.slimdevices.com/member.php?userid=63715
View this thread: http://forums.slimdevices.com/showthread.php?t=112519

___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins


Re: [SlimDevices: Plugins] [Announce] Band's Campout 1.8

2020-09-26 Thread MrC


I'd installed this plug-in so long ago, and thought the absence of my
account-related items was due to the plug-in being limited or broken. 
When I saw this thread yesterday, and realized a) I had my email address
set in the Bandcamp username field, and b) my Identity cookie was
long-since incorrect.  Correct these, and look at that, my
account-related items appear.  Nice.



MrC's Profile: http://forums.slimdevices.com/member.php?userid=468
View this thread: http://forums.slimdevices.com/showthread.php?t=112519

___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins


Re: [SlimDevices: Plugins] [Announce] Band's Campout 1.8

2020-09-25 Thread bkmusic225


I did a complete reinstall. Everything up and running. Thanks for all
that you do



bkmusic225's Profile: http://forums.slimdevices.com/member.php?userid=70702
View this thread: http://forums.slimdevices.com/showthread.php?t=112519

___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins


Re: [SlimDevices: Plugins] [Announce] Band's Campout 1.8

2020-09-25 Thread Michael Herger

Never had a problem before on the band's campout app.
See my collection, weeklies etc.
select an artist
Blank on next screen, no titles at all


Thanks for the heads up. Please give v1.8.2 a try.

--

Michael
___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins


Re: [SlimDevices: Plugins] [Announce] Band's Campout 1.8

2020-09-24 Thread dysonapr


Just seen the same trying to play a wishlist album:

[20-09-24 21:10:05.9531] Plugins::Bandcamp::Plugin::__ANON__ (662)
undef
[20-09-24 21:11:57.6359] Plugins::Bandcamp::Plugin::__ANON__ (662) undef



dysonapr's Profile: http://forums.slimdevices.com/member.php?userid=21534
View this thread: http://forums.slimdevices.com/showthread.php?t=112519

___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins


Re: [SlimDevices: Plugins] [Announce] Band's Campout 1.8

2020-09-24 Thread bkmusic225


Never had a problem before on the band's campout app.
See my collection, weeklies etc.
select an artist
Blank on next screen, no titles at all
please help


+---+
|Filename: Screen Shot 2020-09-24 at 4.45.23 PM.png |
|Download: http://forums.slimdevices.com/attachment.php?attachmentid=31682|
+---+


bkmusic225's Profile: http://forums.slimdevices.com/member.php?userid=70702
View this thread: http://forums.slimdevices.com/showthread.php?t=112519

___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins


Re: [SlimDevices: Plugins] [Announce] Band's Campout 1.8

2020-08-06 Thread peterjk


peterjk wrote: 
> > 
> 
> Could you please send me your server.log.zip and the first and last 20 
> characters of the cookie you used?
> 
> -- 
> It's in your mailbox.

Thanks Michael for helping me out.

The solution was, that I had misread the instruction on the settings
page and used my account login name (= email address). I wasn't aware I
had another username on the fan page.

Peter



peterjk's Profile: http://forums.slimdevices.com/member.php?userid=43435
View this thread: http://forums.slimdevices.com/showthread.php?t=112519

___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins


Re: [SlimDevices: Plugins] [Announce] Band's Campout 1.8

2020-08-04 Thread peterjk


mherger wrote: 
> > 
> 
> Could you please send me your server.log.zip and the first and last 20 
> characters of the cookie you used?
> 
> -- 
> It's in your mailbox.



peterjk's Profile: http://forums.slimdevices.com/member.php?userid=43435
View this thread: http://forums.slimdevices.com/showthread.php?t=112519

___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins


Re: [SlimDevices: Plugins] [Announce] Band's Campout 1.8

2020-08-03 Thread Michael Herger

Hi Michael, I just installed Band's Campout in my piCore LMS. In
settings I followed the procedure for logging in you described in the
version 1.7 post. But My Bandcamp returns empty. All other parts, like
the weeklies, show up correctly.


Could you please send me your server.log.zip and the first and last 20 
characters of the cookie you used?


--

Michael
___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins


Re: [SlimDevices: Plugins] [Announce] Band's Campout 1.8

2020-08-03 Thread peterjk


Hi Michael, I just installed Band's Campout in my piCore LMS. In
settings I followed the procedure for logging in you described in the
version 1.7 post. But My Bandcamp returns empty. All other parts, like
the weeklies, show up correctly.


Peter.



peterjk's Profile: http://forums.slimdevices.com/member.php?userid=43435
View this thread: http://forums.slimdevices.com/showthread.php?t=112519

___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins


Re: [SlimDevices: Plugins] [Announce] Band's Campout 1.8

2020-07-09 Thread peeter


1.8.1 seems to have solved the problem, thanks!



peeter's Profile: http://forums.slimdevices.com/member.php?userid=63715
View this thread: http://forums.slimdevices.com/showthread.php?t=112519

___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins


Re: [SlimDevices: Plugins] [Announce] Band's Campout 1.8

2020-07-08 Thread Michael Herger

It seems as though 1.8 might have broken something...

When trying to play Bandcamp weekly I get this error message in the
logs:

]
[20-07-08 17:56:25.2494] Slim::Web::JSONRPC::requestMethod (455) Request
failed with error: Bad dispatch!


Confirmed, thanks. Looking into it.

--

Michael
___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins


Re: [SlimDevices: Plugins] [Announce] Band's Campout 1.8

2020-07-08 Thread peeter


It seems as though 1.8 might have broken something...

When trying to play Bandcamp weekly I get this error message in the
logs:
> ]
> [20-07-08 17:56:25.2494] Slim::Web::JSONRPC::requestMethod (455) Request
> failed with error: Bad dispatch!
> [20-07-08 17:57:20.4432] Slim::Control::Request::execute (1888) Error:
> While trying to run function coderef
> [Slim::Control::Queries::statusQuery]: [Can't locate object method
> "isRemote" via package "Plugins::Bandcamp::Plugin" at
> /Library/PreferencePanes/Squeezebox.prefPane/Contents/server/Slim/Player/Song.pm
> line 719.
> ]

Any ideas?



peeter's Profile: http://forums.slimdevices.com/member.php?userid=63715
View this thread: http://forums.slimdevices.com/showthread.php?t=112519

___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins


[SlimDevices: Plugins] [Announce] Band's Campout 1.8

2020-07-02 Thread mherger


Band's Campout 1.8 adds support for the LMS 8 "Tune In to..."
enhancement: it allows you to paste album URLs like
https://hrmnn.bandcamp.com/album/hermann in the Tune In... field to play
them directly.

Thanks @mavit not only for the underlying work in LMS8, but for this
implementation for Bandcamp, too!



Michael

"It doesn't work - what shall I do?" - "Please check your server.log
and/or scanner.log file!"
(LMS: Settings/Information)

mherger's Profile: http://forums.slimdevices.com/member.php?userid=50
View this thread: http://forums.slimdevices.com/showthread.php?t=112519

___
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins