Skip to content

Releases: vrtmrz/obsidian-livesync

0.1.1

18 Oct 06:11
Compare
Choose a tag to compare

0.1.1 released (urgent)

  • Fixed sync and merging errors.
  • Performance improvemt(Using cache and).

0.1.0

17 Oct 13:15
Compare
Choose a tag to compare

0.1.0 released

From this version, database data type changed incopatible.
So please update all your devices before enable sync again.

Chunk split method has been changed

now obsidian-livesync split chunk by \n like chars.
So, if your change the head of note, ex-version changed almost all data of note,
now, change the head chunk only. The performance would be improved.

0.0.9

17 Oct 02:09
Compare
Choose a tag to compare

0.0.9 is released

fixed some base on awsome advices.

  • do not show too frequent message.
  • fixing code mistake

And this is plugin-update test.

0.0.8

15 Oct 09:16
Compare
Choose a tag to compare

0.0.8 has been released

Database and synchronization dedupe has been implemented.

From this version, files are split into chunks and store with these hash.
and all entries represented as a list of a chunk.

To simplify, if chunk length is 5 chars,
If you write long text:
"supercalifragilisticexpialidocious "

will be stored as:
"super calif ragil istic expia lidoc ious " -> "ha hb hc hd he hf"

and you modify tail some letters:
"supercalifragilisticexpialidocious!"

will be stored as:
"super calif ragil istic expia lidoc ious!" -> "ha hb hc hd he hg"

And now, we only spent two (entry and hash:hg) new database items.
(Actually, a delete mark is synchronized too. In synchronization we have to transfer three items.)

0.0.7

15 Oct 03:40
Compare
Choose a tag to compare

0.0.7 release

fixed below

  • first replication error
  • and minor some

0.0.6

14 Oct 16:35
Compare
Choose a tag to compare

Initial release of obsidian-livesync