Quote:
Originally Posted by Mark Nord
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
|
Mark i've modified the 505config.js with the modifications like models x50, and Surquizu tested this file, but the reader doesn't find the images on browse folders, do you know is it posible on prs 505 to seek images and songs (on the rest of the models) like the x50 models?
thanks