Skip to content

Commit f8f38c0

Browse files
committed
Release 0.17.0
1 parent 26c8813 commit f8f38c0

File tree

4 files changed

+12
-2
lines changed

4 files changed

+12
-2
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# kview change log
22

3+
## Version 0.17.0
4+
5+
- fix: handle empty string key parts (3062947)
6+
- fix: handle changes to dash API (5c7b2fa)
7+
- chore: migrate to svg-minify plugin (26c8813)
8+
39
## Version 0.16.0
410

511
- feat: support filtering (fec0bb0)

_fresh.zip

4.45 KB
Binary file not shown.

deno.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
22
"name": "@kitsonk/kview",
3-
"version": "0.16.0",
3+
"version": "0.17.0",
44
"exports": { "./install": "./install.ts" },
55
"publish": {
6-
"exclude": [".vscode", ".github", "assets", "dev.ts", "minify_svg.ts"]
6+
"exclude": [".vscode", ".github", "dev.ts"]
77
},
88
"lock": false,
99
"tasks": {

fresh.gen.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,13 @@ import * as $projects_name_kv_branch_ from "./routes/projects/[name]/kv/[branch]
3131
import * as $remote_id_ from "./routes/remote/[id].tsx";
3232
import * as $remote_index from "./routes/remote/index.tsx";
3333
import * as $user from "./routes/user.ts";
34+
import * as $viewer from "./routes/viewer.tsx";
3435
import * as $watch from "./routes/watch.tsx";
3536
import * as $KeyTree from "./islands/KeyTree.tsx";
3637
import * as $KvExplorer from "./islands/KvExplorer.tsx";
3738
import * as $LocalControls from "./islands/LocalControls.tsx";
3839
import * as $LocalKvList from "./islands/LocalKvList.tsx";
40+
import * as $ObjectEditor from "./islands/ObjectEditor.tsx";
3941
import * as $RemoteControls from "./islands/RemoteControls.tsx";
4042
import * as $RemoteKvList from "./islands/RemoteKvList.tsx";
4143
import * as $Watches from "./islands/Watches.tsx";
@@ -72,13 +74,15 @@ const manifest = {
7274
"./routes/remote/[id].tsx": $remote_id_,
7375
"./routes/remote/index.tsx": $remote_index,
7476
"./routes/user.ts": $user,
77+
"./routes/viewer.tsx": $viewer,
7578
"./routes/watch.tsx": $watch,
7679
},
7780
islands: {
7881
"./islands/KeyTree.tsx": $KeyTree,
7982
"./islands/KvExplorer.tsx": $KvExplorer,
8083
"./islands/LocalControls.tsx": $LocalControls,
8184
"./islands/LocalKvList.tsx": $LocalKvList,
85+
"./islands/ObjectEditor.tsx": $ObjectEditor,
8286
"./islands/RemoteControls.tsx": $RemoteControls,
8387
"./islands/RemoteKvList.tsx": $RemoteKvList,
8488
"./islands/Watches.tsx": $Watches,

0 commit comments

Comments
 (0)