Page 1 of 1

Random Playlist INCREASE!

PostPosted: Tue Dec 21, 2010 6:13 pm
by enorym
Make options for more songs like 100 - 200 songs for random playlist pls!

Re: Random Playlist INCREASE!

PostPosted: Tue Dec 21, 2010 6:18 pm
by kroken
enorym wrote:Make options for more songs like 100 - 200 songs for random playlist pls!


You can do this yourself, just open more.jsp and edit the values.

PostPosted: Wed Dec 22, 2010 4:13 pm
by kermit22
Thanks for the tip kroken. I too was wondering where to change that.

PostPosted: Thu Feb 10, 2011 3:36 pm
by john.jays
Can you please post the location of this file on a Ubuntu installation? :roll:

PostPosted: Thu Feb 10, 2011 4:47 pm
by stozher
'/var/subsonic/jetty/????/webapp/WEB-INF/jsp' - open with gedit under root: sudo gedit

This is a html pages with jsp extensions but also included java tags.

Code: Select all
<select name="size">
    <option value="5"><fmt:message key="more.random.songs"><fmt:param value="5"/></fmt:message></option>
    <option value="10" selected="true"><fmt:message key="more.random.songs"><fmt:param value="10"/></fmt:message></option>
    <option value="20"><fmt:message key="more.random.songs"><fmt:param value="20"/></fmt:message></option>
    <option value="50"><fmt:message key="more.random.songs"><fmt:param value="50"/></fmt:message></option>
</select>


Move selected="true" to other row for change default 10 songs...

PostPosted: Fri Feb 11, 2011 3:46 pm
by john.jays
this is great! thank you very much.