Skip to content

Commit bfed6cd

Browse files
committed
chore: release v0.12.0
1 parent f8be2fe commit bfed6cd

File tree

3 files changed

+43
-13
lines changed

3 files changed

+43
-13
lines changed

CHANGELOG.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,29 @@
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+
## [0.12.0](https://github.com/QSPFoundation/qspider/compare/v0.11.1...v0.12.0) (2022-01-15)
6+
7+
### Features
8+
9+
- add window config ([720356f](https://github.com/QSPFoundation/qspider/commit/720356f75e2bcc7e73469923fdc2b7c6abb7c250))
10+
- load game from disk, support drop to open ([a1c4983](https://github.com/QSPFoundation/qspider/commit/a1c498366716475b0309902b2db4030835573293))
11+
- load main config from url ([31b715e](https://github.com/QSPFoundation/qspider/commit/31b715e7efbd332e9f0b2d0714f3dbcd260ae476))
12+
- support game level config file ([884b177](https://github.com/QSPFoundation/qspider/commit/884b17773daf9dbc6a15202d6113bf871ff30fb1))
13+
- support opening game from cli ([1528955](https://github.com/QSPFoundation/qspider/commit/152895593ec2ca76dd4aef231fb2304457516266))
14+
15+
### Bug Fixes
16+
17+
- $fname not working, layout cleanup ([1451274](https://github.com/QSPFoundation/qspider/commit/14512743daf1d20e26a3fa48077cc9c6522955b4))
18+
- change vertical align of img inside table ([4f9ffa8](https://github.com/QSPFoundation/qspider/commit/4f9ffa8f87a5e0ff565f162c80c7eb0ed032f868))
19+
- fix resize on opening aqsp file ([0a48b06](https://github.com/QSPFoundation/qspider/commit/0a48b06a382c2e51f68a62b4be1ac57c04f640d8))
20+
- fix save/restore ([b155319](https://github.com/QSPFoundation/qspider/commit/b1553197fb481a7a37cc74da2121c00f6a863154))
21+
- fix working with cyrylic symbols in path ([2796a6b](https://github.com/QSPFoundation/qspider/commit/2796a6b1b786c53d14a0ab86c9951aa6ab6ce119))
22+
- html in input ([3eab14f](https://github.com/QSPFoundation/qspider/commit/3eab14f7f9b2ac1fea7873c0dbc817c18631ab67))
23+
- loading game from archive ([356d58a](https://github.com/QSPFoundation/qspider/commit/356d58aa623dc5c2fa95c37b095ec6453cd653bc))
24+
- make center tag and align attribute to behave more like classic ([21198bf](https://github.com/QSPFoundation/qspider/commit/21198bf1f53c8c563fd2e6d53367cb368f641994))
25+
- opening games not from config ([b41173e](https://github.com/QSPFoundation/qspider/commit/b41173ea3b6bab764917e661ca7da9cbe5d19eb0))
26+
- remove scroll padding when arrows are hidden ([613503d](https://github.com/QSPFoundation/qspider/commit/613503dc5c8f30d813f749535adc4f87f048e86a))
27+
528
### [0.11.1](https://github.com/QSPFoundation/qspider/compare/v0.11.0...v0.11.1) (2021-10-31)
629

730
### Bug Fixes

src-tauri/Cargo.toml

Lines changed: 15 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,27 +2,34 @@
22
name = "qspider"
33
version = "0.12.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"
99
edition = "2018"
1010
build = "src/build.rs"
1111

12-
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
13-
14-
[build-dependencies]
15-
tauri-build = { version = "1.0.0-beta.4" }
12+
[build-dependencies.tauri-build]
13+
version = "1.0.0-beta.4"
1614

1715
[dependencies]
1816
serde_json = "1.0"
19-
serde = { version = "1.0", features = ["derive"] }
20-
tauri = { version = "1.0.0-beta.8", features = ["api-all", "cli", "updater"] }
2117
entity-tag = "0.1.5"
2218
mime_guess = "2.0.3"
23-
uuid = { version = "0.8", features = ["serde", "v4"] }
2419
urlencoding = "2.1.0"
2520

21+
[dependencies.serde]
22+
version = "1.0"
23+
features = [ "derive" ]
24+
25+
[dependencies.tauri]
26+
version = "1.0.0-beta.8"
27+
features = ["api-all", "cli", "updater"]
28+
29+
[dependencies.uuid]
30+
version = "0.8"
31+
features = [ "serde", "v4" ]
32+
2633
[features]
2734
default = [ "custom-protocol" ]
2835
custom-protocol = [ "tauri/custom-protocol" ]

updater.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
{
2-
"name": "$VERSION$",
2+
"name": "0.12.0",
33
"notes": "Initial desktop release",
4-
"pub_date": "2022-01-02T12:00:00Z",
4+
"pub_date": "2022-01-15T19:26:44.067Z",
55
"platforms": {
66
"darwin": {
7-
"url": "https://github.com/QSPFoundation/qspider/releases/download/$VERSION$/qSpider.app.tar.gz"
7+
"url": "https://github.com/QSPFoundation/qspider/releases/download/0.12.0/qSpider.app.tar.gz"
88
},
99
"linux": {
10-
"url": "https://github.com/QSPFoundation/qspider/releases/download/$VERSION$/qSpider.AppImage.tar.gz"
10+
"url": "https://github.com/QSPFoundation/qspider/releases/download/0.12.0/qSpider.AppImage.tar.gz"
1111
},
1212
"win64": {
13-
"url": "https://github.com/QSPFoundation/qspider/releases/download/$VERSION$/qSpider.x64.msi.zip"
13+
"url": "https://github.com/QSPFoundation/qspider/releases/download/0.12.0/qSpider.x64.msi.zip"
1414
}
1515
}
1616
}

0 commit comments

Comments
 (0)