Skip to content

Commit 8175fc0

Browse files
authored
Merge pull request #43 from taroj1205/changeset-release/main
2 parents 0ad9684 + 4c2dcc8 commit 8175fc0

File tree

6 files changed

+27
-25
lines changed

6 files changed

+27
-25
lines changed

.changeset/cuddly-pumpkins-pretend.md

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

.changeset/good-singers-invent.md

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

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Clippr
22

3+
## 1.4.0
4+
5+
### Minor Changes
6+
7+
- 9f620bd: Added information section and support multiple type display
8+
- 2a93cb1: Added information section and added multiple type display
9+
310
## 1.3.0
411

512
### Minor Changes

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "clippr",
33
"private": true,
4-
"version": "1.3.0",
4+
"version": "1.4.0",
55
"description": "",
66
"type": "module",
77
"scripts": {

src-tauri/Cargo.toml

Lines changed: 18 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,21 @@
11
[package]
22
name = "Clippr"
3-
version = "0.1.0"
3+
version = "1.4.0"
44
description = "Advanced clipboard manager built with Tauri"
5-
authors = ["Shintaro Jokagi"]
5+
authors = [ "Shintaro Jokagi" ]
66
edition = "2021"
77

8-
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
9-
108
[lib]
11-
# The `_lib` suffix may seem redundant but it is necessary
12-
# to make the lib name unique and wouldn't conflict with the bin name.
13-
# This seems to be only an issue on Windows, see https://github.com/rust-lang/cargo/issues/8519
149
name = "tauri_clipboard_manager_lib"
15-
crate-type = ["staticlib", "cdylib", "rlib"]
10+
crate-type = [ "staticlib", "cdylib", "rlib" ]
1611

17-
[build-dependencies]
18-
tauri-build = { version = "2", features = [] }
12+
[build-dependencies.tauri-build]
13+
version = "2"
14+
features = [ ]
1915

2016
[dependencies]
21-
tauri = { version = "2", features = [ "macos-private-api", "tray-icon"] }
2217
tauri-plugin-shell = "2"
23-
serde = { version = "1", features = ["derive"] }
2418
serde_json = "1"
25-
tauri-plugin-sql = { version = "2", features = ["sqlite"] }
2619
tauri-plugin-clipboard = "2.1.11"
2720
rusqlite = "0.32.1"
2821
base64 = "0.22.1"
@@ -35,6 +28,18 @@ tauri-plugin-fs = "2"
3528
window-vibrancy = "0.5.2"
3629
active-win-pos-rs = "0.8.3"
3730

31+
[dependencies.tauri]
32+
version = "2"
33+
features = [ "macos-private-api", "tray-icon" ]
34+
35+
[dependencies.serde]
36+
version = "1"
37+
features = [ "derive" ]
38+
39+
[dependencies.tauri-plugin-sql]
40+
version = "2"
41+
features = [ "sqlite" ]
42+
3843
[target."cfg(not(any(target_os = \"android\", target_os = \"ios\")))".dependencies]
3944
tauri-plugin-global-shortcut = "2.0.0"
4045
tauri-plugin-single-instance = "2"

src-tauri/tauri.conf.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"$schema": "https://schema.tauri.app/config/2",
33
"productName": "Clippr",
4-
"version": "1.3.0",
4+
"version": "1.4.0",
55
"identifier": "com.clippr.app",
66
"build": {
77
"beforeDevCommand": "pnpm dev",

0 commit comments

Comments
 (0)