Skip to content

Commit

Permalink
fix: codemirror style not being applied, enable devtools in production
Browse files Browse the repository at this point in the history
  • Loading branch information
daoleno committed Sep 26, 2024
1 parent 71dbd0d commit e4fb29c
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 7 deletions.
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## [0.4.2] - 2024-09-26

### Fixed

- Fixed CodeMirror style not being applied

## [0.4.1] - 2024-09-26

### Fixed
Expand Down Expand Up @@ -67,4 +73,6 @@
[0.1.1]: https://github.com/raardev/raar/releases/tag/0.1.1
[0.2.0]: https://github.com/raardev/raar/releases/tag/0.2.0
[0.3.0]: https://github.com/raardev/raar/releases/tag/0.3.0
[0.4.0]: https://github.com/raardev/raar/releases/tag/0.4.0
[0.4.0]: https://github.com/raardev/raar/releases/tag/0.4.0
[0.4.1]: https://github.com/raardev/raar/releases/tag/0.4.1
[0.4.2]: https://github.com/raardev/raar/releases/tag/0.4.2
Binary file modified bun.lockb
Binary file not shown.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "raar",
"private": true,
"version": "0.4.1",
"version": "0.4.2",
"type": "module",
"scripts": {
"dev": "vite",
Expand Down Expand Up @@ -35,7 +35,7 @@
"@tanstack/react-virtual": "^3.10.4",
"@tauri-apps/api": "^1",
"@types/react-window": "^1.8.8",
"@uiw/react-codemirror": "^4.23.0",
"@uiw/react-codemirror": "^4.23.3",
"@xyflow/react": "^12.1.0",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
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.

3 changes: 2 additions & 1 deletion src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "raar"
version = "0.4.1"
version = "0.4.2"
description = "RaaR"
authors = ["daoleno"]
edition = "2021"
Expand All @@ -19,6 +19,7 @@ tauri = { version = "1", features = [
"fs-all",
"dialog-save",
"http-all",
"devtools",
] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
Expand Down
4 changes: 2 additions & 2 deletions src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
},
"package": {
"productName": "RaaR",
"version": "0.1.0"
"version": "0.4.2"
},
"tauri": {
"allowlist": {
Expand Down Expand Up @@ -56,7 +56,7 @@
}
],
"security": {
"csp": "default-src 'self'; connect-src 'self' http: https:;"
"csp": "default-src 'self'; style-src 'self' 'unsafe-inline'; connect-src 'self' http: https:;"
},
"bundle": {
"active": true,
Expand Down

0 comments on commit e4fb29c

Please sign in to comment.