From 7af6c3d14b15a0ee288dd660bcfb175231480b62 Mon Sep 17 00:00:00 2001 From: Neil Brommer Date: Tue, 12 Dec 2017 15:18:39 -0800 Subject: [PATCH] Update about info --- index.html | 21 +++++++++++---------- js/main.js | 2 ++ 2 files changed, 13 insertions(+), 10 deletions(-) diff --git a/index.html b/index.html index 9cfbf16..7cbca29 100644 --- a/index.html +++ b/index.html @@ -4,9 +4,9 @@ - + - + Start @@ -125,7 +125,7 @@

This page keeps a list of bookmarks separated into groups. It's intended to be used a a new tab page. - It uses localStorage to store the list of bookmarks rather than storing them server side. + It uses IndexedDB to store the list of bookmarks in the browser rather than storing them server side.

This site uses Danny Care's Bitday @@ -137,12 +137,11 @@ Font Awesome.

- Adding/editing bookmarks and groups is currently not implemented. To add or edit them, you need to use - the import/export feature and manually build a JSON object yourself. The format for the import/export - JSON is: + Editing bookmarks is currently not supported. To move, change, or delete bookmarks, + you need to use the import/export function and manually edit the JSON data. The format + for this is:

-
-[
+					
[
 	{
 		"title": "Group title",
 		"bookmarks": [
@@ -165,8 +164,10 @@
 			}
 		]
 	}
-]
-					
+]
+

+ To remove all bookmarks, just import [] (an empty list). +