Skip to content

Commit

Permalink
0.0.8
Browse files Browse the repository at this point in the history
  • Loading branch information
NikolaRHristov committed Aug 16, 2023
1 parent 6722818 commit 2ef4a21
Show file tree
Hide file tree
Showing 16 changed files with 20 additions and 25 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# 0.0.8

- Restoration

# 0.0.7

- Cleanup
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<p align="center">
<img width="64" height="64" src="./src-tauri/Source/Image/icon.ico" alt="Rounded Corners Logo" />
<img width="64" height="64" src="./src-tauri/src/Image/icon.ico" alt="Rounded Corners Logo" />
</p>

# Rounded Corners
Expand Down
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion Source/elements/Corner.tsx → Source/Element/Corner.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { listen } from "@tauri-apps/api/event";
import { createSignal, mergeProps } from "solid-js";
import type { Settings } from "../Option/Index.js";
import "../assets/css/Corner.css";
import "../Asset/CSS/Corner.css";

declare global {
interface Window {
Expand Down
4 changes: 2 additions & 2 deletions Source/Index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ import { listen } from "@tauri-apps/api/event";
import { appWindow } from "@tauri-apps/api/window";
import { For, createSignal } from "solid-js";
import { render } from "solid-js/web";
import "./assets/css/Window.css";
import Corner from "./elements/Corner.jsx";
import "./Asset/CSS/Window.css";
import Corner from "./Element/Corner.jsx";

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

Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "roundedcorners-app",
"version": "0.0.7",
"version": "0.0.8",
"private": false,
"homepage": "https://github.com/RoundedCorners/app#readme",
"bugs": {
Expand All @@ -10,6 +10,7 @@
"type": "git",
"url": "git+https://github.com/RoundedCorners/app.git"
},
"license": "MIT",
"type": "module",
"scripts": {
"dev": "vite",
Expand Down
9 changes: 1 addition & 8 deletions src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
[package]
name = "roundedcorners"
version = "0.0.7"

[build]
target-dir = "Target"
version = "0.0.8"

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

[features]
custom-protocol = ["tauri/custom-protocol"]

[lib]
name = "RoundedCorners"
path = "Source/main.rs"
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes.
16 changes: 8 additions & 8 deletions src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
},
"package": {
"productName": "Rounded Corners",
"version": "0.0.7"
"version": "0.0.8"
},
"tauri": {
"allowlist": {
Expand Down Expand Up @@ -40,12 +40,12 @@
"bundle": {
"active": true,
"category": "DeveloperTool",
"copyright": "Copyright (c) 2022-2023. All rights reserved.",
"copyright": "Copyright (c) 2022-2023 Nikola R. Hristov. All rights reserved.",
"externalBin": [],
"icon": [
"Source/Image/16x16.png",
"Source/Image/32x32.png",
"Source/Image/icon.ico"
"src/Image/16x16.png",
"src/Image/32x32.png",
"src/Image/icon.ico"
],
"identifier": "app.roundedcorners.app",
"longDescription": "Rounded Corners app for Windows",
Expand All @@ -57,8 +57,8 @@
"digestAlgorithm": "sha256",
"timestampUrl": "",
"wix": {
"bannerPath": "Source/Image/banner.png",
"dialogImagePath": "Source/Image/dialogImage.png"
"bannerPath": "src/Image/banner.png",
"dialogImagePath": "src/Image/dialogImage.png"
}
}
},
Expand All @@ -67,7 +67,7 @@
},
"systemTray": {
"iconAsTemplate": true,
"iconPath": "Source/Image/icon.ico"
"iconPath": "src/Image/icon.ico"
},
"updater": {
"active": false
Expand Down
5 changes: 1 addition & 4 deletions vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,7 @@ export default defineConfig({
envPrefix: ["VITE_", "TAURI_"],
build: {
outDir: "Target",
target:
process.env["TAURI_PLATFORM"] === "windows"
? "chrome105"
: "safari13",
target: "chrome105",
minify: process.env["TAURI_DEBUG"] ? false : "esbuild",
sourcemap: !!process.env["TAURI_DEBUG"],
},
Expand Down

0 comments on commit 2ef4a21

Please sign in to comment.