Skip to content

Commit

Permalink
Merge pull request #145 from solaoi/main
Browse files Browse the repository at this point in the history
v0.9.12
  • Loading branch information
solaoi authored May 7, 2024
2 parents ea81a9f + 23ca88c commit 822880a
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 6 deletions.
14 changes: 14 additions & 0 deletions SECURITY.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# Security Policy

## Supported Versions

There is only one version track for lycoris so all patches will be applied to the latest version only.

| Version | Supported |
| ------- | ------------------ |
| Latest | :white_check_mark: |

## Reporting a Vulnerability

Critical vulnerabilities can be responsibly disclosed to [[email protected]](mailto:[email protected]).
Bugs and low level vulneratbilities can be reported via repository issues.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "lycoris",
"private": true,
"version": "0.9.11",
"version": "0.9.12",
"type": "module",
"license": "MIT",
"engines": {
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 = "lycoris"
version = "0.9.11"
version = "0.9.12"
description = "Lycoris is an offline voice memo"
authors = ["solaoi"]
license = "MIT"
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 @@ -8,7 +8,7 @@
},
"package": {
"productName": "Lycoris",
"version": "0.9.11"
"version": "0.9.12"
},
"tauri": {
"allowlist": {
Expand Down Expand Up @@ -52,7 +52,7 @@
}
},
"security": {
"csp": "default-src 'self'; img-src 'self' asset: https://asset.localhost"
"csp": "default-src 'self'; img-src 'self' asset: https://asset.localhost; media-src stream: https://stream.localhost asset: https://asset.localhost"
},
"updater": {
"active": false
Expand Down
3 changes: 2 additions & 1 deletion src/components/molecules/Speech.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,8 @@ const Speech = (props: SpeechProps): JSX.Element => {
position: "absolute",
top: bottom,
left: getElementProperty("left") + width / 10,
width: width * 4 / 5
width: width * 4 / 5,
zIndex: 1
}}
/>}
</div>
Expand Down

0 comments on commit 822880a

Please sign in to comment.