Skip to content

Commit 2ef4a21

Browse files
0.0.8
1 parent 6722818 commit 2ef4a21

File tree

16 files changed

+20
-25
lines changed

16 files changed

+20
-25
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# 0.0.8
2+
3+
- Restoration
4+
15
# 0.0.7
26

37
- Cleanup

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<p align="center">
2-
<img width="64" height="64" src="./src-tauri/Source/Image/icon.ico" alt="Rounded Corners Logo" />
2+
<img width="64" height="64" src="./src-tauri/src/Image/icon.ico" alt="Rounded Corners Logo" />
33
</p>
44

55
# Rounded Corners
File renamed without changes.
File renamed without changes.

Source/elements/Corner.tsx renamed to Source/Element/Corner.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { listen } from "@tauri-apps/api/event";
22
import { createSignal, mergeProps } from "solid-js";
33
import type { Settings } from "../Option/Index.js";
4-
import "../assets/css/Corner.css";
4+
import "../Asset/CSS/Corner.css";
55

66
declare global {
77
interface Window {

Source/Index.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ import { listen } from "@tauri-apps/api/event";
22
import { appWindow } from "@tauri-apps/api/window";
33
import { For, createSignal } from "solid-js";
44
import { render } from "solid-js/web";
5-
import "./assets/css/Window.css";
6-
import Corner from "./elements/Corner.jsx";
5+
import "./Asset/CSS/Window.css";
6+
import Corner from "./Element/Corner.jsx";
77

88
const [mode, setMode] = createSignal(window.settings.mode);
99

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "roundedcorners-app",
3-
"version": "0.0.7",
3+
"version": "0.0.8",
44
"private": false,
55
"homepage": "https://github.com/RoundedCorners/app#readme",
66
"bugs": {
@@ -10,6 +10,7 @@
1010
"type": "git",
1111
"url": "git+https://github.com/RoundedCorners/app.git"
1212
},
13+
"license": "MIT",
1314
"type": "module",
1415
"scripts": {
1516
"dev": "vite",

src-tauri/Cargo.toml

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
[package]
22
name = "roundedcorners"
3-
version = "0.0.7"
4-
5-
[build]
6-
target-dir = "Target"
3+
version = "0.0.8"
74

85
[build-dependencies]
96
tauri-build = { version = "1.4.0", features = [] }
@@ -39,7 +36,3 @@ tauri-plugin-store = { git = "https://github.com/tauri-apps/plugins-workspace",
3936

4037
[features]
4138
custom-protocol = ["tauri/custom-protocol"]
42-
43-
[lib]
44-
name = "RoundedCorners"
45-
path = "Source/main.rs"
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)