Skip to content

Commit 6dd01ef

Browse files
committed
chore: release 1.3.0
1 parent db78056 commit 6dd01ef

File tree

4 files changed

+41
-20
lines changed

4 files changed

+41
-20
lines changed

CHANGELOG.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,27 @@
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.3.0](https://github.com/QSPFoundation/qspider/compare/v1.2.0...v1.3.0) (2024-09-29)
6+
7+
### Features
8+
9+
- change content fetching on desktop to avoid problems on linux ([1a54386](https://github.com/QSPFoundation/qspider/commit/1a54386a6b8790e5710a52d06cc5883e1dd6af01))
10+
- html rendering rewamp ([ea09732](https://github.com/QSPFoundation/qspider/commit/ea09732a701bacc75fa4e80c68bb496be664bd42))
11+
- qsp 5.9.0 ([d813063](https://github.com/QSPFoundation/qspider/commit/d813063270af60b34ab23368524ad2fca878e5e0))
12+
- support browser translation ([ffbea2f](https://github.com/QSPFoundation/qspider/commit/ffbea2f452a8514c352f0988f47fafed5545c1b2))
13+
- support windows line feeds in game config ([b1da270](https://github.com/QSPFoundation/qspider/commit/b1da270ec64d94b3c49bd6d5a82460599dc520ad))
14+
15+
### Bug Fixes
16+
17+
- add .gam to selectable file extensions ([8ad805e](https://github.com/QSPFoundation/qspider/commit/8ad805ec341ff5d3d2f7a00535a91585fbb84970))
18+
- add env flag to overcome webkit issue ([fd8ba90](https://github.com/QSPFoundation/qspider/commit/fd8ba901f7661a30750e8637950d83d3150349d6))
19+
- add missing translations to win installer ([f3c305c](https://github.com/QSPFoundation/qspider/commit/f3c305c6ca6f39102edd63daf77c74a39631d648))
20+
- fix base url processing ([85aeda3](https://github.com/QSPFoundation/qspider/commit/85aeda395503f5d4d251c5e1240532dbf0c8a8c3))
21+
- fix header setting in rust ([04662ae](https://github.com/QSPFoundation/qspider/commit/04662ae612bfc33b5417c3317d2d7e0c328ab269))
22+
- fix path processing for case sensitive systems ([c6ac858](https://github.com/QSPFoundation/qspider/commit/c6ac858a6c57b79dca84cf037a69462c5bc32b8b))
23+
- fom't start counter till game started ([c3305f9](https://github.com/QSPFoundation/qspider/commit/c3305f9588bbef44787538055bc51f23200fed65))
24+
- open web URL in separate window (or in default browser) ([092c5a5](https://github.com/QSPFoundation/qspider/commit/092c5a567b080ecbe1f5de6a33032fd63b46fca9))
25+
526
## [1.2.0](https://github.com/QSPFoundation/qspider/compare/v1.1.0...v1.2.0) (2024-07-15)
627

728
### 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.2.0",
3+
"version": "1.3.0",
44
"license": "MIT",
55
"type": "module",
66
"scripts": {

src-tauri/Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src-tauri/Cargo.toml

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
[package]
22
name = "qspider"
3-
version = "1.2.0"
3+
version = "1.3.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,41 +11,41 @@ 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]
5151
panic = "abort"

0 commit comments

Comments
 (0)