Skip to content

Commit

Permalink
chore: set sporran version to 2024.9.10 (#2653)
Browse files Browse the repository at this point in the history
  • Loading branch information
kilted-andres authored Sep 10, 2024
1 parent e84127b commit 83f3ce4
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 25 deletions.
4 changes: 2 additions & 2 deletions src/components/Settings/__snapshots__/Settings.test.tsx.snap
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ exports[`Settings menu should be visible when menu button clicked 1`] = `
role="menuitem"
tabindex="-1"
>
Version 2024.9.3
Version 2024.9.10
</a>
</li>
</ul>
Expand Down Expand Up @@ -225,7 +225,7 @@ exports[`Settings should render the endpoint item in the internal build 1`] = `
role="menuitem"
tabindex="-1"
>
Version 2024.9.3
Version 2024.9.10
</a>
</li>
</ul>
Expand Down
2 changes: 1 addition & 1 deletion src/configuration/configuration.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export const internalFeatures: Features = {

// Duplicates the value in src/static/manifest.json
// We can’t use browser.runtime.getManifest().version, as it’s unavailable in injected scripts
const version = '2024.9.3';
const version = '2024.9.10';

export const configuration: ConfigurationType = {
version,
Expand Down
28 changes: 7 additions & 21 deletions src/static/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"name": "__MSG_manifest_name__",
"short_name": "__MSG_manifest_short_name__",
"description": "__MSG_manifest_description__",
"version": "2024.9.3",
"version": "2024.9.10",
"default_locale": "en",
"action": {
"default_icon": {
Expand All @@ -19,12 +19,8 @@
},
"content_scripts": [
{
"matches": [
"*://*/*"
],
"js": [
"js/contentScript.js"
]
"matches": ["*://*/*"],
"js": ["js/contentScript.js"]
}
],
"icons": {
Expand All @@ -33,25 +29,15 @@
"48": "icon/light/48.png",
"128": "icon/light/128.png"
},
"permissions": [
"clipboardRead",
"clipboardWrite",
"storage"
],
"host_permissions": [
"*://*/*"
],
"permissions": ["clipboardRead", "clipboardWrite", "storage"],
"host_permissions": ["*://*/*"],
"content_security_policy": {
"extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self'"
},
"web_accessible_resources": [
{
"resources": [
"js/injectedScript.js"
],
"matches": [
"*://*/*"
]
"resources": ["js/injectedScript.js"],
"matches": ["*://*/*"]
}
]
}
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ exports[`GenericError should render generic error when an error happens 1`] = `
class="details"
readonly=""
>
[email protected].3
[email protected].10
Testing GenericError
Expand Down

0 comments on commit 83f3ce4

Please sign in to comment.