From 076a7f9a658ec7bb4aa792cb954d6034c1a5d2f2 Mon Sep 17 00:00:00 2001 From: Breck Yunits Date: Sun, 1 Sep 2024 03:06:02 -1000 Subject: [PATCH] On creators show all concepts not just pl. Thanks somebodddy --- Computer.js | 6 +----- lists/creators.scroll | 2 +- lists/podcasts.scroll | 3 ++- package.json | 2 +- 4 files changed, 5 insertions(+), 8 deletions(-) diff --git a/Computer.js b/Computer.js index 2d8ecdca56cb..e7d09568ef80 100644 --- a/Computer.js +++ b/Computer.js @@ -1675,11 +1675,7 @@ class Tables { } get creatorsTable() { - const entities = groupByListValues( - "creators", - this.pldb.filter(row => row.isLanguage), - " and " - ) + const entities = groupByListValues("creators", this.pldb, " and ") const { creators } = this const creatorsMap = {} creators.forEach(creator => (creatorsMap[creator.id] = creator)) diff --git a/lists/creators.scroll b/lists/creators.scroll index 9f26b26e035d..a1771b1940fa 100644 --- a/lists/creators.scroll +++ b/lists/creators.scroll @@ -9,7 +9,7 @@ printTitle wideColumns 1 -Here is the list of COUNT people who created a language(s) in PLDB. +Here is the list of COUNT people who created a language(s) (or other significant programming project) in PLDB. Help us out by adding any missing information with a pull request. https://github.com/breck7/pldb/blob/main/creators/creators.scroll pull request diff --git a/lists/podcasts.scroll b/lists/podcasts.scroll index 43dbb9b75dff..fb1f082a994b 100644 --- a/lists/podcasts.scroll +++ b/lists/podcasts.scroll @@ -100,7 +100,8 @@ youtubeLinkParser return hit ? hit.firstWord : "" } -youtubeParser +pldbYoutubeParser + crux youtube extends abstractCountParser float sortIndex 1.81 description Number of subscribers. diff --git a/package.json b/package.json index 9c82325e6c4d..02bb482b3f02 100644 --- a/package.json +++ b/package.json @@ -42,7 +42,7 @@ "lodash": "^4.17.21", "monaco-editor": "^0.34.1", "numeral": "^2.0.6", - "scroll-cli": "^125.0.1", + "scroll-cli": "^125.2.0", "scrollsdk": "^84.0.0", "semver": "^7.6.2" },