diff --git a/CHANGELOG.md b/CHANGELOG.md index d10f13a..fbcba64 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,14 @@ 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.3.0](https://github.com/Akylas/mbview-rs/compare/v1.2.0...v1.3.0) (2022-03-18) + + +### Features + +* basic split map view support (select secondary with fab button) ([dd7b5d0](https://github.com/Akylas/mbview-rs/commit/dd7b5d0b19859d2cfc6b38450edea3f324dd278b)) +* watch open mbtiles for changes. Will reload the map when changed! ([d0cf700](https://github.com/Akylas/mbview-rs/commit/d0cf70043c94cc9a160daebac7fc5e19e765f971)) + ## [1.2.0](https://github.com/Akylas/mbview-rs/compare/v1.1.0...v1.2.0) (2022-03-17) diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index 6ab9349..b07499e 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mbview" -version = "1.2.0" +version = "1.3.0" description = "MBtiles inspector" authors = [ "dev@akylasfr" ] license = "MIT" @@ -11,7 +11,7 @@ build = "src/build.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" @@ -25,7 +25,13 @@ 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"] } +tauri = { version = "1.0.0-rc.4", features = [ + "dialog-open", + "fs-read-file", + "path-all", + "protocol-asset", + "shell-open" +] } [dependencies.rusqlite] version = "0.27"