Skip to content

Commit 26c87db

Browse files
committed
chore: bump version to 1.1
1 parent 36f6a08 commit 26c87db

File tree

5 files changed

+33
-31
lines changed

5 files changed

+33
-31
lines changed

CHANGELOG.md

Lines changed: 0 additions & 20 deletions
This file was deleted.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "devbox",
3-
"version": "1.0.0",
3+
"version": "1.1.0",
44
"license": "MIT",
55
"type": "module",
66
"scripts": {

src-tauri/Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src-tauri/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "devbox"
3-
version = "1.0.0"
3+
version = "1.1.0"
44
description = "Developer Utilities"
55
authors = ["smithg09"]
66
license = "MIT"

src-tauri/tauri.conf.json

Lines changed: 30 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,11 @@
22
"bundle": {
33
"targets": "all",
44
"active": true,
5-
"icon": ["icons/icon.png", "icons/icon.icns", "icons/icon.ico"],
5+
"icon": [
6+
"icons/icon.png",
7+
"icons/icon.icns",
8+
"icons/icon.ico"
9+
],
610
"windows": {
711
"timestampUrl": "",
812
"certificateThumbprint": null,
@@ -37,12 +41,14 @@
3741
"devUrl": "http://localhost:3001"
3842
},
3943
"identifier": "com.smith.devbox",
40-
"version": "1.0.0",
44+
"version": "1.1.0",
4145
"productName": "Devbox",
4246
"mainBinaryName": "devbox",
4347
"plugins": {
4448
"updater": {
45-
"endpoints": ["https://github.com/smithg09/devbox/releases/latest/download/latest.json"],
49+
"endpoints": [
50+
"https://github.com/smithg09/devbox/releases/latest/download/latest.json"
51+
],
4652
"pubkey": "dW50cnVzdGVkIGNvbW1lbnQ6IG1pbmlzaWduIHB1YmxpYyBrZXk6IENFNzFGMjVDNjFFMEI3QkIKUldTN3QrQmhYUEp4em5JRjBvTkFPRG1Zd1RsMkVuOUZKcnhwc1JOWnA4Vm03RkZocHFhTzBwY0IK"
4753
}
4854
},
@@ -51,9 +57,13 @@
5157
"security": {
5258
"assetProtocol": {
5359
"enable": true,
54-
"scope": ["http://asset.localhost"]
60+
"scope": [
61+
"http://asset.localhost"
62+
]
5563
},
56-
"dangerousDisableAssetCspModification": ["style-src"],
64+
"dangerousDisableAssetCspModification": [
65+
"style-src"
66+
],
5767
"csp": {
5868
"connect-src": [
5969
"https://www.google-analytics.com",
@@ -81,16 +91,28 @@
8191
"tauri:",
8292
"asset:"
8393
],
84-
"worker-src": ["'self'", "blob:", "https://unpkg.com"],
94+
"worker-src": [
95+
"'self'",
96+
"blob:",
97+
"https://unpkg.com"
98+
],
8599
"script-src": [
86100
"'self'",
87101
"'unsafe-inline'",
88102
"'unsafe-eval'",
89103
"https://www.googletagmanager.com",
90104
"https://www.google-analytics.com"
91105
],
92-
"style-src": ["'self'", "'unsafe-inline'", "https://fonts.googleapis.com"],
93-
"font-src": ["'self'", "data:", "https://fonts.gstatic.com"],
106+
"style-src": [
107+
"'self'",
108+
"'unsafe-inline'",
109+
"https://fonts.googleapis.com"
110+
],
111+
"font-src": [
112+
"'self'",
113+
"data:",
114+
"https://fonts.gstatic.com"
115+
],
94116
"img-src": [
95117
"'self'",
96118
"data:",

0 commit comments

Comments
 (0)