Skip to content

Commit 42c1788

Browse files
committed
v2.2.9
1 parent e8da77a commit 42c1788

File tree

3 files changed

+64
-60
lines changed

3 files changed

+64
-60
lines changed

CHANGELOG.md

Lines changed: 62 additions & 58 deletions
Original file line numberDiff line numberDiff line change
@@ -1,129 +1,133 @@
1+
## v2.2.9
2+
3+
- FIX: Adjust usage of fetch API to specification update
4+
15
## v2.2.8
26

3-
* FIX: recover account after error
7+
- FIX: recover account after error
48

59
## v2.2.7
610

7-
* FIX: Pick up sync again after error
11+
- FIX: Pick up sync again after error
812

913
## v2.2.6
1014

11-
* FIX: Prevent parallel sync race condition
15+
- FIX: Prevent parallel sync race condition
1216

1317
## v2.2.5
1418

15-
* FIX: Account cache was broken
19+
- FIX: Account cache was broken
1620

1721
## v2.2.4
1822

19-
* FIX: options wouldn't store values
23+
- FIX: options wouldn't store values
2024

2125
## v2.2.3
2226

23-
* FIX: Debounce sync task to avoid peculiar failures
27+
- FIX: Debounce sync task to avoid peculiar failures
2428

2529
## v2.2.2
2630

27-
* FIX: Overtake canonical URLs from server
31+
- FIX: Overtake canonical URLs from server
2832

2933
## v2.2.1
3034

31-
* FIX: Add default value for server path setting
35+
- FIX: Add default value for server path setting
3236

3337
## v2.2.0
3438

35-
* NEW: Map local sync folder to a specific server-side folder
36-
* FIX: Performance improvements for Firefox
37-
* FIX: Race condition removed that would cause issues because same account would be synced twice in parallel
39+
- NEW: Map local sync folder to a specific server-side folder
40+
- FIX: Performance improvements for Firefox
41+
- FIX: Race condition removed that would cause issues because same account would be synced twice in parallel
3842

3943
## v2.1.0
4044

41-
* NEW: Allow using an extension key to secure entered credentials
42-
* FIX: Various fixes for Firefox
45+
- NEW: Allow using an extension key to secure entered credentials
46+
- FIX: Various fixes for Firefox
4347

4448
## v2.0.6
4549

46-
* FIX: Correctly escape paths in tags
47-
* FIX: Wait a certain time before starting sync when detecting changes
48-
* FIX: first run routine was called on every startup
50+
- FIX: Correctly escape paths in tags
51+
- FIX: Wait a certain time before starting sync when detecting changes
52+
- FIX: first run routine was called on every startup
4953

5054
## v2.0.5
5155

52-
* FIX: Display sync folder path
56+
- FIX: Display sync folder path
5357

5458
## v2.0.4
5559

56-
* FIX: getAllAccounts didn't have a fallback for the initial loading of the extension
60+
- FIX: getAllAccounts didn't have a fallback for the initial loading of the extension
5761

5862
## v2.0.3
5963

60-
* FIX: Display error messages of multiple errors
61-
* FIX: Add resource locking to fix race conditions and allow more concurrency (should fix remaining issues related to creation of duplicates)
62-
* FIX: Refactor to only read from tree once
64+
- FIX: Display error messages of multiple errors
65+
- FIX: Add resource locking to fix race conditions and allow more concurrency (should fix remaining issues related to creation of duplicates)
66+
- FIX: Refactor to only read from tree once
6367

6468
## v2.0.2
6569

66-
* FIX: Add write lock for account storage
67-
* FIX: Refactor sync process to avoid creating duplicates
68-
* FIX: mkdirpPath: Fix break condition
69-
* FIX: Speed up initial tag population
70-
* FIX: Use more stable parallel execution helper tool
70+
- FIX: Add write lock for account storage
71+
- FIX: Refactor sync process to avoid creating duplicates
72+
- FIX: mkdirpPath: Fix break condition
73+
- FIX: Speed up initial tag population
74+
- FIX: Use more stable parallel execution helper tool
7175

7276
## v2.0.1
7377

74-
* FIX: Don't remove folders beyond the sync folder when the last bookmark is remove
75-
* FIX: Declare incompatibility with Fx < v57
76-
* FIX: Improve error reporting
78+
- FIX: Don't remove folders beyond the sync folder when the last bookmark is remove
79+
- FIX: Declare incompatibility with Fx < v57
80+
- FIX: Improve error reporting
7781

7882
## v2.0.0
7983

80-
* NEW: Sync folder hierarchy
81-
* NEW: Allow custom folders to be chosen for syncing
82-
* NEW: Allow nesting synced folders
83-
* NEW: Remember last sync time per account
84-
* NEW: Overhauled user interface
85-
* NEW: Identify local duplicates and throw an error
86-
* FIX: Address performance problems
87-
* FIX: Allow deleting account when syncing
88-
* FIX: Ignore bookmarks with unsupported protocols
89-
* FIX: Sync more often (every 15min instead of 25min)
90-
* FIX: Call removeFromMappings on LOCALDELETE
91-
* FIX: Improve logging and error messages
92-
* FIX: Stop tracking bookmarks when they're moved outside the account scope
84+
- NEW: Sync folder hierarchy
85+
- NEW: Allow custom folders to be chosen for syncing
86+
- NEW: Allow nesting synced folders
87+
- NEW: Remember last sync time per account
88+
- NEW: Overhauled user interface
89+
- NEW: Identify local duplicates and throw an error
90+
- FIX: Address performance problems
91+
- FIX: Allow deleting account when syncing
92+
- FIX: Ignore bookmarks with unsupported protocols
93+
- FIX: Sync more often (every 15min instead of 25min)
94+
- FIX: Call removeFromMappings on LOCALDELETE
95+
- FIX: Improve logging and error messages
96+
- FIX: Stop tracking bookmarks when they're moved outside the account scope
9397

9498
## v1.3.4
9599

96-
* Fix normalizeURL: The relevant commit somehow didn't make it into the release builds
100+
- Fix normalizeURL: The relevant commit somehow didn't make it into the release builds
97101

98102
## v1.3.3
99103

100-
* Fix normalizeUrl: Automatically add trailing slash
104+
- Fix normalizeUrl: Automatically add trailing slash
101105

102106
## v1.3.2
103107

104-
* Remove automated options validation (much better to just try force sync and see the error)
105-
* Fix options rendering
106-
* Fix bookmarks not showing up on the server in some situations
108+
- Remove automated options validation (much better to just try force sync and see the error)
109+
- Fix options rendering
110+
- Fix bookmarks not showing up on the server in some situations
107111

108112
## v1.3.1
109113

110-
* Options panel: Fix automated connectivity check
114+
- Options panel: Fix automated connectivity check
111115

112116
## v1.3.0
113117

114-
* Major Refactoring by modularizing code base
115-
* UI polishing
116-
* Add 'force sync' feature
117-
* Add account status indicator
118-
* Fix nc url normalization
119-
* Trigger sync on local changes
120-
* Fix floccus fodler naming
118+
- Major Refactoring by modularizing code base
119+
- UI polishing
120+
- Add 'force sync' feature
121+
- Add account status indicator
122+
- Fix nc url normalization
123+
- Trigger sync on local changes
124+
- Fix floccus fodler naming
121125

122126
## v1.2.0
123127

124-
* Switched to the new nc-bookmarks v2 API
125-
* Increased sync interval, to reduce cpu load
128+
- Switched to the new nc-bookmarks v2 API
129+
- Increased sync interval, to reduce cpu load
126130

127131
## v1.1.2
128132

129-
* Recover if root bookmarks folder is gone
133+
- Recover if root bookmarks folder is gone

manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"manifest_version": 2,
33
"name": "floccus",
44
"short_name": "floccus",
5-
"version": "2.2.8",
5+
"version": "2.2.9",
66
"description": "Sync your bookmarks with nextcloud",
77
"icons": {
88
"48": "icons/logo.png"

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "floccus",
3-
"version": "2.2.8",
3+
"version": "2.2.9",
44
"description": "Sync your bookmarks with nextcloud",
55
"main": "index.js",
66
"scripts": {

0 commit comments

Comments
 (0)