git ssb

16+

Dominic / patchbay



Commit 811ef64cd3120bacda2030709c8f86850a10fe6f

update to patchcore@2 + ssb-about@2

mixmix committed on 11/14/2018, 10:06:30 AM
Parent: 333a9a98cdc412731e02e96839e765f27e6d877e

Files changed

app/html/scroller.jschanged
app/sync/initialise/suggestionCaches.jschanged
package-lock.jsonchanged
package.jsonchanged
app/html/scroller.jsView
@@ -11,9 +11,16 @@
1111
1212 const contentSection = h('section.content', { title: '' }, content)
1313
1414 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 + },
1623 [
1724 prepend ? h('section.top', prepend) : null,
1825 contentSection,
1926 append ? h('section.bottom', append) : null
app/sync/initialise/suggestionCaches.jsView
@@ -11,8 +11,11 @@
1111 return nest('app.sync.initialise', init)
1212
1313 function init () {
1414 // 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)
1619 api.channel.async.suggest()
1720 }
1821 }
package-lock.jsonView
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.jsonView
@@ -73,9 +73,9 @@
7373 "patchbay-dark-crystal": "^1.1.1",
7474 "patchbay-gatherings": "^3.2.8",
7575 "patchbay-poll": "^1.1.3",
7676 "patchbay-scry": "^1.3.3",
77- "patchcore": "^1.28.1",
77 + "patchcore": "^2.0.0",
7878 "pull-abortable": "^4.1.1",
7979 "pull-next-query": "^1.0.0",
8080 "pull-notify": "^0.1.1",
8181 "pull-scroll": "^1.0.9",
@@ -84,9 +84,9 @@
8484 "require-style": "^1.0.1",
8585 "scuttle-blog": "^1.0.1",
8686 "scuttlebot": "^13.0.2",
8787 "setimmediate": "^1.0.5",
88- "ssb-about": "^0.1.2",
88 + "ssb-about": "^2.0.0",
8989 "ssb-backlinks": "^0.7.3",
9090 "ssb-blob-files": "^1.1.3",
9191 "ssb-blobs": "^1.1.6",
9292 "ssb-chess-db": "^1.0.5",

Built with git-ssb-web