From 923eef3b23ba865f6ab88f23ad349b15248f4a0c Mon Sep 17 00:00:00 2001 From: danloh Date: Fri, 2 Dec 2022 11:04:42 -0800 Subject: [PATCH] try: fix shortcuts on macOS --- CHANGES.md | 6 +++++- package.json | 2 +- src-tauri/Cargo.lock | 2 +- src-tauri/Cargo.toml | 7 ++++++- src-tauri/tauri.conf.json | 2 +- 5 files changed, 14 insertions(+), 5 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index f0036c47..98b939af 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,6 +1,10 @@ # Changelog -## [app-v0.5.1] - 2022-XX-XX +## [app-v0.5.2] - 2022-XX-XX + +## [app-v0.5.1] - 2022-11-30 + +Fixed a bug: failed to create db file on launch ## [app-v0.5.0] - 2022-11-14 diff --git a/package.json b/package.json index 0f487886..064f9a25 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "mdsilo-app", - "version": "0.5.1", + "version": "0.5.2", "private": true, "license": "AGPL-3.0-or-later", "homepage": "https://mdsilo.com", diff --git a/src-tauri/Cargo.lock b/src-tauri/Cargo.lock index 359ad198..836275dd 100644 --- a/src-tauri/Cargo.lock +++ b/src-tauri/Cargo.lock @@ -1645,7 +1645,7 @@ checksum = "a3e378b66a060d48947b590737b30a1be76706c8dd7b8ba0f2fe3989c68a853f" [[package]] name = "mdsilo" -version = "0.5.1" +version = "0.5.2" dependencies = [ "async-recursion", "bincode", diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index e3b6b94a..0269c5e6 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mdsilo" -version = "0.5.1" +version = "0.5.2" description = "mdSilo Desktop" authors = ["dloh"] license = "AGPL-3.0-or-later" @@ -45,3 +45,8 @@ default = [ "custom-protocol" ] # this feature is used used for production builds where `devPath` points to the filesystem # DO NOT remove this custom-protocol = [ "tauri/custom-protocol" ] + +[profile.release] +strip = true +lto = true +opt-level = "s" diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index 8b8aeb81..7a19108a 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -1,7 +1,7 @@ { "package": { "productName": "mdsilo", - "version": "0.5.1" + "version": "0.5.2" }, "build": { "distDir": "../build",