Skip to content

Commit

Permalink
chore(release): 1.1.0
Browse files Browse the repository at this point in the history
# [1.1.0](v1.0.0...v1.1.0) (2023-03-19)

### Features

* support firefox ([d22ad7c](d22ad7c))
  • Loading branch information
semantic-release-bot committed Mar 19, 2023
1 parent 727de94 commit fe27efa
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 6 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
# [1.1.0](https://github.com/andrewinci/excalistore/compare/v1.0.0...v1.1.0) (2023-03-19)


### Features

* support firefox ([d22ad7c](https://github.com/andrewinci/excalistore/commit/d22ad7cddbe2b1ece3e551f990ebc06b36276309))

# 1.0.0 (2023-03-18)


Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "excalistore",
"private": true,
"version": "1.0.0",
"version": "1.1.0",
"type": "module",
"scripts": {
"dev": "vite",
Expand Down
17 changes: 12 additions & 5 deletions public/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"manifest_version": 3,
"name": "Excalistore",
"description": "Store multiple excalidraw diagrams in the browser cache.",
"version": "1.0.0",
"version": "1.1.0",
"browser_specific_settings": {
"gecko": {
"id": "{43af7405-9dc5-422d-b499-8582857d2742}"
Expand All @@ -17,12 +17,19 @@
"content_scripts": [
{
"run_at": "document_start",
"js": ["assets/script.js"],
"matches": ["https://excalidraw.com/*"]
"js": [
"assets/script.js"
],
"matches": [
"https://excalidraw.com/*"
]
}
],
"action": {
"default_popup": "index.html"
},
"permissions": ["storage", "unlimitedStorage"]
}
"permissions": [
"storage",
"unlimitedStorage"
]
}

0 comments on commit fe27efa

Please sign in to comment.