Skip to content

Commit

Permalink
release: v3.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Sparkenstein committed Nov 14, 2024
1 parent e566535 commit 259556c
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 10 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "devtools-x",
"version": "3.1.0",
"version": "3.2.0",
"license": "MIT",
"type": "module",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion src-tauri/Cargo.lock

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

2 changes: 1 addition & 1 deletion src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "devtools-x"
version = "3.1.0"
version = "3.2.0"
description = "Developer tools desktop application"
authors = ["Sparkenstein"]
license = "MIT"
Expand Down
30 changes: 23 additions & 7 deletions src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,13 @@
},
"productName": "devtools-x",
"mainBinaryName": "devtools-x",
"version": "3.1.0",
"version": "3.2.0",
"identifier": "com.fosslife.devtoolsx",
"plugins": {
"sql": {
"preload": ["sqlite:devtools.db"]
"preload": [
"sqlite:devtools.db"
]
},
"updater": {
"endpoints": [
Expand All @@ -61,9 +63,13 @@
"security": {
"assetProtocol": {
"enable": true,
"scope": ["http://asset.localhost"]
"scope": [
"http://asset.localhost"
]
},
"dangerousDisableAssetCspModification": ["style-src"],
"dangerousDisableAssetCspModification": [
"style-src"
],
"csp": {
"default-src": [
"'self'",
Expand All @@ -76,9 +82,19 @@
"https:",
"tauri:"
],
"worker-src": ["'self'", "blob:", "https://unpkg.com"],
"script-src": ["'self'", "'unsafe-inline'"],
"style-src": ["'self'", "'unsafe-inline'"]
"worker-src": [
"'self'",
"blob:",
"https://unpkg.com"
],
"script-src": [
"'self'",
"'unsafe-inline'"
],
"style-src": [
"'self'",
"'unsafe-inline'"
]
}
},
"windows": []
Expand Down

0 comments on commit 259556c

Please sign in to comment.