Skip to content

Commit 29d1554

Browse files
committed
chore: v1.2.0
1 parent 024d1e9 commit 29d1554

File tree

3 files changed

+43
-24
lines changed

3 files changed

+43
-24
lines changed

CHANGELOG.md

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

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

5+
## [1.2.0](https://github.com/QSPFoundation/qspider/compare/v1.1.0...v1.2.0) (2024-07-15)
6+
7+
### Features
8+
9+
- add chinese translation ([398c73e](https://github.com/QSPFoundation/qspider/commit/398c73e6994260c2e58b8c5b1c59c848ce87a8e0))
10+
- improve standalone game start ([334a58f](https://github.com/QSPFoundation/qspider/commit/334a58ff656e83ddeeea32075018c246f32dfbad))
11+
- use 7z lib for archives ([988fe73](https://github.com/QSPFoundation/qspider/commit/988fe73a7d9dc50aff0446f6ecb1b47365370b70))
12+
13+
### Bug Fixes
14+
15+
- block pause menu hotkey on shelf ([c9675a7](https://github.com/QSPFoundation/qspider/commit/c9675a7b571bb2066a8095c9b7dff8e04c2a29f2))
16+
- fix action hotkey for non existing action ([1dfbab0](https://github.com/QSPFoundation/qspider/commit/1dfbab09258359e4b4f6d1be6e9598fc2a53ea3e))
17+
- fix base url processing ([024d1e9](https://github.com/QSPFoundation/qspider/commit/024d1e99d0a29f895e07ff9e328ad0187c1e6c5a))
18+
- fix drop file in desktop version crushing player ([ee69a25](https://github.com/QSPFoundation/qspider/commit/ee69a25309c4684db6c516a30c2b1437265aaaf5))
19+
- fix game crash when theme does not exist ([08ca6a9](https://github.com/QSPFoundation/qspider/commit/08ca6a9f66b707d664bf3407d8f3af820392c873))
20+
- fix launching stadalone with index.html in path ([f7ab0f1](https://github.com/QSPFoundation/qspider/commit/f7ab0f104ce705e7b743364a41160d9a03c135c6))
21+
- fix paused state on nexted inclib ([cc93de7](https://github.com/QSPFoundation/qspider/commit/cc93de7398aee55bbe70dbeab97cb9502793cc74))
22+
- update wasm engine with save fixes ([8cc1f75](https://github.com/QSPFoundation/qspider/commit/8cc1f75244acf80571da71a1c13faac23beb936f))
23+
524
## [1.1.0](https://github.com/QSPFoundation/qspider/compare/v1.0.1...v1.1.0) (2024-02-10)
625

726
### Features

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "qspider",
3-
"version": "1.1.0",
3+
"version": "1.2.0",
44
"license": "MIT",
55
"type": "module",
66
"scripts": {

src-tauri/Cargo.toml

Lines changed: 23 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
[package]
22
name = "qspider"
3-
version = "1.1.0"
3+
version = "1.2.0"
44
description = "qSpider - player for QSP games"
5-
authors = ["srg.kostyrko@gmail.com"]
5+
authors = [ "srg.kostyrko@gmail.com" ]
66
license = "MIT"
77
repository = ""
88
default-run = "qspider"
@@ -11,45 +11,45 @@ build = "src/build.rs"
1111

1212
[build-dependencies.tauri-build]
1313
version = "1.5.3"
14-
features = ["config-toml"]
14+
features = [ "config-toml" ]
1515

1616
[dependencies]
1717
serde_json = "1.0"
1818
entity-tag = "0.1.5"
1919
mime_guess = "2.0.3"
2020
urlencoding = "2.1.0"
2121

22-
[dependencies.tauri-plugin-window-state]
23-
git = "https://github.com/tauri-apps/plugins-workspace"
24-
branch = "v1"
22+
[dependencies.tauri-plugin-window-state]
23+
git = "https://github.com/tauri-apps/plugins-workspace"
24+
branch = "v1"
2525

26-
[dependencies.serde]
27-
version = "1.0"
28-
features = ["derive"]
26+
[dependencies.serde]
27+
version = "1.0"
28+
features = [ "derive" ]
2929

30-
[dependencies.tauri]
31-
version = "1.7.1"
32-
features = [
30+
[dependencies.tauri]
31+
version = "1.7.1"
32+
features = [
3333
"api-all",
3434
"cli",
3535
"devtools",
3636
"icon-png",
3737
"icon-ico",
3838
"updater",
39-
"config-toml",
39+
"config-toml"
4040
]
4141

42-
[dependencies.uuid]
43-
version = "1.5.0"
44-
features = ["serde", "v4"]
42+
[dependencies.uuid]
43+
version = "1.5.0"
44+
features = [ "serde", "v4" ]
4545

4646
[features]
47-
default = ["custom-protocol"]
48-
custom-protocol = ["tauri/custom-protocol"]
47+
default = [ "custom-protocol" ]
48+
custom-protocol = [ "tauri/custom-protocol" ]
4949

5050
[profile.release]
51-
panic = "abort" # Strip expensive panic clean-up logic
52-
codegen-units = 1 # Compile crates one after another so the compiler can optimize better
53-
lto = true # Enables link to optimizations
54-
opt-level = "s" # Optimize for binary size
55-
strip = true # Remove debug symbols
51+
panic = "abort"
52+
codegen-units = 1
53+
lto = true
54+
opt-level = "s"
55+
strip = true

0 commit comments

Comments
 (0)