Skip to content
This repository was archived by the owner on Oct 25, 2023. It is now read-only.

implement StorageApi for browser.storage.StorageArea #396

Merged
merged 26 commits into from
Jan 14, 2023
Merged
Show file tree
Hide file tree
Changes from 23 commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
89ac470
replace StorageApi global var with a make fn
SergNikitin Jan 4, 2023
055e2e7
mv non-trivial StorageApi methods to steroid
SergNikitin Jan 4, 2023
af7f093
Merge remote-tracking branch 'origin/main' into offline-storage-api-1
SergNikitin Jan 4, 2023
ae9c854
implement node.get in local storage
SergNikitin Jan 9, 2023
7bc227b
Merge remote-tracking branch 'origin/main' into offline-storage-api-2
SergNikitin Jan 9, 2023
494c625
implement node.* endpoints
SergNikitin Jan 10, 2023
65d7085
implement user activity
SergNikitin Jan 10, 2023
6a0759d
implement external.ingestion
SergNikitin Jan 10, 2023
94d411d
implement edge.* and pass ts checks
SergNikitin Jan 11, 2023
f7daeca
TNodeSliceIterator -> INoteIterator
SergNikitin Jan 11, 2023
b21b053
rm unused features of StorageApi.node.slice
SergNikitin Jan 11, 2023
6a798b1
node.slice: rm timebased inputs, split origin lookup
SergNikitin Jan 11, 2023
5d94d7c
slice -> iterate
SergNikitin Jan 11, 2023
55a68ab
Merge branch 'rm-unused-slice-features' into offline-storage-api-2
SergNikitin Jan 11, 2023
c407211
stub new search methods
SergNikitin Jan 11, 2023
cd5c704
implement node.getByOrigin
SergNikitin Jan 11, 2023
fd6f178
implement iterate
SergNikitin Jan 12, 2023
d201905
renames, docs
SergNikitin Jan 12, 2023
974826f
lowercase nids
SergNikitin Jan 12, 2023
ace30b8
Merge remote-tracking branch 'origin/main' into offline-storage-api-2
SergNikitin Jan 12, 2023
12b4605
lint
SergNikitin Jan 12, 2023
7ff4dd4
rm old experiment
SergNikitin Jan 12, 2023
c524a54
docs
SergNikitin Jan 12, 2023
5a5b8dc
lint
SergNikitin Jan 14, 2023
be29c82
Merge remote-tracking branch 'origin/main' into offline-storage-api-2
SergNikitin Jan 14, 2023
6247a2d
lint
SergNikitin Jan 14, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions archaeologist/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@
"@mozilla/readability": "^0.4.1",
"@popperjs/core": "^2.10.2",
"armoury": "0.0.1",
"base32-encode": "^2.0.0",
"bootstrap": "^5.1.3",
"css-loader": "^4.3.0",
"elementary": "0.0.1",
Expand Down
4 changes: 3 additions & 1 deletion archaeologist/public/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,9 @@
"cookies",
"history",
"tabs",
"webNavigation"
"webNavigation",
"storage",
"unlimitedStorage"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Dr -Cox-Dancing-For-Elliot-On-Scrubs-Gif

],
"cross_origin_embedder_policy": {
"value": "require-corp"
Expand Down
Loading