Skip to content

Commit

Permalink
chore: v1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
srg-kostyrko committed Jul 15, 2024
1 parent 024d1e9 commit 29d1554
Show file tree
Hide file tree
Showing 3 changed files with 43 additions and 24 deletions.
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,25 @@

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.

## [1.2.0](https://github.com/QSPFoundation/qspider/compare/v1.1.0...v1.2.0) (2024-07-15)

### Features

- add chinese translation ([398c73e](https://github.com/QSPFoundation/qspider/commit/398c73e6994260c2e58b8c5b1c59c848ce87a8e0))
- improve standalone game start ([334a58f](https://github.com/QSPFoundation/qspider/commit/334a58ff656e83ddeeea32075018c246f32dfbad))
- use 7z lib for archives ([988fe73](https://github.com/QSPFoundation/qspider/commit/988fe73a7d9dc50aff0446f6ecb1b47365370b70))

### Bug Fixes

- block pause menu hotkey on shelf ([c9675a7](https://github.com/QSPFoundation/qspider/commit/c9675a7b571bb2066a8095c9b7dff8e04c2a29f2))
- fix action hotkey for non existing action ([1dfbab0](https://github.com/QSPFoundation/qspider/commit/1dfbab09258359e4b4f6d1be6e9598fc2a53ea3e))
- fix base url processing ([024d1e9](https://github.com/QSPFoundation/qspider/commit/024d1e99d0a29f895e07ff9e328ad0187c1e6c5a))
- fix drop file in desktop version crushing player ([ee69a25](https://github.com/QSPFoundation/qspider/commit/ee69a25309c4684db6c516a30c2b1437265aaaf5))
- fix game crash when theme does not exist ([08ca6a9](https://github.com/QSPFoundation/qspider/commit/08ca6a9f66b707d664bf3407d8f3af820392c873))
- fix launching stadalone with index.html in path ([f7ab0f1](https://github.com/QSPFoundation/qspider/commit/f7ab0f104ce705e7b743364a41160d9a03c135c6))
- fix paused state on nexted inclib ([cc93de7](https://github.com/QSPFoundation/qspider/commit/cc93de7398aee55bbe70dbeab97cb9502793cc74))
- update wasm engine with save fixes ([8cc1f75](https://github.com/QSPFoundation/qspider/commit/8cc1f75244acf80571da71a1c13faac23beb936f))

## [1.1.0](https://github.com/QSPFoundation/qspider/compare/v1.0.1...v1.1.0) (2024-02-10)

### Features
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": "qspider",
"version": "1.1.0",
"version": "1.2.0",
"license": "MIT",
"type": "module",
"scripts": {
Expand Down
46 changes: 23 additions & 23 deletions src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[package]
name = "qspider"
version = "1.1.0"
version = "1.2.0"
description = "qSpider - player for QSP games"
authors = ["[email protected]"]
authors = [ "[email protected]" ]
license = "MIT"
repository = ""
default-run = "qspider"
Expand All @@ -11,45 +11,45 @@ build = "src/build.rs"

[build-dependencies.tauri-build]
version = "1.5.3"
features = ["config-toml"]
features = [ "config-toml" ]

[dependencies]
serde_json = "1.0"
entity-tag = "0.1.5"
mime_guess = "2.0.3"
urlencoding = "2.1.0"

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

[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde]
version = "1.0"
features = [ "derive" ]

[dependencies.tauri]
version = "1.7.1"
features = [
[dependencies.tauri]
version = "1.7.1"
features = [
"api-all",
"cli",
"devtools",
"icon-png",
"icon-ico",
"updater",
"config-toml",
"config-toml"
]

[dependencies.uuid]
version = "1.5.0"
features = ["serde", "v4"]
[dependencies.uuid]
version = "1.5.0"
features = [ "serde", "v4" ]

[features]
default = ["custom-protocol"]
custom-protocol = ["tauri/custom-protocol"]
default = [ "custom-protocol" ]
custom-protocol = [ "tauri/custom-protocol" ]

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

0 comments on commit 29d1554

Please sign in to comment.