Skip to content

Commit 4c79eb9

Browse files
author
Jon Staab
committed
Bump welshman, use new shipyard dvm
1 parent e43b3d0 commit 4c79eb9

File tree

4 files changed

+102
-100
lines changed

4 files changed

+102
-100
lines changed

package.json

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -43,17 +43,17 @@
4343
"@tsconfig/svelte": "^5.0.4",
4444
"@types/throttle-debounce": "^5.0.2",
4545
"@vite-pwa/assets-generator": "^0.2.6",
46-
"@welshman/app": "^0.5.1",
47-
"@welshman/content": "^0.5.1",
48-
"@welshman/editor": "^0.5.1",
49-
"@welshman/feeds": "^0.5.1",
50-
"@welshman/lib": "^0.5.1",
51-
"@welshman/net": "^0.5.1",
52-
"@welshman/relay": "^0.5.1",
53-
"@welshman/router": "^0.5.1",
54-
"@welshman/signer": "^0.5.1",
55-
"@welshman/store": "^0.5.1",
56-
"@welshman/util": "^0.5.1",
46+
"@welshman/app": "^0.5.2",
47+
"@welshman/content": "^0.5.2",
48+
"@welshman/editor": "^0.5.2",
49+
"@welshman/feeds": "^0.5.2",
50+
"@welshman/lib": "^0.5.2",
51+
"@welshman/net": "^0.5.2",
52+
"@welshman/relay": "^0.5.2",
53+
"@welshman/router": "^0.5.2",
54+
"@welshman/signer": "^0.5.2",
55+
"@welshman/store": "^0.5.2",
56+
"@welshman/util": "^0.5.2",
5757
"autoprefixer": "^10.4.21",
5858
"bowser": "^2.11.0",
5959
"classnames": "^2.5.1",

pnpm-lock.yaml

Lines changed: 86 additions & 86 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/app/views/NoteCreate.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
const uploading = writable(false)
4949
const wordCount = writable(0)
5050
const charCount = writable(0)
51-
const SHIPYARD_PUBKEY = "85c20d3760ef4e1976071a569fb363f4ff086ca907669fb95167cdc5305934d1"
51+
const SHIPYARD_PUBKEY = "5f13f66425c39afa13afd82870952e10d584cebd87f9d02f00ccd871aaaae9eb"
5252
const nsecWarning = writable(null)
5353
5454
const openOptions = () => {

src/app/views/PublishesEvents.svelte

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,15 @@
11
<script lang="ts">
22
import {call, nthNe, nth, DAY, MINUTE, now, remove, sortBy} from "@welshman/lib"
3-
import {thunks, type Thunk} from "@welshman/app"
3+
import {thunks, isThunk, type Thunk} from "@welshman/app"
44
import {PublishStatus} from "@welshman/net"
55
import {LOCAL_RELAY_URL} from "@welshman/relay"
66
import Tile from "src/partials/Tile.svelte"
77
import PublishCard from "src/app/shared/PublishCard.svelte"
88
import {pluralize} from "src/util/misc"
99
10-
$: recent = (Object.values($thunks) as Thunk[]).filter(t => t.event.created_at > now() - DAY)
10+
$: recent = Object.values($thunks).filter(
11+
t => isThunk(t) && t.event.created_at > now() - DAY,
12+
) as Thunk[]
1113
1214
$: relays = new Set(
1315
remove(

0 commit comments

Comments
 (0)