From fbd4c8a3211ee415b5135fa27048534a24d0fa27 Mon Sep 17 00:00:00 2001 From: farfromrefuge Date: Sun, 28 May 2023 21:52:14 +0200 Subject: [PATCH] chore(release): 1.7.0 --- CHANGELOG.md | 26 ++++++++++++++++++++++++++ src-tauri/Cargo.toml | 29 +++++++++++++---------------- 2 files changed, 39 insertions(+), 16 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0e0893a..7c9e180 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,32 @@ 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.7.0](https://github.com/Akylas/mbview-rs/compare/v1.6.0...v1.7.0) (2023-05-28) + + +### Bug Fixes + +* default zoom levels ([f9220d4](https://github.com/Akylas/mbview-rs/commit/f9220d4cf1154989a43bd0c30d48b471c6b4fb3e)) +* fix for copy tile to geojson ([ca411f5](https://github.com/Akylas/mbview-rs/commit/ca411f5bfa5253b9f73bf8ba0a0a0e0fda551433)) +* full reload now working ([4cab82e](https://github.com/Akylas/mbview-rs/commit/4cab82e7252bb7534541d7c6aca8672491435ab4)) +* handle more pbf formats ([c27256c](https://github.com/Akylas/mbview-rs/commit/c27256c1f7be20dc267256192d2dcbf3b473d642)) +* handle wrong minzoom/maxzoom in metadata ([dcbd568](https://github.com/Akylas/mbview-rs/commit/dcbd56844291de2bd8c581465bb7cea17018de14)) +* prevent crash if mbtiles file does not exist ([2cf5e83](https://github.com/Akylas/mbview-rs/commit/2cf5e83024e8d6dac035cd098947220f38b9186e)) +* reload data fix ([bbbc9f2](https://github.com/Akylas/mbview-rs/commit/bbbc9f26e6e1d399b0e2e0527b36608923f70bba)) +* reload improvement ([3ebbb77](https://github.com/Akylas/mbview-rs/commit/3ebbb7748666cfce1903378a802d5854a1bd08ba)) +* reload split position saved ([6ffb3cc](https://github.com/Akylas/mbview-rs/commit/6ffb3cc682d4665894f5dbfef4095ad1e1549673)) +* removed menus ([3634a6f](https://github.com/Akylas/mbview-rs/commit/3634a6fc62e4310c0d7d3ff3d4c653adf37dd8ec)) +* sort selected items ([8962ccd](https://github.com/Akylas/mbview-rs/commit/8962ccde4ab271ade528f7db6d33af366ed0a035)) +* updated tauri ([fd21533](https://github.com/Akylas/mbview-rs/commit/fd215336d831678916bf74ed759e299039333550)) + + +### Features + +* hillshade layer support ([7832822](https://github.com/Akylas/mbview-rs/commit/783282270a82d6f48fa27dd790ce6ab8694a02a7)) +* last opened folder ([bc7e733](https://github.com/Akylas/mbview-rs/commit/bc7e7331fa68a55839e0a31eb15af9456f8a68cf)) + + + ## [1.6.0](https://github.com/Akylas/mbview-rs/compare/v1.5.2...v1.6.0) (2022-05-26) diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index c43dcb4..0cbf1a0 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -1,17 +1,17 @@ [package] name = "MBTilesViewer" -version = "1.6.0" +version = "1.7.0" 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.2.1", features = [] } +tauri-build = { version = "1.2.1", features = [ ] } [dependencies] r2d2 = "0.8" @@ -23,22 +23,19 @@ serde_json = "1.0" md5 = "0.7" libsqlite3-sys = "0.25" hotwatch = "0.4" -tokio = { version = "1.23", features = ["full"] } -hyper = { version = "0.14", features = ["server", "http1", "http2", "tcp"] } -serde = { version = "1.0", features = ["derive"] } -tauri = { version = "1.2.2", features = ["api-all"] } +tokio = { version = "1.23", features = [ "full" ] } +hyper = { version = "0.14", features = [ "server", "http1", "http2", "tcp" ] } +serde = { version = "1.0", features = [ "derive" ] } +tauri = { version = "1.2.2", features = [ "api-all" ] } tauri-plugin-window-state = "0.1" -[dependencies.rusqlite] -version = "0.28" -features = ["bundled"] - -# [dependencies.tauri-plugin-window-state] -# git = "https://github.com/tauri-apps/tauri-plugin-window-state" + [dependencies.rusqlite] + version = "0.28" + features = [ "bundled" ] [features] -default = ["custom-protocol"] -custom-protocol = ["tauri/custom-protocol"] +default = [ "custom-protocol" ] +custom-protocol = [ "tauri/custom-protocol" ] [profile.release] panic = "abort"