Skip to content

Commit

Permalink
try: fix shortcuts on macOS
Browse files Browse the repository at this point in the history
  • Loading branch information
danloh committed Dec 2, 2022
1 parent df8b051 commit 923eef3
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 5 deletions.
6 changes: 5 additions & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
@@ -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

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
2 changes: 1 addition & 1 deletion src-tauri/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 6 additions & 1 deletion src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down Expand Up @@ -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"
2 changes: 1 addition & 1 deletion src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"package": {
"productName": "mdsilo",
"version": "0.5.1"
"version": "0.5.2"
},
"build": {
"distDir": "../build",
Expand Down

0 comments on commit 923eef3

Please sign in to comment.