mirror of
https://github.com/vrtmrz/obsidian-livesync.git
synced 2025-12-23 22:51:30 +00:00
bump
This commit is contained in:
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"id": "obsidian-livesync",
|
"id": "obsidian-livesync",
|
||||||
"name": "Self-hosted LiveSync",
|
"name": "Self-hosted LiveSync",
|
||||||
"version": "0.22.12",
|
"version": "0.22.13",
|
||||||
"minAppVersion": "0.9.12",
|
"minAppVersion": "0.9.12",
|
||||||
"description": "Community implementation of self-hosted livesync. Reflect your vault changes to some other devices immediately. Please make sure to disable other synchronize solutions to avoid content corruption or duplication.",
|
"description": "Community implementation of self-hosted livesync. Reflect your vault changes to some other devices immediately. Please make sure to disable other synchronize solutions to avoid content corruption or duplication.",
|
||||||
"author": "vorotamoroz",
|
"author": "vorotamoroz",
|
||||||
|
|||||||
4
package-lock.json
generated
4
package-lock.json
generated
@@ -1,12 +1,12 @@
|
|||||||
{
|
{
|
||||||
"name": "obsidian-livesync",
|
"name": "obsidian-livesync",
|
||||||
"version": "0.22.12",
|
"version": "0.22.13",
|
||||||
"lockfileVersion": 2,
|
"lockfileVersion": 2,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "obsidian-livesync",
|
"name": "obsidian-livesync",
|
||||||
"version": "0.22.12",
|
"version": "0.22.13",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"diff-match-patch": "^1.0.5",
|
"diff-match-patch": "^1.0.5",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "obsidian-livesync",
|
"name": "obsidian-livesync",
|
||||||
"version": "0.22.12",
|
"version": "0.22.13",
|
||||||
"description": "Reflect your vault changes to some other devices immediately. Please make sure to disable other synchronize solutions to avoid content corruption or duplication.",
|
"description": "Reflect your vault changes to some other devices immediately. Please make sure to disable other synchronize solutions to avoid content corruption or duplication.",
|
||||||
"main": "main.js",
|
"main": "main.js",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
|
|||||||
30
updates.md
30
updates.md
@@ -10,6 +10,11 @@ Note: we got a very performance improvement.
|
|||||||
Note at 0.22.2: **Now, to rescue mobile devices, Maximum file size is set to 50 by default**. Please configure the limit as you need. If you do not want to limit the sizes, set zero manually, please.
|
Note at 0.22.2: **Now, to rescue mobile devices, Maximum file size is set to 50 by default**. Please configure the limit as you need. If you do not want to limit the sizes, set zero manually, please.
|
||||||
|
|
||||||
#### Version history
|
#### Version history
|
||||||
|
- 0.22.13:
|
||||||
|
- Improved:
|
||||||
|
- Now using HTTP for the remote database URI warns of an error (on mobile) or notice (on desktop).
|
||||||
|
- Refactored:
|
||||||
|
- Dependencies have been polished.
|
||||||
- 0.22.12:
|
- 0.22.12:
|
||||||
- Changed:
|
- Changed:
|
||||||
- The default settings has been changed.
|
- The default settings has been changed.
|
||||||
@@ -57,29 +62,4 @@ Note at 0.22.2: **Now, to rescue mobile devices, Maximum file size is set to 50
|
|||||||
- Changed:
|
- Changed:
|
||||||
- Now no longer `fetch chunks on demand` needs `Pacing replication`
|
- Now no longer `fetch chunks on demand` needs `Pacing replication`
|
||||||
- The setting `Do not pace synchronization` has been deleted.
|
- The setting `Do not pace synchronization` has been deleted.
|
||||||
- 0.22.7
|
|
||||||
- Fixed:
|
|
||||||
- No longer deleted hidden files were ignored.
|
|
||||||
- The document history dialogue is now able to process the deleted revisions.
|
|
||||||
- Deletion of a hidden file is now surely performed even if the file is already conflicted.
|
|
||||||
- 0.22.6
|
|
||||||
- Fixed:
|
|
||||||
- Fixed a problem with synchronisation taking a long time to start in some cases.
|
|
||||||
- The first synchronisation after update might take a bit longer.
|
|
||||||
- Now we can disable E2EE encryption.
|
|
||||||
- Improved:
|
|
||||||
- `Setup Wizard` is now more clear.
|
|
||||||
- `Minimal Setup` is now more simple.
|
|
||||||
- Self-hosted LiveSync now be able to use even if there are vaults with the same name.
|
|
||||||
- Database suffix will automatically added.
|
|
||||||
- Now Self-hosted LiveSync waits until set-up is complete.
|
|
||||||
- Show reload prompts when possibly recommended while settings.
|
|
||||||
- New feature:
|
|
||||||
- A guidance dialogue prompting for settings will be shown after the installation.
|
|
||||||
- Changed
|
|
||||||
- `Open setup URI` is now `Use the copied setup URI`
|
|
||||||
- `Copy setup URI` is now `Copy current settings as a new setup URI`
|
|
||||||
- `Setup Wizard` is now `Minimal Setup`
|
|
||||||
- `Check database configuration` is now `Check and Fix database configuration`
|
|
||||||
|
|
||||||
... To continue on to `updates_old.md`.
|
... To continue on to `updates_old.md`.
|
||||||
@@ -10,6 +10,30 @@ Note: we got a very performance improvement.
|
|||||||
Note at 0.22.2: **Now, to rescue mobile devices, Maximum file size is set to 50 by default**. Please configure the limit as you need. If you do not want to limit the sizes, set zero manually, please.
|
Note at 0.22.2: **Now, to rescue mobile devices, Maximum file size is set to 50 by default**. Please configure the limit as you need. If you do not want to limit the sizes, set zero manually, please.
|
||||||
|
|
||||||
#### Version history
|
#### Version history
|
||||||
|
- 0.22.7
|
||||||
|
- Fixed:
|
||||||
|
- No longer deleted hidden files were ignored.
|
||||||
|
- The document history dialogue is now able to process the deleted revisions.
|
||||||
|
- Deletion of a hidden file is now surely performed even if the file is already conflicted.
|
||||||
|
- 0.22.6
|
||||||
|
- Fixed:
|
||||||
|
- Fixed a problem with synchronisation taking a long time to start in some cases.
|
||||||
|
- The first synchronisation after update might take a bit longer.
|
||||||
|
- Now we can disable E2EE encryption.
|
||||||
|
- Improved:
|
||||||
|
- `Setup Wizard` is now more clear.
|
||||||
|
- `Minimal Setup` is now more simple.
|
||||||
|
- Self-hosted LiveSync now be able to use even if there are vaults with the same name.
|
||||||
|
- Database suffix will automatically added.
|
||||||
|
- Now Self-hosted LiveSync waits until set-up is complete.
|
||||||
|
- Show reload prompts when possibly recommended while settings.
|
||||||
|
- New feature:
|
||||||
|
- A guidance dialogue prompting for settings will be shown after the installation.
|
||||||
|
- Changed
|
||||||
|
- `Open setup URI` is now `Use the copied setup URI`
|
||||||
|
- `Copy setup URI` is now `Copy current settings as a new setup URI`
|
||||||
|
- `Setup Wizard` is now `Minimal Setup`
|
||||||
|
- `Check database configuration` is now `Check and Fix database configuration`
|
||||||
- 0.22.5
|
- 0.22.5
|
||||||
- Fixed:
|
- Fixed:
|
||||||
- Some description of settings have been refined
|
- Some description of settings have been refined
|
||||||
|
|||||||
Reference in New Issue
Block a user