skipped the betas this go round just updated
thanks again for keeping up with the project
as always I do a couple of tweeks when I reinstall
when clicking on a shared link the external or shared player only plays one song then stops would like it to auto play the whole folder 1 song or title after the other. Kinda pointless to share a playlist or folder and have to go back and click each song when you want it to play imo
anyone figure out how to do this in new version let me know.
If i find the old tip i will post
update posted belowstill looking for the tweek to shrink or remove right.view where chat is located to give home.view more space so that more album covers can be seen thanks in advance for any help or pointing me in the right direction
here it isThanks VERY much for this addition. To complete this in Windows,
- Stop Subsonic Service
- Make a backup copy of the subsonic.war file (in case you scew up).
- Open subsonic.war file with 7Zip. If 7zip is installed, just right click on subsonic.war and select Open Archive. Do not extract the file.
- Navigate within 7zip to the Web-INF\jsp\ folder and right click the externalPlayer.jsp file. Select "Edit" from within 7Zip. The file should open with Notepad.exe.
- On the first page you should see the following:
<script type="text/javascript">
function init() {
var flashvars = {
id:"player1",
screencolor:"000000",
frontcolor:"<spring:theme code="textColor"/>",
backcolor:"<spring:theme code="backgroundColor"/>",
stretching: "fill",
"playlist.position": "bottom",
"playlist.size": 200,
};
- Find the line "playlist.size": 200, and then press Return on your keyboard to add another line. Then Tab over and add the following: repeat:"list" . Don't forget the quotes.
- So when done what you should have is this:
<script type="text/javascript">
function init() {
var flashvars = {
id:"player1",
screencolor:"000000",
frontcolor:"<spring:theme code="textColor"/>",
backcolor:"<spring:theme code="backgroundColor"/>",
stretching: "fill",
"playlist.position": "bottom",
"playlist.size": 200,
repeat:"list"
};
- close and save the file externalPlayer.jsp.
- close 7zip and save the file.
- restart the Subsonic service.