Skip to content

Commit

Permalink
fix regression and release 0.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
zippy committed Oct 18, 2022
1 parent f7e6253 commit 8a3fa61
Show file tree
Hide file tree
Showing 7 changed files with 23 additions and 111 deletions.
4 changes: 2 additions & 2 deletions apps/applet/ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"description": "TalkingStickies in we-applet form",
"license": "MIT",
"author": "holochaindev",
"version": "0.6.0",
"version": "0.6.1",
"scripts": {
"lint": "eslint --ext .ts,.html . --ignore-path .gitignore && prettier \"**/*.ts\" --check --ignore-path .gitignore",
"format": "eslint --ext .ts,.html . --fix --ignore-path .gitignore && prettier \"**/*.ts\" --write --ignore-path .gitignore",
Expand All @@ -20,7 +20,7 @@
"@holochain-open-dev/cell-client": "^0.8.0",
"@holochain-open-dev/core-types": "^0.5.0",
"@holochain/client": "^0.9.2",
"@holo-host/talking-stickies": "^0.6.0",
"@holo-host/talking-stickies": "^0.6.1",
"@lightningrodlabs/we-applet": "^0.1.0",
"@lit-labs/context": "^0.1.2",
"@open-wc/scoped-elements": "^2.0.1",
Expand Down
4 changes: 2 additions & 2 deletions apps/holo/ui/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "talking-stickies-holo-app",
"version": "0.6.0",
"version": "0.6.1",
"scripts": {
"build:raw": "rimraf public/build && rollup -c",
"build:dev": "SVELTE_APP_CHAPERONE_URL=https://chaperone-rsm.dev.holotest.net npm run build:raw",
Expand All @@ -15,7 +15,7 @@
"package": "echo \"packaging what was previously built in ./public\" && rimraf ui.zip && cd ./public && bestzip ../ui.zip * "
},
"dependencies": {
"@holo-host/talking-stickies": "0.6.0",
"@holo-host/talking-stickies": "0.6.1",
"@holo-host/web-sdk": "^0.6.7-prerelease",
"@holochain-open-dev/cell-client": "0.8.0",
"@holochain-open-dev/core-types": "0.5.0",
Expand Down
4 changes: 2 additions & 2 deletions apps/launcher/ui/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "talking-stickies-app",
"version": "0.6.0",
"version": "0.6.1",
"scripts": {
"build": "rimraf public/build && rollup -c",
"build:watch": "run-singleton \"rollup -c -w\"",
Expand All @@ -14,7 +14,7 @@
"package": "rimraf ui.zip && rimraf public/build && rollup -c && cd ./public && bestzip ../ui.zip * "
},
"dependencies": {
"@holo-host/talking-stickies": "0.6.0",
"@holo-host/talking-stickies": "0.6.1",
"@holochain/client": "0.9.2",
"@holochain-open-dev/cell-client": "0.8.0",
"@holochain-open-dev/core-types": "0.5.0",
Expand Down
2 changes: 1 addition & 1 deletion libs/ui/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@holo-host/talking-stickies",
"version": "0.6.0",
"version": "0.6.1",
"description": "web components and more for talking-stickies app",
"license": "MIT",
"author": "holochaindev",
Expand Down
5 changes: 5 additions & 0 deletions libs/ui/src/lib/BoardList.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,11 @@
const editBoard = (hash: EntryHashB64) => async () => {
const board: Board | undefined = await store.boardList.getBoard(hash)
if (board) {
const state = board.state()
editingBoardHash = hash
editName = state.name
editGroups = cloneDeep(state.groups)
editVoteTypes = cloneDeep(state.voteTypes)
} else {
console.log("board not found:", hash)
}
Expand Down
1 change: 1 addition & 0 deletions libs/ui/src/lib/Controller.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,7 @@
.app {
grid-column: 1/3;
grid-row: 1/2;
/* width: 100%; */
margin: 20px;
}
:global(:root) {
Expand Down
114 changes: 10 additions & 104 deletions package-lock.json

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

0 comments on commit 8a3fa61

Please sign in to comment.