Skip to content

Commit

Permalink
fix(HtmlSerializer)
Browse files Browse the repository at this point in the history
Signed-off-by: Marcel Klehr <mklehr@gmx.net>
  • Loading branch information
marcelklehr committed Dec 9, 2023
1 parent 8fc6ab6 commit 08b4466
Show file tree
Hide file tree
Showing 5 changed files with 266 additions and 52 deletions.
11 changes: 2 additions & 9 deletions manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,21 +2,14 @@
"manifest_version": 3,
"name": "floccus bookmarks sync",
"short_name": "floccus",
"version": "4.19.1",
"version": "5.0.0",
"description": "__MSG_DescriptionExtension__",
"icons": {
"48": "icons/logo.png",
"64": "icons/logo_64.png",
"128": "icons/logo_128.png"
},

"applications": {
"gecko": {
"id": "floccus@handmadeideas.org",
"strict_min_version": "57.0"
}
},

"default_locale": "en",

"permissions": ["alarms", "bookmarks", "storage", "unlimitedStorage", "tabs", "identity"],
Expand All @@ -42,6 +35,6 @@
},

"background": {
"scripts": ["dist/js/background-script.js"]
"service_worker": "dist/js/background-script.js"
}
}
170 changes: 167 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,7 @@
"async-lock": "^1.2.8",
"async-parallel": "^1.2.3",
"batching-toposort": "^1.2.0",
"cheerio": "^1.0.0-rc.12",
"cordova-plugin-device": "^2.1.0",
"cordova-plugin-inappbrowser": "^5.0.0",
"core-js": "3.x",
Expand Down
3 changes: 2 additions & 1 deletion src/lib/adapters/WebDav.ts
Original file line number Diff line number Diff line change
Expand Up @@ -465,7 +465,8 @@ function createXBEL(rootFolder, highestId) {

function createHTML(rootFolder, highestId) {
let output = `<!DOCTYPE NETSCAPE-Bookmark-file-1>
<html>`
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=UTF-8">
<TITLE>Bookmarks</TITLE>`

output +=
'<!--- highestId :' +
Expand Down
Loading

0 comments on commit 08b4466

Please sign in to comment.