Skip to content

Commit

Permalink
chore(release): 1.5.2
Browse files Browse the repository at this point in the history
  • Loading branch information
farfromrefug committed May 25, 2022
1 parent 8d96c1c commit 1fc117e
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 16 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,20 @@

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.5.2](https://github.com/Akylas/mbview-rs/compare/v1.5.1...v1.5.2) (2022-05-25)


### Bug Fixes

* correctly hide selected layers with toggles ([614c5b4](https://github.com/Akylas/mbview-rs/commit/614c5b44b75dba8c46c7b042ad5a661831c09bc0))
* missing translations ([f2aa541](https://github.com/Akylas/mbview-rs/commit/f2aa54169ec8a7d54f10248ed23b8809d1add24e))
* prevent duplicates in attribute popup ([16a3fd7](https://github.com/Akylas/mbview-rs/commit/16a3fd730cdd9c7b7ffbc2e889b4c42127e8c3bf))
* show geometry type as $type ([0f46557](https://github.com/Akylas/mbview-rs/commit/0f465579947822fbd5040a876814a9e3613e3b40))
* theme style for popup and compare splitter ([f0b13ea](https://github.com/Akylas/mbview-rs/commit/f0b13ea80c60975a59eb895a6d694162dc139a77))
* upgraded deps ([734038d](https://github.com/Akylas/mbview-rs/commit/734038df860d7549c0bee00584691da6591cf640))



## [1.5.1](https://github.com/Akylas/mbview-rs/compare/v1.5.0...v1.5.1) (2022-03-24)


Expand Down
38 changes: 22 additions & 16 deletions src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
[package]
name = "MBTilesViewer"
version = "1.5.1"
version = "1.5.2"
description = "MBtiles viewer and inspector"
authors = ["dev@akylasfr"]
authors = [ "dev@akylasfr" ]
license = "MIT"
repository = "https://github.com/farfromrefug/mbview"
default-run = "MBTilesViewer"
edition = "2018"
build = "src/build.rs"
include = ["**/*.rs"]
include = [ "**/*.rs" ]

[build-dependencies]
tauri-build = { version = "1.0.0-rc.4", features = [] }
tauri-build = { version = "1.0.0-rc.4", features = [ ] }

[dependencies]
r2d2 = "0.8"
Expand All @@ -23,22 +23,28 @@ serde_json = "1.0"
md5 = "0.7"
libsqlite3-sys = "0.24"
hotwatch = "0.4"
tokio = { version = "1.17", features = ["full"] }
hyper = { version = "0.14", features = ["server", "http1", "http2", "tcp"] }
serde = { version = "1.0", features = ["derive"] }
tauri = { version = "1.0.0-rc.4", features = ["dialog-open", "fs-read-file", "path-all", "protocol-asset", "shell-open"] }
tokio = { version = "1.17", features = [ "full" ] }
hyper = { version = "0.14", features = [ "server", "http1", "http2", "tcp" ] }
serde = { version = "1.0", features = [ "derive" ] }
tauri = { version = "1.0.0-rc.4", features = [
"dialog-open",
"fs-read-file",
"path-all",
"protocol-asset",
"shell-open"
] }

[dependencies.rusqlite]
version = "0.27"
features = ["bundled"]
[dependencies.rusqlite]
version = "0.27"
features = [ "bundled" ]

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

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

[profile.release]
panic = "abort"
Expand Down

0 comments on commit 1fc117e

Please sign in to comment.