I have a PDF file I got from one of the app devs on the old forum called EdgeLibraryNotes that gives the structure of the dirs and which contains what. I can post it if anyone thinks it would be useful.
I also have several text files copied from the old forum. One about the journal files is below.
OK, here is what I found.
Journal files are indeed stored in
/sdcard/.edge/.esi-content
and have extension .esj
These files appear to be xournal files, but you cannot open them with xournal. You need to do the following first:
copy foo.esj to another machine with xournal installed.
mv foo.esj foo.gz
unzip foo.gz
Then open foo with text editor, and replace line
<page width="396.00" height="540.00" tabname="">
with line
<page width="396.00" height="540.00">
Then do:
gzip foo
mv foo.gz foo.xoj
The resulting foo.xoj file can then be opened with xournal. I guess I will simply write a script which does this automatically.
|