"Next" button in New list

Locked
jeremy
User
Posts: 36
Joined: Sun Apr 27, 2008 9:15 am

"Next" button in New list

Post by jeremy »

Hey Willem--

You know, I use the "New" view of my media almost exclusively, but I often wish I could see beyond the end of the list. Would it be possible to add a "Next" button so the user could essentially browse their entire catalog in order of date added?

Jeremy
User avatar
wbartels
netjukebox developer
Posts: 872
Joined: Thu Nov 04, 2004 3:12 pm
Location: Netherlands
Contact:

Re: "Next" button in New list

Post by wbartels »

Hello Jeremy,

I have added this feature on the to do list.
In the meantime you could make a small modification to the index.php script around line 1641 and change the LIMIT from 50 to 100 or something:
$query = mysqli_query($db, 'SELECT artist, artist_alphabetic, album, album_id
FROM album
WHERE album_add_time
ORDER BY album_add_time DESC
LIMIT 100');
Good luck,

Willem
jeremy
User
Posts: 36
Joined: Sun Apr 27, 2008 9:15 am

Re: "Next" button in New list

Post by jeremy »

Great! Thanks, Willem.
User avatar
wbartels
netjukebox developer
Posts: 872
Joined: Thu Nov 04, 2004 3:12 pm
Location: Netherlands
Contact:

Re: "Next" button in New list

Post by wbartels »

jeremy wrote:Hey Willem--

You know, I use the "New" view of my media almost exclusively, but I often wish I could see beyond the end of the list. Would it be possible to add a "Next" button so the user could essentially browse their entire catalog in order of date added?

Jeremy
This will be implemented in netjukebox 6.00
User avatar
wbartels
netjukebox developer
Posts: 872
Joined: Thu Nov 04, 2004 3:12 pm
Location: Netherlands
Contact:

Re: "Next" button in New list

Post by wbartels »

Implemented in netjukebox 6.00 alpha
Locked