appml / neutrinote

neutriNote - the original extensible Markdown + Math note app. Non-commerical. No lock-ins. Only 3 MB footprint & highly optimized. Designed for plaintext purists.
GNU General Public License v3.0
335 stars 23 forks source link

What does each field in ~neutrinote_app_data.txt mean? #43

Closed jamesWalker55 closed 1 year ago

jamesWalker55 commented 1 year ago

Here is an example line:

New Note (10):0:-1::1575367087046:0.0:0.0:1575367087046:1536793458000::

From what I can tell, the first field is the note title, and the last field is the last modified time of the note. However I can't really tell what the other fields mean?

appml commented 1 year ago

Look under line 4749:

https://github.com/appml/neutrinote/blob/95de756141b28247eecf49b8079486379d943f99/app/src/main/java/com/appmindlab/nano/MainActivity.java?utm_source=pocket_mylist#L4731

Hope this helps.

On Tue, Aug 30, 2022, 16:51 jamesWalker55 @.***> wrote:

Here is an example line:

New Note (10):0:-1::1575367087046:0.0:0.0:1575367087046:1536793458000::

From what I can tell, the first field is the note title, and the last field is the last modified time of the note. However I can't really tell what the other fields mean?

— Reply to this email directly, view it on GitHub https://github.com/appml/neutrinote/issues/43, or unsubscribe https://github.com/notifications/unsubscribe-auth/ABZICZIK2I754AAG4CPPFX3V3ZX3NANCNFSM6AAAAAAQAYOJ5I . You are receiving this because you are subscribed to this thread.Message ID: @.***>

jamesWalker55 commented 1 year ago

Thanks, that solves it.

As of this writing, the fields delimited by ':' are:

entry.getTitle()
entry.getStar()
entry.getPos()
entry.getMetadata()
entry.getAccessed().getTime()
entry.getLatitude()
entry.getLongitude()
entry.getCreated().getTime()
entry.getModified().getTime()