Skip to content

Commit

Permalink
feat: new bottom panel to show selected features
Browse files Browse the repository at this point in the history
The popup behavior also changed:
* works on click
* works while moving if shift is pressed
  • Loading branch information
farfromrefug committed Mar 22, 2022
1 parent e41807d commit 8d9e5ce
Show file tree
Hide file tree
Showing 17 changed files with 2,380 additions and 304 deletions.
3 changes: 3 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@
"@tauri-apps/api": "1.0.0-rc.2",
"@tauri-apps/cli": "1.0.0-rc.7",
"@tauri-apps/toml": "^2.2.4",
"@types/geojson": "^7946.0.8",
"@typescript-eslint/eslint-plugin": "^5.16.0",
"@typescript-eslint/parser": "^5.16.0",
"cssnano": "^5.1.5",
Expand All @@ -67,9 +68,11 @@
"carbon-components-svelte": "^0.62.1",
"carbon-icons-svelte": "^10.45.1",
"events": "^3.3.0",
"highlight.js": "^11.5.0",
"mapbox-gl-controls": "^2.3.5",
"maplibre-gl": "^2.1.7",
"randomcolor": "^0.6.2",
"svelte-highlight": "^5.3.2",
"svelte-i18n": "^3.3.13",
"svelte-tauri-filedrop": "^1.0.0"
},
Expand Down
21 changes: 21 additions & 0 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 2 additions & 8 deletions src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -26,13 +26,7 @@ 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"
Expand Down
Loading

0 comments on commit 8d9e5ce

Please sign in to comment.