Commit 811ef64cd3120bacda2030709c8f86850a10fe6f
update to patchcore@2 + ssb-about@2
mixmix committed on 11/14/2018, 10:06:30 AMParent: 333a9a98cdc412731e02e96839e765f27e6d877e
Files changed
app/html/scroller.js | changed |
app/sync/initialise/suggestionCaches.js | changed |
package-lock.json | changed |
package.json | changed |
app/html/scroller.js | |||
---|---|---|---|
@@ -11,9 +11,16 @@ | |||
11 | 11 … | ||
12 | 12 … | const contentSection = h('section.content', { title: '' }, content) | |
13 | 13 … | ||
14 | 14 … | const container = h('Scroller', | |
15 | - { classList, className, title, style: { 'overflow-y': 'scroll', 'overflow-x': 'auto' } }, | ||
15 … | + { | ||
16 … | + classList, | ||
17 … | + className, | ||
18 … | + title, | ||
19 … | + style: { 'overflow-y': 'scroll', 'overflow-x': 'auto' }, | ||
20 … | + intersectionBindingViewport: { rootMargin: '1000px' } // mutant magic | ||
21 … | + // TODO (watch for breaks e.g. stuff stops updating after scrolling) | ||
22 … | + }, | ||
16 | 23 … | [ | |
17 | 24 … | prepend ? h('section.top', prepend) : null, | |
18 | 25 … | contentSection, | |
19 | 26 … | append ? h('section.bottom', append) : null |
app/sync/initialise/suggestionCaches.js | ||
---|---|---|
@@ -11,8 +11,11 @@ | ||
11 | 11 … | return nest('app.sync.initialise', init) |
12 | 12 … | |
13 | 13 … | function init () { |
14 | 14 … | // lazy load abouts on first use, can be quite heavy during startup |
15 | - //api.about.async.suggest() | |
15 … | + setTimeout(() => { | |
16 … | + console.log('> loading @mentions cache') | |
17 … | + api.about.async.suggest() | |
18 … | + }, 20e3) | |
16 | 19 … | api.channel.async.suggest() |
17 | 20 … | } |
18 | 21 … | } |
package-lock.json | ||
---|---|---|
The diff is too large to show. Use a local git client to view these changes. Old file size: 374439 bytes New file size: 379507 bytes |
package.json | ||
---|---|---|
@@ -73,9 +73,9 @@ | ||
73 | 73 … | "patchbay-dark-crystal": "^1.1.1", |
74 | 74 … | "patchbay-gatherings": "^3.2.8", |
75 | 75 … | "patchbay-poll": "^1.1.3", |
76 | 76 … | "patchbay-scry": "^1.3.3", |
77 | - "patchcore": "^1.28.1", | |
77 … | + "patchcore": "^2.0.0", | |
78 | 78 … | "pull-abortable": "^4.1.1", |
79 | 79 … | "pull-next-query": "^1.0.0", |
80 | 80 … | "pull-notify": "^0.1.1", |
81 | 81 … | "pull-scroll": "^1.0.9", |
@@ -84,9 +84,9 @@ | ||
84 | 84 … | "require-style": "^1.0.1", |
85 | 85 … | "scuttle-blog": "^1.0.1", |
86 | 86 … | "scuttlebot": "^13.0.2", |
87 | 87 … | "setimmediate": "^1.0.5", |
88 | - "ssb-about": "^0.1.2", | |
88 … | + "ssb-about": "^2.0.0", | |
89 | 89 … | "ssb-backlinks": "^0.7.3", |
90 | 90 … | "ssb-blob-files": "^1.1.3", |
91 | 91 … | "ssb-blobs": "^1.1.6", |
92 | 92 … | "ssb-chess-db": "^1.0.5", |
Built with git-ssb-web