Skip to content
This repository was archived by the owner on Jan 3, 2026. It is now read-only.

Commit 2bac918

Browse files
authored
Merge pull request #18 from CKylinMC:dev
Fix set function key and bump version to 1.1.2
2 parents f6d87b9 + aa20a6c commit 2bac918

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "pasteme",
33
"private": true,
4-
"version": "1.1.1",
4+
"version": "1.1.2",
55
"type": "module",
66
"scripts": {
77
"dev": "vite",

src-tauri/Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src-tauri/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "pasteme"
3-
version = "1.1.1"
3+
version = "1.1.2"
44
description = "A simple clipboard manager"
55
authors = ["CKylinMC"]
66
edition = "2021"

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": "PasteMe",
4-
"version": "1.1.1",
4+
"version": "1.1.2",
55
"identifier": "in.ckyl.pasteme",
66
"build": {
77
"beforeDevCommand": "yarn dev",

src/AppInfo.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
export const AppInfo = {
2-
version: "1.1.1",
2+
version: "1.1.2",
33
};

src/libs/bridges.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,5 @@ export function getStoreKey(key: string, fallback: JsonValue): Promise<JsonValue
1717
}
1818

1919
export function setStoreKey(key: string, value: JsonValue): Promise<void> {
20-
return invoke("set_key_in_store", { key, value });
20+
return invoke("set_key_to_store", { key, value });
2121
}

0 commit comments

Comments
 (0)