Skip to content

Commit 8deb98a

Browse files
committed
chore(release): 1.10.0
1 parent 2c1b5a2 commit 8deb98a

File tree

7 files changed

+40
-25
lines changed

7 files changed

+40
-25
lines changed

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,19 @@
22

33
All notable changes to this project will be documented in this file. See [commit-and-tag-version](https://github.com/absolute-version/commit-and-tag-version) for commit guidelines.
44

5+
## [1.10.0](https://github.com/ffalt/mah/compare/v1.9.0...v1.10.0) (2025-11-09)
6+
7+
8+
### Features
9+
10+
* **svg:** add space svgs ([69ed442](https://github.com/ffalt/mah/commit/69ed442ea11e6ec538071929d98ad9b1cfd89dc5))
11+
* **svg:** cleanup, remove low-resolution sets and support low-performance devices ([e78e981](https://github.com/ffalt/mah/commit/e78e9817f64bcfcf8ec07717c2c58a5df18ffe0a))
12+
13+
14+
### Bug Fixes
15+
16+
* **mobile:** don't show pinch indicator on touch start ([494b7ab](https://github.com/ffalt/mah/commit/494b7ab45b072796cbb752bbee6a7e22d528fbb0))
17+
518
## [1.9.0](https://github.com/ffalt/mah/compare/v1.8.2...v1.9.0) (2025-10-29)
619

720
### Features

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "mah",
3-
"version": "1.9.0",
3+
"version": "1.10.0",
44
"author": "ffalt",
55
"license": "MIT",
66
"description": "a html5 mahjong solitaire game",

resources/apps/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

resources/apps/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "tauri-mah",
3-
"version": "1.9.0",
3+
"version": "1.10.0",
44
"scripts": {
55
"build": "tauri build",
66
"windows": "tauri build --target x86_64-pc-windows-msvc && npm run rename-windows",

resources/apps/tauri/Cargo.toml

Lines changed: 20 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,36 @@
11
[package]
22
name = "mah"
3-
version = "1.9.0"
3+
version = "1.10.0"
44
description = "A Tauri App"
5-
authors = ["ffalt"]
5+
authors = [ "ffalt" ]
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_mah_lib"
15-
crate-type = ["staticlib", "cdylib", "rlib"]
10+
crate-type = [ "staticlib", "cdylib", "rlib" ]
1611

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

2016
[dependencies]
21-
tauri = { version = "2.8.5", features = [] }
2217
tauri-plugin-opener = "2.5.0"
23-
serde = { version = "1", features = ["derive"] }
2418
serde_json = "1"
2519

20+
[dependencies.tauri]
21+
version = "2.8.5"
22+
features = [ ]
23+
24+
[dependencies.serde]
25+
version = "1"
26+
features = [ "derive" ]
27+
2628
[profile.dev]
27-
incremental = true # Compile your binary in smaller steps.
29+
incremental = true
2830

2931
[profile.release]
30-
codegen-units = 1 # Allows LLVM to perform better optimization.
31-
lto = true # Enables link-time-optimizations.
32-
opt-level = "s" # Prioritizes small binary size. Use `3` if you prefer speed.
33-
panic = "abort" # Higher performance by disabling panic handlers.
34-
strip = true # Ensures debug symbols are removed.
32+
codegen-units = 1
33+
lto = true
34+
opt-level = "s"
35+
panic = "abort"
36+
strip = true

resources/apps/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": "mah",
4-
"version": "1.9.0",
4+
"version": "1.10.0",
55
"identifier": "io.github.ffalt.mah",
66
"build": {
77
"removeUnusedCommands": true,

0 commit comments

Comments
 (0)