Moode Forum
[How to do instruction] Sort folders by name - Printable Version

+- Moode Forum (https://moodeaudio.org/forum)
+-- Forum: moOde audio player (https://moodeaudio.org/forum/forumdisplay.php?fid=3)
+--- Forum: Support (https://moodeaudio.org/forum/forumdisplay.php?fid=7)
+--- Thread: [How to do instruction] Sort folders by name (/showthread.php?tid=2190)



Sort folders by name - enjoy - 02-18-2020

Hi,
I just installed Moode un Raspberry 4 but not all folders on the NAS are sorted alphabetically, do you know how I change this setting?

Thank you so much,
Nicola.


RE: Sort folders by name - Tim Curtis - 02-18-2020

Post an example.


RE: Sort folders by name - enjoy - 02-18-2020

Sure thanks, just arrive at home.


RE: Sort folders by name - enjoy - 02-18-2020

This is just an example....

[img]<a href=[/img][Image: Hiwu0G.jpg]" />


RE: Sort folders by name - TheOldPresbyope - 02-18-2020

@enjoy

Did you see the "Ignore articles" option in m>Configure>Library>Library Options ?

Regards,
Kent


RE: Sort folders by name - enjoy - 02-18-2020

@TheOldPresbyope you are the number one, problem solved!!!!! Thank you so much! Wink


RE: Sort folders by name - kit1cat - 02-19-2020

(02-18-2020, 10:57 PM)TheOldPresbyope Wrote: @enjoy

Did you see the "Ignore articles" option in m>Configure>Library>Library Options ?

Regards,
Kent

Are the items in the "Ignore articles" list stored in a text file somewhere? Would be handy if I could then update the list from within windows??


RE: Sort folders by name - TheOldPresbyope - 02-19-2020

(02-19-2020, 12:56 PM)kit1cat Wrote:
(02-18-2020, 10:57 PM)TheOldPresbyope Wrote: @enjoy

Did you see the "Ignore articles" option in m>Configure>Library>Library Options ?

Regards,
Kent

Are the items in the "Ignore articles" list stored in a text file somewhere? Would be handy if I could then update the list from within windows??

They're stored in the moOde database:

Code:
pi@moodecd: $ sqlite3 /var/local/www/db/moode-sqlite3.db
SQLite version 3.27.2 2019-02-25 16:06:06
Enter ".help" for usage hints.
sqlite> select * from cfg_system where param = 'ignore_articles';
123|ignore_articles|a,an,the
sqlite3> .exit
pi@moodecd: $

Regards,
Kent


RE: Sort folders by name - kit1cat - 02-19-2020

(02-19-2020, 01:06 PM)TheOldPresbyope Wrote:
(02-19-2020, 12:56 PM)kit1cat Wrote:
(02-18-2020, 10:57 PM)TheOldPresbyope Wrote: @enjoy

Did you see the "Ignore articles" option in m>Configure>Library>Library Options ?

Regards,
Kent

Are the items in the "Ignore articles" list stored in a text file somewhere? Would be handy if I could then update the list from within windows??

They're stored in the moOde database:

Code:
pi@moodecd: $ sqlite3 /var/local/www/db/moode-sqlite3.db
SQLite version 3.27.2 2019-02-25 16:06:06
Enter ".help" for usage hints.
sqlite> select * from cfg_system where param = 'ignore_articles';
123|ignore_articles|a,an,the
sqlite3> .exit
pi@moodecd: $

Regards,
Kent

Thanks for info Kent.