Hi Victor,
A file-manager is on the FR-List for PRS+, don't know if kartu has started this or what are his plans on this.
Regarding other file-types beyond books in browse-folders this is done for 600 and x50.
Relevant code is in model-config.js
Spoiler:
here is the code for 505
Code:
media: {
// types to be used to determine media type using "xs.isInstanceOf"
types: [FskCache.text],
// what kind it is, supported are: "book", "picture", "note", "audio"
kinds: ["book"],
// node prototypes to use when creating media nodes
prototypes: [FskCache.tree.bookNode]
},
and here for x50
Code:
media: {
// types to be used to determine media type using "xs.isInstanceOf"
types: [ FskCache.text , FskCache.image, FskCache.notepad],
// what kind it is, supported are: "book", "picture", "note", "audio"
kinds: [ "book", "picture", "note"],
// node prototypes to use when creating media nodes
prototypes: [ FskCache.tree.bookNode, kbook.root.children.applicationRoot.children.pictures.prototype, FskCache.tree.notepadFreehandNode]
},
with the right prototypes set, I assume also PRS-505 can browse other file-types too