View Single Post
Old 11-16-2020, 10:19 PM   #18
diabl0w
Connoisseur
diabl0w will become famous soon enoughdiabl0w will become famous soon enoughdiabl0w will become famous soon enoughdiabl0w will become famous soon enoughdiabl0w will become famous soon enoughdiabl0w will become famous soon enough
 
Posts: 87
Karma: 527
Join Date: Sep 2019
Device: Max3
some more interesting info: notes that you take in the neoreader app, when split screen with a book and taking notes for the book, are also stored in the same database as your notes database. however, notes taken for books are obviously not visible in the notes app. This is controlled by a single value in the notes database file "ShapeDatabase.db". In the "NoteModel" table of the ShapeDatabase.db, you will find two columns that are null for notes app notes, but have a value for books app notes: associationId and associationType. The associationId is the unique id that onyx gives each of the books in your library. The associationType is just a value of '1' for book notes and '0' for regular notes. All that is needed to make a book note visible in the notes app is to toggle the associationType to 0. Doing this will disassociate the note from the book app, however, so you have to change it back to use it when taking notes with the book again. That being said, it is easy for us with root to quickly toggle the visibility of the note by using sqlite and just toggling the associationType value for rows who's column is not NULL for associationId column
diabl0w is offline   Reply With Quote