diff --git a/CHANGELOG.md b/CHANGELOG.md index 3025eaa..030d368 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,7 @@ # Changelog ## [Unreleased] +- Separate bots from users in the UI (#720) - Add a feedback link to the prototype (#715) - Support combining multiple repositories into a single graph (#711) - Normalize scores so that 1000 cred is split amongst users (#709) diff --git a/src/app/credExplorer/App.js b/src/app/credExplorer/App.js index fd13816..63e3ab5 100644 --- a/src/app/credExplorer/App.js +++ b/src/app/credExplorer/App.js @@ -73,7 +73,7 @@ export function createApp( const pnd = appState.substate.pagerankNodeDecomposition; pagerankTable = ( - this.stateTransitionMachine.runPagerank(GithubPrefix.userlike) + this.stateTransitionMachine.runPagerank(GithubPrefix.user) } > Run PageRank diff --git a/src/plugins/github/pluginAdapter.js b/src/plugins/github/pluginAdapter.js index 6507dfe..1a4bd08 100644 --- a/src/plugins/github/pluginAdapter.js +++ b/src/plugins/github/pluginAdapter.js @@ -57,9 +57,15 @@ export class StaticPluginAdapter implements IStaticPluginAdapter { { name: "User", pluralName: "Users", - prefix: N._Prefix.userlike, + prefix: N._Prefix.user, defaultWeight: 1, }, + { + name: "Bot", + pluralName: "Bots", + prefix: N._Prefix.bot, + defaultWeight: 0.25, + }, ]; } edgeTypes() {