├── .editorconfig ├── .erb ├── configs │ ├── .eslintrc │ ├── webpack.config.base.ts │ ├── webpack.config.eslint.ts │ ├── webpack.config.main.prod.ts │ ├── webpack.config.preload.dev.ts │ ├── webpack.config.renderer.dev.dll.ts │ ├── webpack.config.renderer.dev.ts │ ├── webpack.config.renderer.prod.ts │ └── webpack.paths.ts ├── img │ ├── app-snapshot.png │ ├── calculationsOverview_damus.png │ ├── calculationsOverview_joker1.png │ ├── createInstance.png │ ├── createNewList.png │ ├── curatedListsControlPanel.png │ ├── curatedListsControlPanel2.png │ ├── curatedListsMainPage.png │ ├── curatedListsMainPage2.png │ ├── curatedListsShowCalculations.png │ ├── curatedListsWithGraph.png │ ├── damusInfo.png │ ├── damusNostrEvent.png │ ├── damusWord.png │ ├── endorseOrBlockACurator.png │ ├── endorseOrBlockAnItem.png │ ├── erb-banner.svg │ ├── erb-logo.png │ ├── listCuration1.png │ ├── listCuration2.png │ ├── listCurationControlPanel_display.png │ ├── listCurationControlPanel_items.png │ ├── listCurationControlPanel_sybilMitigation_defense_mod1.png │ ├── listCurationControlPanel_sybilMitigation_defense_mod2.png │ ├── listCurationControlPanel_sybilMitigation_defense_mod3.png │ ├── listCurationControlPanel_sybilMitigation_overview.png │ ├── listCurationControlPanel_sybilMitigation_rigor.png │ ├── listCurationControlPanel_users.png │ ├── listCurationMainPageWds4.png │ ├── listCurationResults_curatorScores.png │ ├── listCurationResults_itemScores.png │ ├── listCurationResults_items.png │ ├── listCurationWds4WoT.png │ ├── nostrClientsCurationImg1.png │ ├── nostrClientsCurationImg2.png │ ├── nostrClientsInfo.png │ ├── nostrClientsNostrEvent.png │ ├── nostrClientsWord.png │ ├── palette-sponsor-banner.svg │ ├── ratingOfCurator_event.png │ ├── ratingOfCurator_word.png │ ├── ratingOfItem_event.png │ ├── ratingOfItem_word.png │ ├── ratingsOfCurators.png │ ├── ratingsOfItems.png │ └── viewLists.png ├── mocks │ └── fileMock.js └── scripts │ ├── .eslintrc │ ├── check-build-exists.ts │ ├── check-native-dep.js │ ├── check-node-env.js │ ├── check-port-in-use.js │ ├── clean.js │ ├── delete-source-maps.js │ ├── electron-rebuild.js │ ├── link-modules.ts │ └── notarize.js ├── .eslintignore ├── .eslintrc.js ├── .gitattributes ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── 1-Bug_report.md │ ├── 2-Question.md │ └── 3-Feature_request.md ├── config.yml ├── stale.yml └── workflows │ ├── codeql-analysis.yml │ ├── publish.yml │ └── test.yml ├── .gitignore ├── .husky └── pre-commit ├── .vscode ├── extensions.json ├── launch.json └── settings.json ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README copy.md ├── README.md ├── appDescriptions ├── README.md ├── channels │ └── README.md ├── curatedLists │ ├── README.md │ ├── exampleListCuration.md │ ├── exampleListCurationGrapevine.md │ ├── overview.md │ ├── screenshots.md │ └── v021Overview │ │ ├── calculationsOverview.md │ │ ├── rateCurator.md │ │ ├── rateItem.md │ │ ├── singleListDetails.md │ │ └── singleListItemDetails.md └── pgnostr │ └── README.md ├── assets ├── assets.d.ts ├── entitlements.mac.plist ├── icon.icns ├── icon.ico ├── icon.png ├── icon.svg └── icons │ ├── 1024x1024.png │ ├── 128x128.png │ ├── 16x16.png │ ├── 24x24.png │ ├── 256x256.png │ ├── 32x32.png │ ├── 48x48.png │ ├── 512x512.png │ ├── 64x64.png │ └── 96x96.png ├── config-overrides.js ├── notes.txt ├── package.json ├── release └── app │ ├── package-lock.json │ └── package.json ├── src ├── __tests__ │ └── App.test.tsx ├── main │ ├── const │ │ └── nostr │ │ │ └── index.ts │ ├── main.ts │ ├── menu.ts │ ├── preload.ts │ └── util.ts └── renderer │ ├── devNotes │ ├── devModes.txt │ ├── techDetailsForNostrNerds.tsx │ └── techDetailsForNostrNerds.txt │ ├── window1 │ ├── App.tsx │ ├── AppNostr.tsx │ ├── AppRoutes.tsx │ ├── apps │ │ ├── askNostr │ │ │ ├── createNewQuestion │ │ │ │ └── index.jsx │ │ │ ├── index.jsx │ │ │ ├── questions │ │ │ │ └── index.jsx │ │ │ └── settings │ │ │ │ └── index.jsx │ │ ├── conceptGraph │ │ │ ├── index.jsx │ │ │ ├── profile │ │ │ │ └── index.jsx │ │ │ ├── settings │ │ │ │ └── index.jsx │ │ │ └── words │ │ │ │ ├── createWord │ │ │ │ ├── createWord.tsx │ │ │ │ ├── index.tsx │ │ │ │ └── techDetailsForNostrNerds.tsx │ │ │ │ └── viewWords │ │ │ │ ├── index.tsx │ │ │ │ ├── techDetailsForNostrNerds1.tsx │ │ │ │ ├── techDetailsForNostrNerds2.tsx │ │ │ │ └── viewWords.tsx │ │ ├── curatedLists │ │ │ ├── about │ │ │ │ └── index.jsx │ │ │ ├── backup-multiListSummariesOfItemScores │ │ │ │ ├── index.jsx │ │ │ │ ├── miniGraph │ │ │ │ │ ├── calculations │ │ │ │ │ │ ├── singleIterationCompositeUserScoreCalculations.tsx │ │ │ │ │ │ └── singleIterationInstanceScoreCalculations.tsx │ │ │ │ │ ├── const.tsx │ │ │ │ │ ├── controlPanels │ │ │ │ │ │ ├── rightPanel │ │ │ │ │ │ │ ├── controlPanel │ │ │ │ │ │ │ │ ├── basicTab │ │ │ │ │ │ │ │ │ └── index.jsx │ │ │ │ │ │ │ │ ├── defenseTab │ │ │ │ │ │ │ │ │ ├── index.jsx │ │ │ │ │ │ │ │ │ ├── mod1Tab │ │ │ │ │ │ │ │ │ │ └── index.jsx │ │ │ │ │ │ │ │ │ ├── mod2Tab │ │ │ │ │ │ │ │ │ │ └── index.jsx │ │ │ │ │ │ │ │ │ └── mod3Tab │ │ │ │ │ │ │ │ │ │ └── index.jsx │ │ │ │ │ │ │ │ ├── displayTab │ │ │ │ │ │ │ │ │ └── index.jsx │ │ │ │ │ │ │ │ ├── grapevineTweaksTab │ │ │ │ │ │ │ │ │ └── index.jsx │ │ │ │ │ │ │ │ ├── index.jsx │ │ │ │ │ │ │ │ ├── instancesTab │ │ │ │ │ │ │ │ │ └── index.jsx │ │ │ │ │ │ │ │ ├── overviewTab │ │ │ │ │ │ │ │ │ └── index.jsx │ │ │ │ │ │ │ │ └── usersTab │ │ │ │ │ │ │ │ │ └── index.jsx │ │ │ │ │ │ │ ├── header.jsx │ │ │ │ │ │ │ ├── index.jsx │ │ │ │ │ │ │ └── scores │ │ │ │ │ │ │ │ ├── index.jsx │ │ │ │ │ │ │ │ ├── instanceScores.jsx │ │ │ │ │ │ │ │ ├── nostrProfileScores.jsx │ │ │ │ │ │ │ │ └── reactDataTables.tsx │ │ │ │ │ │ └── topControlPanel │ │ │ │ │ │ │ ├── attenuationFactorSlider.tsx │ │ │ │ │ │ │ ├── depr-contextSelector.jsx │ │ │ │ │ │ │ ├── depr-purposeSelector.jsx │ │ │ │ │ │ │ ├── depr-testnetSelector.jsx │ │ │ │ │ │ │ ├── depr-viewingScoreSelector.jsx │ │ │ │ │ │ │ ├── index.jsx │ │ │ │ │ │ │ └── seedUserSelector.jsx │ │ │ │ │ ├── depr-index.jsx │ │ │ │ │ ├── grapevineVisualization.jsx │ │ │ │ │ ├── queryReduxForLists.jsx │ │ │ │ │ └── showSingleEntityCompScoreCalculations │ │ │ │ │ │ ├── curatedListInstance │ │ │ │ │ │ ├── index.jsx │ │ │ │ │ │ ├── miniInstanceSummary.tsx │ │ │ │ │ │ ├── ratingsRows.tsx │ │ │ │ │ │ └── scoresSummary.tsx │ │ │ │ │ │ ├── index.jsx │ │ │ │ │ │ └── nostrProfile │ │ │ │ │ │ ├── index.jsx │ │ │ │ │ │ ├── miniProfile.tsx │ │ │ │ │ │ ├── ratingsRows.tsx │ │ │ │ │ │ ├── scoresSummary.tsx │ │ │ │ │ │ └── scoresSummations.tsx │ │ │ │ └── scoresSummaries.tsx │ │ │ ├── components │ │ │ │ ├── sourceToggleSwitch.tsx │ │ │ │ └── toggleSwitchSourceSmall.tsx │ │ │ ├── contentCuration │ │ │ │ ├── components │ │ │ │ │ ├── miniProfile.tsx │ │ │ │ │ ├── seedUserSelector.jsx │ │ │ │ │ └── topicSelectorPanel.tsx │ │ │ │ ├── const │ │ │ │ │ ├── nostrChannelTopicContentCreatorEndorsement.tsx │ │ │ │ │ ├── nostrChannelTopicsCuratorEndorsement.tsx │ │ │ │ │ ├── nostrChannelTopicsInstanceEndorsement.tsx │ │ │ │ │ ├── nostrChannelTopicsRelationshipCuratorEndorsement.tsx │ │ │ │ │ ├── nostrChannelTopicsRelationshipInstanceEndorsement.tsx │ │ │ │ │ └── nostrChannelTopicsTreeStructureCuratorEndorsement.tsx │ │ │ │ ├── contentCreators │ │ │ │ │ ├── creatorEndorsementsNostrLive │ │ │ │ │ │ ├── creatorEndorsementsNostrLive.tsx │ │ │ │ │ │ └── index.jsx │ │ │ │ │ ├── creatorEndorsementsSql │ │ │ │ │ │ ├── creatorEndorsementsSql.tsx │ │ │ │ │ │ └── index.jsx │ │ │ │ │ ├── creatorsNostrLive │ │ │ │ │ │ ├── creatorsNostrLive.tsx │ │ │ │ │ │ └── index.jsx │ │ │ │ │ ├── creatorsSql │ │ │ │ │ │ ├── creatorsSql.tsx │ │ │ │ │ │ └── index.jsx │ │ │ │ │ └── index.jsx │ │ │ │ ├── contentCurators │ │ │ │ │ ├── curatorEndorsementsNostrLive │ │ │ │ │ │ ├── curatorEndorsementsNostrLive.tsx │ │ │ │ │ │ └── index.jsx │ │ │ │ │ ├── curatorEndorsementsSql │ │ │ │ │ │ ├── curatorEndorsementsSql.tsx │ │ │ │ │ │ └── index.jsx │ │ │ │ │ ├── curatorsNostrLive │ │ │ │ │ │ ├── curatorsNostrLive.tsx │ │ │ │ │ │ └── index.jsx │ │ │ │ │ ├── curatorsSql │ │ │ │ │ │ ├── curatorsSql.tsx │ │ │ │ │ │ └── index.jsx │ │ │ │ │ └── index.jsx │ │ │ │ ├── contextualFeed │ │ │ │ │ ├── contextualFeed.tsx │ │ │ │ │ └── index.jsx │ │ │ │ ├── graphs │ │ │ │ │ ├── contextTree │ │ │ │ │ │ ├── contextTree.tsx │ │ │ │ │ │ └── index.jsx │ │ │ │ │ ├── grapevine │ │ │ │ │ │ ├── grapevine.tsx │ │ │ │ │ │ └── index.jsx │ │ │ │ │ └── index.jsx │ │ │ │ ├── index.jsx │ │ │ │ ├── relationships │ │ │ │ │ ├── createARelationship │ │ │ │ │ │ ├── createARelationship.tsx │ │ │ │ │ │ ├── index.jsx │ │ │ │ │ │ ├── techDetailsForNostrNerds1.tsx │ │ │ │ │ │ └── techDetailsForNostrNerds2.tsx │ │ │ │ │ ├── index.jsx │ │ │ │ │ ├── tableOfRelationshipsNostrLive │ │ │ │ │ │ ├── index.jsx │ │ │ │ │ │ └── tableOfRelatinshipsNostrLive.tsx │ │ │ │ │ └── tableOfRelationshipsRedux │ │ │ │ │ │ ├── index.jsx │ │ │ │ │ │ ├── miniProfile.tsx │ │ │ │ │ │ ├── relationshipRatingPanel.tsx │ │ │ │ │ │ ├── tableOfRelatinshipsRedux.tsx │ │ │ │ │ │ └── techDetailsForNostrNerds1.tsx │ │ │ │ ├── settings │ │ │ │ │ ├── index.jsx │ │ │ │ │ ├── redux │ │ │ │ │ │ └── index.jsx │ │ │ │ │ └── sql │ │ │ │ │ │ └── index.jsx │ │ │ │ ├── showCurations │ │ │ │ │ ├── components │ │ │ │ │ │ └── curationGraphic.tsx │ │ │ │ │ ├── curationOfRelationships │ │ │ │ │ │ ├── calculations │ │ │ │ │ │ │ ├── singleIterationCompositeUserScoreCalculations.tsx │ │ │ │ │ │ │ └── singleIterationInstanceScoreCalculations.tsx │ │ │ │ │ │ ├── controlPanels │ │ │ │ │ │ │ ├── rightPanel │ │ │ │ │ │ │ │ ├── controlPanel │ │ │ │ │ │ │ │ │ ├── basicTab │ │ │ │ │ │ │ │ │ │ └── index.jsx │ │ │ │ │ │ │ │ │ ├── defenseTab │ │ │ │ │ │ │ │ │ │ ├── index.jsx │ │ │ │ │ │ │ │ │ │ ├── mod1Tab │ │ │ │ │ │ │ │ │ │ │ └── index.jsx │ │ │ │ │ │ │ │ │ │ ├── mod2Tab │ │ │ │ │ │ │ │ │ │ │ └── index.jsx │ │ │ │ │ │ │ │ │ │ └── mod3Tab │ │ │ │ │ │ │ │ │ │ │ └── index.jsx │ │ │ │ │ │ │ │ │ ├── displayTab │ │ │ │ │ │ │ │ │ │ └── index.jsx │ │ │ │ │ │ │ │ │ ├── grapevineTweaksTab │ │ │ │ │ │ │ │ │ │ └── index.jsx │ │ │ │ │ │ │ │ │ ├── index.jsx │ │ │ │ │ │ │ │ │ ├── instancesTab │ │ │ │ │ │ │ │ │ │ └── index.jsx │ │ │ │ │ │ │ │ │ ├── overviewTab │ │ │ │ │ │ │ │ │ │ └── index.jsx │ │ │ │ │ │ │ │ │ └── usersTab │ │ │ │ │ │ │ │ │ │ └── index.jsx │ │ │ │ │ │ │ │ ├── index.jsx │ │ │ │ │ │ │ │ └── scores │ │ │ │ │ │ │ │ │ ├── index.jsx │ │ │ │ │ │ │ │ │ ├── instanceScores.jsx │ │ │ │ │ │ │ │ │ ├── itemList.tsx │ │ │ │ │ │ │ │ │ ├── nostrProfileScores.jsx │ │ │ │ │ │ │ │ │ └── reactDataTables.tsx │ │ │ │ │ │ │ └── topControlPanel │ │ │ │ │ │ │ │ ├── attenuationFactorSlider.tsx │ │ │ │ │ │ │ │ ├── index.jsx │ │ │ │ │ │ │ │ └── seedUserSelector.jsx │ │ │ │ │ │ ├── curationOfRelationships.tsx │ │ │ │ │ │ ├── curationOfRelationshipsRedux.tsx │ │ │ │ │ │ ├── curationOfRelationshipsX.tsx │ │ │ │ │ │ ├── header.jsx │ │ │ │ │ │ ├── index.jsx │ │ │ │ │ │ ├── showSingleEntityCompScoreCalculations │ │ │ │ │ │ │ ├── curatedListInstance │ │ │ │ │ │ │ │ ├── index.jsx │ │ │ │ │ │ │ │ ├── miniInstanceSummary.tsx │ │ │ │ │ │ │ │ ├── ratingsRows.tsx │ │ │ │ │ │ │ │ ├── scoresSummary.tsx │ │ │ │ │ │ │ │ └── scoresSummations.tsx │ │ │ │ │ │ │ ├── index.jsx │ │ │ │ │ │ │ └── nostrProfile │ │ │ │ │ │ │ │ ├── index.jsx │ │ │ │ │ │ │ │ ├── miniProfile.tsx │ │ │ │ │ │ │ │ ├── ratingsRows.tsx │ │ │ │ │ │ │ │ ├── scoresSummary.tsx │ │ │ │ │ │ │ │ └── scoresSummations.tsx │ │ │ │ │ │ └── techDetailsForNostrNerds1.tsx │ │ │ │ │ ├── curationOfTopics │ │ │ │ │ │ ├── calculations │ │ │ │ │ │ │ ├── singleIterationCompositeUserScoreCalculations.tsx │ │ │ │ │ │ │ └── singleIterationInstanceScoreCalculations.tsx │ │ │ │ │ │ ├── controlPanels │ │ │ │ │ │ │ ├── rightPanel │ │ │ │ │ │ │ │ ├── controlPanel │ │ │ │ │ │ │ │ │ ├── basicTab │ │ │ │ │ │ │ │ │ │ └── index.jsx │ │ │ │ │ │ │ │ │ ├── defenseTab │ │ │ │ │ │ │ │ │ │ ├── index.jsx │ │ │ │ │ │ │ │ │ │ ├── mod1Tab │ │ │ │ │ │ │ │ │ │ │ └── index.jsx │ │ │ │ │ │ │ │ │ │ ├── mod2Tab │ │ │ │ │ │ │ │ │ │ │ └── index.jsx │ │ │ │ │ │ │ │ │ │ └── mod3Tab │ │ │ │ │ │ │ │ │ │ │ └── index.jsx │ │ │ │ │ │ │ │ │ ├── displayTab │ │ │ │ │ │ │ │ │ │ └── index.jsx │ │ │ │ │ │ │ │ │ ├── grapevineTweaksTab │ │ │ │ │ │ │ │ │ │ └── index.jsx │ │ │ │ │ │ │ │ │ ├── index.jsx │ │ │ │ │ │ │ │ │ ├── instancesTab │ │ │ │ │ │ │ │ │ │ └── index.jsx │ │ │ │ │ │ │ │ │ ├── overviewTab │ │ │ │ │ │ │ │ │ │ └── index.jsx │ │ │ │ │ │ │ │ │ └── usersTab │ │ │ │ │ │ │ │ │ │ └── index.jsx │ │ │ │ │ │ │ │ ├── index.jsx │ │ │ │ │ │ │ │ └── scores │ │ │ │ │ │ │ │ │ ├── index.jsx │ │ │ │ │ │ │ │ │ ├── instanceScores.jsx │ │ │ │ │ │ │ │ │ ├── itemList.tsx │ │ │ │ │ │ │ │ │ ├── nostrProfileScores.jsx │ │ │ │ │ │ │ │ │ └── reactDataTables.tsx │ │ │ │ │ │ │ └── topControlPanel │ │ │ │ │ │ │ │ ├── attenuationFactorSlider.tsx │ │ │ │ │ │ │ │ ├── index.jsx │ │ │ │ │ │ │ │ └── seedUserSelector.jsx │ │ │ │ │ │ ├── curationOfTopics.tsx │ │ │ │ │ │ ├── curationOfTopicsRedux.tsx │ │ │ │ │ │ ├── grapevineVisualization.tsx │ │ │ │ │ │ ├── header.jsx │ │ │ │ │ │ ├── index.jsx │ │ │ │ │ │ ├── showSingleEntityCompScoreCalculations │ │ │ │ │ │ │ ├── curatedListInstance │ │ │ │ │ │ │ │ ├── index.jsx │ │ │ │ │ │ │ │ ├── miniInstanceSummary.tsx │ │ │ │ │ │ │ │ ├── ratingsRows.tsx │ │ │ │ │ │ │ │ ├── scoresSummary.tsx │ │ │ │ │ │ │ │ └── scoresSummations.tsx │ │ │ │ │ │ │ ├── index.jsx │ │ │ │ │ │ │ └── nostrProfile │ │ │ │ │ │ │ │ ├── index.jsx │ │ │ │ │ │ │ │ ├── miniProfile.tsx │ │ │ │ │ │ │ │ ├── ratingsRows.tsx │ │ │ │ │ │ │ │ ├── scoresSummary.tsx │ │ │ │ │ │ │ │ └── scoresSummations.tsx │ │ │ │ │ │ └── techDetailsForNostrNerds1.tsx │ │ │ │ │ ├── curationOfTopicsContent │ │ │ │ │ │ ├── calculations │ │ │ │ │ │ │ ├── singleIterationCompositeUserScoreCalculations.tsx │ │ │ │ │ │ │ └── singleIterationInstanceScoreCalculations.tsx │ │ │ │ │ │ ├── controlPanels │ │ │ │ │ │ │ ├── rightPanel │ │ │ │ │ │ │ │ ├── controlPanel │ │ │ │ │ │ │ │ │ ├── basicTab │ │ │ │ │ │ │ │ │ │ └── index.jsx │ │ │ │ │ │ │ │ │ ├── defenseTab │ │ │ │ │ │ │ │ │ │ ├── index.jsx │ │ │ │ │ │ │ │ │ │ ├── mod1Tab │ │ │ │ │ │ │ │ │ │ │ └── index.jsx │ │ │ │ │ │ │ │ │ │ ├── mod2Tab │ │ │ │ │ │ │ │ │ │ │ └── index.jsx │ │ │ │ │ │ │ │ │ │ └── mod3Tab │ │ │ │ │ │ │ │ │ │ │ └── index.jsx │ │ │ │ │ │ │ │ │ ├── displayTab │ │ │ │ │ │ │ │ │ │ └── index.jsx │ │ │ │ │ │ │ │ │ ├── grapevineTweaksTab │ │ │ │ │ │ │ │ │ │ └── index.jsx │ │ │ │ │ │ │ │ │ ├── index.jsx │ │ │ │ │ │ │ │ │ ├── instancesTab │ │ │ │ │ │ │ │ │ │ └── index.jsx │ │ │ │ │ │ │ │ │ ├── overviewTab │ │ │ │ │ │ │ │ │ │ └── index.jsx │ │ │ │ │ │ │ │ │ └── usersTab │ │ │ │ │ │ │ │ │ │ └── index.jsx │ │ │ │ │ │ │ │ ├── index.jsx │ │ │ │ │ │ │ │ └── scores │ │ │ │ │ │ │ │ │ ├── index.jsx │ │ │ │ │ │ │ │ │ ├── instanceScores.jsx │ │ │ │ │ │ │ │ │ ├── itemList.tsx │ │ │ │ │ │ │ │ │ ├── nostrProfileScores.jsx │ │ │ │ │ │ │ │ │ └── reactDataTables.tsx │ │ │ │ │ │ │ └── topControlPanel │ │ │ │ │ │ │ │ ├── attenuationFactorSlider.tsx │ │ │ │ │ │ │ │ ├── contentTopicSelector.jsx │ │ │ │ │ │ │ │ ├── index.jsx │ │ │ │ │ │ │ │ └── seedUserSelector.jsx │ │ │ │ │ │ ├── curationOfTopicsContent.tsx │ │ │ │ │ │ ├── curationOfTopicsContentRedux.tsx │ │ │ │ │ │ ├── header.jsx │ │ │ │ │ │ ├── index.jsx │ │ │ │ │ │ ├── showSingleEntityCompScoreCalculations │ │ │ │ │ │ │ ├── curatedListInstance │ │ │ │ │ │ │ │ ├── index.jsx │ │ │ │ │ │ │ │ ├── miniInstanceSummary.tsx │ │ │ │ │ │ │ │ ├── ratingsRows.tsx │ │ │ │ │ │ │ │ ├── scoresSummary.tsx │ │ │ │ │ │ │ │ └── scoresSummations.tsx │ │ │ │ │ │ │ ├── index.jsx │ │ │ │ │ │ │ └── nostrProfile │ │ │ │ │ │ │ │ ├── index.jsx │ │ │ │ │ │ │ │ ├── miniProfile.tsx │ │ │ │ │ │ │ │ ├── ratingsRows.tsx │ │ │ │ │ │ │ │ ├── scoresSummary.tsx │ │ │ │ │ │ │ │ └── scoresSummations.tsx │ │ │ │ │ │ └── techDetailsForNostrNerds1.tsx │ │ │ │ │ └── index.jsx │ │ │ │ ├── topic │ │ │ │ │ ├── index.jsx │ │ │ │ │ ├── techDetailsForNostrNerds1.tsx │ │ │ │ │ ├── techDetailsForNostrNerds2.tsx │ │ │ │ │ └── topicOverview.tsx │ │ │ │ └── topics │ │ │ │ │ ├── createATopic │ │ │ │ │ ├── createATopic.tsx │ │ │ │ │ ├── index.jsx │ │ │ │ │ └── techDetailsForNostrNerds.tsx │ │ │ │ │ ├── index.jsx │ │ │ │ │ ├── tableOfTopicsNostrLive │ │ │ │ │ ├── index.jsx │ │ │ │ │ ├── instance.jsx │ │ │ │ │ ├── tableOfTopicsNostrLive.jsx │ │ │ │ │ ├── techDetailsForNostrNerds1.tsx │ │ │ │ │ ├── techDetailsForNostrNerds2.tsx │ │ │ │ │ └── techDetailsForNostrNerds3.tsx │ │ │ │ │ └── tableOfTopicsRedux │ │ │ │ │ ├── index.jsx │ │ │ │ │ ├── tableOfTopicsRedux.tsx │ │ │ │ │ ├── techDetailsForNostrNerds1.tsx │ │ │ │ │ ├── techDetailsForNostrNerds2.tsx │ │ │ │ │ └── topicRatingPanel.tsx │ │ │ ├── createNewCuratedList │ │ │ │ ├── createNewList.tsx │ │ │ │ └── index.jsx │ │ │ ├── createNewCuratedListInstance │ │ │ │ ├── createNewInstance.tsx │ │ │ │ ├── index.jsx │ │ │ │ ├── list.jsx │ │ │ │ ├── queryDbForList.jsx │ │ │ │ ├── queryReduxForListFocus.jsx │ │ │ │ └── techDetailsForNostrNerds.tsx │ │ │ ├── deprecated-profile │ │ │ │ └── index.jsx │ │ │ ├── faq │ │ │ │ ├── faq.tsx │ │ │ │ └── index.tsx │ │ │ ├── index.jsx │ │ │ ├── landingPageRedirect.jsx │ │ │ ├── listsWithScores │ │ │ │ ├── controlPanels │ │ │ │ │ ├── rightPanel │ │ │ │ │ │ ├── controlPanel │ │ │ │ │ │ │ ├── basicTab │ │ │ │ │ │ │ │ └── index.jsx │ │ │ │ │ │ │ ├── defenseTab │ │ │ │ │ │ │ │ ├── index.jsx │ │ │ │ │ │ │ │ ├── mod1Tab │ │ │ │ │ │ │ │ │ └── index.jsx │ │ │ │ │ │ │ │ ├── mod2Tab │ │ │ │ │ │ │ │ │ └── index.jsx │ │ │ │ │ │ │ │ └── mod3Tab │ │ │ │ │ │ │ │ │ └── index.jsx │ │ │ │ │ │ │ ├── displayTab │ │ │ │ │ │ │ │ └── index.jsx │ │ │ │ │ │ │ ├── grapevineTweaksTab │ │ │ │ │ │ │ │ └── index.jsx │ │ │ │ │ │ │ ├── index.jsx │ │ │ │ │ │ │ ├── instancesTab │ │ │ │ │ │ │ │ └── index.jsx │ │ │ │ │ │ │ ├── overviewTab │ │ │ │ │ │ │ │ └── index.jsx │ │ │ │ │ │ │ └── usersTab │ │ │ │ │ │ │ │ └── index.jsx │ │ │ │ │ │ ├── header.jsx │ │ │ │ │ │ ├── index.jsx │ │ │ │ │ │ └── scores │ │ │ │ │ │ │ ├── index.jsx │ │ │ │ │ │ │ ├── instanceScores.jsx │ │ │ │ │ │ │ ├── nostrProfileScores.jsx │ │ │ │ │ │ │ └── reactDataTables.tsx │ │ │ │ │ └── topControlPanel │ │ │ │ │ │ ├── attenuationFactorSlider.tsx │ │ │ │ │ │ ├── depr-contextSelector.jsx │ │ │ │ │ │ ├── depr-purposeSelector.jsx │ │ │ │ │ │ ├── depr-testnetSelector.jsx │ │ │ │ │ │ ├── depr-viewingScoreSelector.jsx │ │ │ │ │ │ ├── index.jsx │ │ │ │ │ │ └── seedUserSelector.jsx │ │ │ │ ├── graphic.tsx │ │ │ │ ├── graphic2.tsx │ │ │ │ ├── index.jsx │ │ │ │ ├── list.jsx │ │ │ │ ├── listUI.tsx │ │ │ │ └── lists.jsx │ │ │ ├── listsWithScoresV4 │ │ │ │ ├── controlPanels │ │ │ │ │ ├── rightPanel │ │ │ │ │ │ ├── controlPanel │ │ │ │ │ │ │ ├── basicTab │ │ │ │ │ │ │ │ └── index.jsx │ │ │ │ │ │ │ ├── defenseTab │ │ │ │ │ │ │ │ ├── index.jsx │ │ │ │ │ │ │ │ ├── mod1Tab │ │ │ │ │ │ │ │ │ └── index.jsx │ │ │ │ │ │ │ │ ├── mod2Tab │ │ │ │ │ │ │ │ │ └── index.jsx │ │ │ │ │ │ │ │ └── mod3Tab │ │ │ │ │ │ │ │ │ └── index.jsx │ │ │ │ │ │ │ ├── displayTab │ │ │ │ │ │ │ │ └── index.jsx │ │ │ │ │ │ │ ├── grapevineTweaksTab │ │ │ │ │ │ │ │ └── index.jsx │ │ │ │ │ │ │ ├── index.jsx │ │ │ │ │ │ │ ├── instancesTab │ │ │ │ │ │ │ │ └── index.jsx │ │ │ │ │ │ │ ├── overviewTab │ │ │ │ │ │ │ │ └── index.jsx │ │ │ │ │ │ │ └── usersTab │ │ │ │ │ │ │ │ └── index.jsx │ │ │ │ │ │ ├── header.jsx │ │ │ │ │ │ ├── index.jsx │ │ │ │ │ │ └── scores │ │ │ │ │ │ │ ├── index.jsx │ │ │ │ │ │ │ ├── instanceScores.jsx │ │ │ │ │ │ │ ├── nostrProfileScores.jsx │ │ │ │ │ │ │ └── reactDataTables.tsx │ │ │ │ │ └── topControlPanel │ │ │ │ │ │ ├── attenuationFactorSlider.tsx │ │ │ │ │ │ ├── depr-contextSelector.jsx │ │ │ │ │ │ ├── depr-purposeSelector.jsx │ │ │ │ │ │ ├── depr-testnetSelector.jsx │ │ │ │ │ │ ├── depr-viewingScoreSelector.jsx │ │ │ │ │ │ ├── index.jsx │ │ │ │ │ │ └── seedUserSelector.jsx │ │ │ │ ├── graphic.tsx │ │ │ │ ├── graphic2.tsx │ │ │ │ ├── index.jsx │ │ │ │ ├── list.jsx │ │ │ │ ├── listUI.tsx │ │ │ │ ├── lists.jsx │ │ │ │ └── listsRedux.jsx │ │ │ ├── listsWithScoresV5 │ │ │ │ ├── controlPanels │ │ │ │ │ ├── rightPanel │ │ │ │ │ │ ├── controlPanel │ │ │ │ │ │ │ ├── basicTab │ │ │ │ │ │ │ │ └── index.jsx │ │ │ │ │ │ │ ├── defenseTab │ │ │ │ │ │ │ │ ├── index.jsx │ │ │ │ │ │ │ │ ├── mod1Tab │ │ │ │ │ │ │ │ │ └── index.jsx │ │ │ │ │ │ │ │ ├── mod2Tab │ │ │ │ │ │ │ │ │ └── index.jsx │ │ │ │ │ │ │ │ └── mod3Tab │ │ │ │ │ │ │ │ │ └── index.jsx │ │ │ │ │ │ │ ├── displayTab │ │ │ │ │ │ │ │ └── index.jsx │ │ │ │ │ │ │ ├── grapevineTweaksTab │ │ │ │ │ │ │ │ └── index.jsx │ │ │ │ │ │ │ ├── index.jsx │ │ │ │ │ │ │ ├── instancesTab │ │ │ │ │ │ │ │ └── index.jsx │ │ │ │ │ │ │ ├── overviewTab │ │ │ │ │ │ │ │ └── index.jsx │ │ │ │ │ │ │ └── usersTab │ │ │ │ │ │ │ │ └── index.jsx │ │ │ │ │ │ ├── header.jsx │ │ │ │ │ │ ├── index.jsx │ │ │ │ │ │ └── scores │ │ │ │ │ │ │ ├── index.jsx │ │ │ │ │ │ │ ├── instanceScores.jsx │ │ │ │ │ │ │ ├── nostrProfileScores.jsx │ │ │ │ │ │ │ └── reactDataTables.tsx │ │ │ │ │ └── topControlPanel │ │ │ │ │ │ ├── attenuationFactorSlider.tsx │ │ │ │ │ │ ├── depr-contextSelector.jsx │ │ │ │ │ │ ├── depr-purposeSelector.jsx │ │ │ │ │ │ ├── depr-testnetSelector.jsx │ │ │ │ │ │ ├── depr-viewingScoreSelector.jsx │ │ │ │ │ │ ├── index.jsx │ │ │ │ │ │ └── seedUserSelector.jsx │ │ │ │ ├── graphic.tsx │ │ │ │ ├── graphic2.tsx │ │ │ │ ├── index.jsx │ │ │ │ ├── list.jsx │ │ │ │ ├── listUI.tsx │ │ │ │ ├── lists.jsx │ │ │ │ └── listsRedux.jsx │ │ │ ├── listsWithScoresV6 │ │ │ │ ├── controlPanels │ │ │ │ │ ├── rightPanel │ │ │ │ │ │ ├── controlPanel │ │ │ │ │ │ │ ├── basicTab │ │ │ │ │ │ │ │ └── index.jsx │ │ │ │ │ │ │ ├── defenseTab │ │ │ │ │ │ │ │ ├── index.jsx │ │ │ │ │ │ │ │ ├── mod1Tab │ │ │ │ │ │ │ │ │ └── index.jsx │ │ │ │ │ │ │ │ ├── mod2Tab │ │ │ │ │ │ │ │ │ └── index.jsx │ │ │ │ │ │ │ │ └── mod3Tab │ │ │ │ │ │ │ │ │ └── index.jsx │ │ │ │ │ │ │ ├── displayTab │ │ │ │ │ │ │ │ └── index.jsx │ │ │ │ │ │ │ ├── grapevineTweaksTab │ │ │ │ │ │ │ │ └── index.jsx │ │ │ │ │ │ │ ├── index.jsx │ │ │ │ │ │ │ ├── instancesTab │ │ │ │ │ │ │ │ └── index.jsx │ │ │ │ │ │ │ ├── overviewTab │ │ │ │ │ │ │ │ └── index.jsx │ │ │ │ │ │ │ └── usersTab │ │ │ │ │ │ │ │ └── index.jsx │ │ │ │ │ │ ├── header.jsx │ │ │ │ │ │ ├── index.jsx │ │ │ │ │ │ └── scores │ │ │ │ │ │ │ ├── index.jsx │ │ │ │ │ │ │ ├── instanceScores.jsx │ │ │ │ │ │ │ ├── nostrProfileScores.jsx │ │ │ │ │ │ │ └── reactDataTables.tsx │ │ │ │ │ └── topControlPanel │ │ │ │ │ │ ├── attenuationFactorSlider.tsx │ │ │ │ │ │ ├── depr-contextSelector.jsx │ │ │ │ │ │ ├── depr-purposeSelector.jsx │ │ │ │ │ │ ├── depr-testnetSelector.jsx │ │ │ │ │ │ ├── depr-viewingScoreSelector.jsx │ │ │ │ │ │ ├── index.jsx │ │ │ │ │ │ └── seedUserSelector.jsx │ │ │ │ ├── graphic.tsx │ │ │ │ ├── graphic2.tsx │ │ │ │ ├── index.jsx │ │ │ │ ├── list.jsx │ │ │ │ ├── listUI.tsx │ │ │ │ ├── lists.jsx │ │ │ │ └── listsRedux.jsx │ │ │ ├── listsWithScoresV7 │ │ │ │ ├── controlPanels │ │ │ │ │ ├── rightPanel │ │ │ │ │ │ ├── controlPanel │ │ │ │ │ │ │ ├── basicTab │ │ │ │ │ │ │ │ └── index.jsx │ │ │ │ │ │ │ ├── defenseTab │ │ │ │ │ │ │ │ ├── index.jsx │ │ │ │ │ │ │ │ ├── mod1Tab │ │ │ │ │ │ │ │ │ └── index.jsx │ │ │ │ │ │ │ │ ├── mod2Tab │ │ │ │ │ │ │ │ │ └── index.jsx │ │ │ │ │ │ │ │ └── mod3Tab │ │ │ │ │ │ │ │ │ └── index.jsx │ │ │ │ │ │ │ ├── displayTab │ │ │ │ │ │ │ │ └── index.jsx │ │ │ │ │ │ │ ├── grapevineTweaksTab │ │ │ │ │ │ │ │ └── index.jsx │ │ │ │ │ │ │ ├── index.jsx │ │ │ │ │ │ │ ├── instancesTab │ │ │ │ │ │ │ │ └── index.jsx │ │ │ │ │ │ │ ├── overviewTab │ │ │ │ │ │ │ │ └── index.jsx │ │ │ │ │ │ │ └── usersTab │ │ │ │ │ │ │ │ └── index.jsx │ │ │ │ │ │ ├── header.jsx │ │ │ │ │ │ ├── index.jsx │ │ │ │ │ │ └── scores │ │ │ │ │ │ │ ├── index.jsx │ │ │ │ │ │ │ ├── instanceScores.jsx │ │ │ │ │ │ │ ├── nostrProfileScores.jsx │ │ │ │ │ │ │ └── reactDataTables.tsx │ │ │ │ │ └── topControlPanel │ │ │ │ │ │ ├── attenuationFactorSlider.tsx │ │ │ │ │ │ ├── depr-contextSelector.jsx │ │ │ │ │ │ ├── depr-purposeSelector.jsx │ │ │ │ │ │ ├── depr-testnetSelector.jsx │ │ │ │ │ │ ├── depr-viewingScoreSelector.jsx │ │ │ │ │ │ ├── index.jsx │ │ │ │ │ │ └── seedUserSelector.jsx │ │ │ │ ├── depr-.jsx │ │ │ │ ├── graphic.tsx │ │ │ │ ├── graphic2.tsx │ │ │ │ ├── index.jsx │ │ │ │ ├── list.jsx │ │ │ │ ├── listPre.jsx │ │ │ │ ├── listSelectButton.jsx │ │ │ │ ├── listUI.tsx │ │ │ │ ├── lists.jsx │ │ │ │ └── listsRedux.jsx │ │ │ ├── listsWithScoresV8 │ │ │ │ ├── controlPanels │ │ │ │ │ ├── rightPanel │ │ │ │ │ │ ├── controlPanel │ │ │ │ │ │ │ ├── basicTab │ │ │ │ │ │ │ │ └── index.jsx │ │ │ │ │ │ │ ├── defenseTab │ │ │ │ │ │ │ │ ├── index.jsx │ │ │ │ │ │ │ │ ├── mod1Tab │ │ │ │ │ │ │ │ │ └── index.jsx │ │ │ │ │ │ │ │ ├── mod2Tab │ │ │ │ │ │ │ │ │ └── index.jsx │ │ │ │ │ │ │ │ └── mod3Tab │ │ │ │ │ │ │ │ │ └── index.jsx │ │ │ │ │ │ │ ├── displayTab │ │ │ │ │ │ │ │ └── index.jsx │ │ │ │ │ │ │ ├── grapevineTweaksTab │ │ │ │ │ │ │ │ └── index.jsx │ │ │ │ │ │ │ ├── index.jsx │ │ │ │ │ │ │ ├── instancesTab │ │ │ │ │ │ │ │ └── index.jsx │ │ │ │ │ │ │ ├── overviewTab │ │ │ │ │ │ │ │ └── index.jsx │ │ │ │ │ │ │ └── usersTab │ │ │ │ │ │ │ │ └── index.jsx │ │ │ │ │ │ ├── depr-miniProfileSpinner.jsx │ │ │ │ │ │ ├── header.jsx │ │ │ │ │ │ ├── headerRedo.jsx │ │ │ │ │ │ ├── index.jsx │ │ │ │ │ │ ├── miniProfile.tsx │ │ │ │ │ │ ├── scores │ │ │ │ │ │ │ ├── deprecated-itemList.tsx │ │ │ │ │ │ │ ├── index.jsx │ │ │ │ │ │ │ ├── instanceScores.jsx │ │ │ │ │ │ │ ├── nostrProfileScores.jsx │ │ │ │ │ │ │ ├── reactDataTables.tsx │ │ │ │ │ │ │ └── scoresRedo.jsx │ │ │ │ │ │ ├── techDetailsForNostrNerds1.tsx │ │ │ │ │ │ └── techDetailsForNostrNerds2.tsx │ │ │ │ │ └── topControlPanel │ │ │ │ │ │ ├── attenuationFactorSlider.tsx │ │ │ │ │ │ ├── index.jsx │ │ │ │ │ │ ├── seedUserSelector.jsx │ │ │ │ │ │ └── seedUserSelectorRedo.jsx │ │ │ │ ├── graphic.tsx │ │ │ │ ├── graphic2.tsx │ │ │ │ ├── graphic2Redo.tsx │ │ │ │ ├── graphicRedo.tsx │ │ │ │ ├── index.jsx │ │ │ │ ├── list.jsx │ │ │ │ ├── listPre.jsx │ │ │ │ ├── listPreRedo.jsx │ │ │ │ ├── listRedo.jsx │ │ │ │ ├── listSelectButton.jsx │ │ │ │ ├── listSelectButtonRedo.jsx │ │ │ │ ├── listUI.tsx │ │ │ │ ├── listUIRedo.tsx │ │ │ │ ├── lists.jsx │ │ │ │ ├── listsAndControlPanel.tsx │ │ │ │ ├── listsRedux.jsx │ │ │ │ ├── spinner.tsx │ │ │ │ └── techDetailsForNostrNerds │ │ │ │ │ ├── techDetailsForNostrNerds1.tsx │ │ │ │ │ ├── techDetailsForNostrNerds2.tsx │ │ │ │ │ ├── techDetailsForNostrNerds3.tsx │ │ │ │ │ └── techDetailsForNostrNerds4.tsx │ │ │ ├── multiListSummariesOfItemScores │ │ │ │ ├── index.jsx │ │ │ │ ├── miniGraph │ │ │ │ │ ├── calculations │ │ │ │ │ │ ├── singleIterationCompositeUserScoreCalculations.tsx │ │ │ │ │ │ └── singleIterationInstanceScoreCalculations.tsx │ │ │ │ │ ├── const.tsx │ │ │ │ │ ├── controlPanels │ │ │ │ │ │ ├── rightPanel │ │ │ │ │ │ │ ├── controlPanel │ │ │ │ │ │ │ │ ├── basicTab │ │ │ │ │ │ │ │ │ └── index.jsx │ │ │ │ │ │ │ │ ├── defenseTab │ │ │ │ │ │ │ │ │ ├── index.jsx │ │ │ │ │ │ │ │ │ ├── mod1Tab │ │ │ │ │ │ │ │ │ │ └── index.jsx │ │ │ │ │ │ │ │ │ ├── mod2Tab │ │ │ │ │ │ │ │ │ │ └── index.jsx │ │ │ │ │ │ │ │ │ └── mod3Tab │ │ │ │ │ │ │ │ │ │ └── index.jsx │ │ │ │ │ │ │ │ ├── displayTab │ │ │ │ │ │ │ │ │ └── index.jsx │ │ │ │ │ │ │ │ ├── grapevineTweaksTab │ │ │ │ │ │ │ │ │ └── index.jsx │ │ │ │ │ │ │ │ ├── index.jsx │ │ │ │ │ │ │ │ ├── instancesTab │ │ │ │ │ │ │ │ │ └── index.jsx │ │ │ │ │ │ │ │ ├── overviewTab │ │ │ │ │ │ │ │ │ └── index.jsx │ │ │ │ │ │ │ │ └── usersTab │ │ │ │ │ │ │ │ │ └── index.jsx │ │ │ │ │ │ │ ├── header.jsx │ │ │ │ │ │ │ ├── index.jsx │ │ │ │ │ │ │ └── scores │ │ │ │ │ │ │ │ ├── index.jsx │ │ │ │ │ │ │ │ ├── instanceScores.jsx │ │ │ │ │ │ │ │ ├── nostrProfileScores.jsx │ │ │ │ │ │ │ │ └── reactDataTables.tsx │ │ │ │ │ │ └── topControlPanel │ │ │ │ │ │ │ ├── attenuationFactorSlider.tsx │ │ │ │ │ │ │ ├── depr-contextSelector.jsx │ │ │ │ │ │ │ ├── depr-purposeSelector.jsx │ │ │ │ │ │ │ ├── depr-testnetSelector.jsx │ │ │ │ │ │ │ ├── depr-viewingScoreSelector.jsx │ │ │ │ │ │ │ ├── index.jsx │ │ │ │ │ │ │ └── seedUserSelector.jsx │ │ │ │ │ ├── depr-index.jsx │ │ │ │ │ ├── grapevineVisualization.jsx │ │ │ │ │ ├── queryReduxForLists.jsx │ │ │ │ │ └── showSingleEntityCompScoreCalculations │ │ │ │ │ │ ├── curatedListInstance │ │ │ │ │ │ ├── index.jsx │ │ │ │ │ │ ├── miniInstanceSummary.tsx │ │ │ │ │ │ ├── ratingsRows.tsx │ │ │ │ │ │ └── scoresSummary.tsx │ │ │ │ │ │ ├── index.jsx │ │ │ │ │ │ └── nostrProfile │ │ │ │ │ │ ├── index.jsx │ │ │ │ │ │ ├── miniProfile.tsx │ │ │ │ │ │ ├── ratingsRows.tsx │ │ │ │ │ │ ├── scoresSummary.tsx │ │ │ │ │ │ └── scoresSummations.tsx │ │ │ │ └── scoresSummaries.tsx │ │ │ ├── settings │ │ │ │ ├── generalSettings.tsx │ │ │ │ └── index.jsx │ │ │ ├── viewIndividualCuratedList │ │ │ │ ├── curatorEndorsementsNostrLive │ │ │ │ │ ├── allEndorsements.jsx │ │ │ │ │ ├── endorsement.jsx │ │ │ │ │ ├── index.jsx │ │ │ │ │ ├── list.jsx │ │ │ │ │ ├── miniProfile.tsx │ │ │ │ │ ├── queryDbForList.jsx │ │ │ │ │ ├── queryReduxForListFocus.jsx │ │ │ │ │ ├── techDetailsForNostrNerds1.tsx │ │ │ │ │ ├── techDetailsForNostrNerds2.tsx │ │ │ │ │ └── techDetailsForNostrNerds3.tsx │ │ │ │ ├── curatorEndorsementsSql │ │ │ │ │ ├── allEndorsements.jsx │ │ │ │ │ ├── endorsement.jsx │ │ │ │ │ ├── index.jsx │ │ │ │ │ ├── list.jsx │ │ │ │ │ ├── miniProfile.tsx │ │ │ │ │ ├── queryDb.jsx │ │ │ │ │ ├── queryReduxForListFocus.jsx │ │ │ │ │ ├── techDetailsForNostrNerds1.tsx │ │ │ │ │ ├── techDetailsForNostrNerds2.tsx │ │ │ │ │ └── techDetailsForNostrNerds3.tsx │ │ │ │ ├── curators │ │ │ │ │ └── index.jsx │ │ │ │ ├── graph │ │ │ │ │ ├── calculations │ │ │ │ │ │ ├── singleIterationCompositeUserScoreCalculations.tsx │ │ │ │ │ │ └── singleIterationInstanceScoreCalculations.tsx │ │ │ │ │ ├── components │ │ │ │ │ │ ├── itemList.tsx │ │ │ │ │ │ └── techDetailsForNostrNerds1.tsx │ │ │ │ │ ├── const.tsx │ │ │ │ │ ├── controlPanels │ │ │ │ │ │ ├── rightPanel │ │ │ │ │ │ │ ├── controlPanel │ │ │ │ │ │ │ │ ├── basicTab │ │ │ │ │ │ │ │ │ └── index.jsx │ │ │ │ │ │ │ │ ├── defenseTab │ │ │ │ │ │ │ │ │ ├── index.jsx │ │ │ │ │ │ │ │ │ ├── mod1Tab │ │ │ │ │ │ │ │ │ │ └── index.jsx │ │ │ │ │ │ │ │ │ ├── mod2Tab │ │ │ │ │ │ │ │ │ │ └── index.jsx │ │ │ │ │ │ │ │ │ └── mod3Tab │ │ │ │ │ │ │ │ │ │ └── index.jsx │ │ │ │ │ │ │ │ ├── displayTab │ │ │ │ │ │ │ │ │ └── index.jsx │ │ │ │ │ │ │ │ ├── grapevineTweaksTab │ │ │ │ │ │ │ │ │ └── index.jsx │ │ │ │ │ │ │ │ ├── index.jsx │ │ │ │ │ │ │ │ ├── instancesTab │ │ │ │ │ │ │ │ │ └── index.jsx │ │ │ │ │ │ │ │ ├── overviewTab │ │ │ │ │ │ │ │ │ └── index.jsx │ │ │ │ │ │ │ │ └── usersTab │ │ │ │ │ │ │ │ │ └── index.jsx │ │ │ │ │ │ │ ├── index.jsx │ │ │ │ │ │ │ └── scores │ │ │ │ │ │ │ │ ├── deprecated-itemList.tsx │ │ │ │ │ │ │ │ ├── index.jsx │ │ │ │ │ │ │ │ ├── instanceScores.jsx │ │ │ │ │ │ │ │ ├── nostrProfileScores.jsx │ │ │ │ │ │ │ │ └── reactDataTables.tsx │ │ │ │ │ │ └── topControlPanel │ │ │ │ │ │ │ ├── attenuationFactorSlider.tsx │ │ │ │ │ │ │ ├── depr-contextSelector.jsx │ │ │ │ │ │ │ ├── depr-purposeSelector.jsx │ │ │ │ │ │ │ ├── depr-testnetSelector.jsx │ │ │ │ │ │ │ ├── depr-viewingScoreSelector.jsx │ │ │ │ │ │ │ ├── index.jsx │ │ │ │ │ │ │ └── seedUserSelector.jsx │ │ │ │ │ ├── grapevineVisualization.jsx │ │ │ │ │ ├── header.jsx │ │ │ │ │ ├── index.jsx │ │ │ │ │ ├── queryReduxForListFocus.jsx │ │ │ │ │ └── showSingleEntityCompScoreCalculations │ │ │ │ │ │ ├── curatedListInstance │ │ │ │ │ │ ├── index.jsx │ │ │ │ │ │ ├── miniInstanceSummary.tsx │ │ │ │ │ │ ├── ratingsRows.tsx │ │ │ │ │ │ ├── scoresSummary.tsx │ │ │ │ │ │ └── scoresSummations.tsx │ │ │ │ │ │ ├── index.jsx │ │ │ │ │ │ └── nostrProfile │ │ │ │ │ │ ├── index.jsx │ │ │ │ │ │ ├── miniProfile.tsx │ │ │ │ │ │ ├── ratingsRows.tsx │ │ │ │ │ │ ├── scoresSummary.tsx │ │ │ │ │ │ └── scoresSummations.tsx │ │ │ │ ├── instances │ │ │ │ │ └── index.jsx │ │ │ │ ├── overview │ │ │ │ │ ├── index.jsx │ │ │ │ │ ├── overview.jsx │ │ │ │ │ ├── queryDbForList.jsx │ │ │ │ │ ├── queryReduxForListFocus.jsx │ │ │ │ │ ├── techDetailsForNostrNerds1.tsx │ │ │ │ │ └── techDetailsForNostrNerds2.tsx │ │ │ │ ├── selectCurators │ │ │ │ │ ├── changeProfileFocus.tsx │ │ │ │ │ ├── createNewRating.tsx │ │ │ │ │ ├── index.jsx │ │ │ │ │ ├── queryDbForList.jsx │ │ │ │ │ ├── queryReduxForListFocus.jsx │ │ │ │ │ ├── rateProfile.jsx │ │ │ │ │ └── selectCurators.jsx │ │ │ │ ├── tableOfRatingsNostrLive │ │ │ │ │ ├── allRatings.jsx │ │ │ │ │ ├── index.jsx │ │ │ │ │ ├── list.jsx │ │ │ │ │ ├── miniProfile.tsx │ │ │ │ │ ├── queryDbForList.jsx │ │ │ │ │ ├── queryReduxForListFocus.jsx │ │ │ │ │ ├── rating.jsx │ │ │ │ │ ├── techDetailsForNostrNerds1.tsx │ │ │ │ │ ├── techDetailsForNostrNerds2.tsx │ │ │ │ │ └── techDetailsForNostrNerds3.tsx │ │ │ │ ├── tableOfRatingsSql │ │ │ │ │ ├── allRatings.jsx │ │ │ │ │ ├── index.jsx │ │ │ │ │ ├── list.jsx │ │ │ │ │ ├── queryDb.jsx │ │ │ │ │ ├── queryReduxForListFocus.jsx │ │ │ │ │ ├── rating.jsx │ │ │ │ │ ├── techDetailsForNostrNerds1.tsx │ │ │ │ │ ├── techDetailsForNostrNerds2.tsx │ │ │ │ │ └── techDetailsForNostrNerds3.tsx │ │ │ │ ├── techOverview │ │ │ │ │ ├── index.jsx │ │ │ │ │ ├── overview.jsx │ │ │ │ │ ├── queryDbForList.jsx │ │ │ │ │ └── queryReduxForListFocus.jsx │ │ │ │ ├── viewInstancesNostrLive │ │ │ │ │ ├── allInstancesNostrLive.jsx │ │ │ │ │ ├── index.jsx │ │ │ │ │ ├── instance.jsx │ │ │ │ │ ├── list.jsx │ │ │ │ │ ├── queryDbForList.jsx │ │ │ │ │ ├── queryReduxForListFocus.jsx │ │ │ │ │ ├── techDetailsForNostrNerds1.tsx │ │ │ │ │ ├── techDetailsForNostrNerds2.tsx │ │ │ │ │ └── techDetailsForNostrNerds3.tsx │ │ │ │ └── viewInstancesSql │ │ │ │ │ ├── allInstancesSql.jsx │ │ │ │ │ ├── index.jsx │ │ │ │ │ ├── instance.jsx │ │ │ │ │ ├── list.jsx │ │ │ │ │ ├── queryDb.jsx │ │ │ │ │ ├── queryReduxForListFocus.jsx │ │ │ │ │ ├── techDetailsForNostrNerds1.tsx │ │ │ │ │ ├── techDetailsForNostrNerds2.tsx │ │ │ │ │ └── techDetailsForNostrNerds3.tsx │ │ │ ├── viewInstance │ │ │ │ ├── leaveRating │ │ │ │ │ ├── composeRatingAndEvent.tsx │ │ │ │ │ ├── createNewRating.tsx │ │ │ │ │ ├── endorseAsRelaysPickerHunterButton.tsx │ │ │ │ │ ├── index.jsx │ │ │ │ │ ├── instance.tsx │ │ │ │ │ ├── queryDbForInstance.jsx │ │ │ │ │ ├── queryReduxForInstance.tsx │ │ │ │ │ └── techDetailsForNostrNerds.tsx │ │ │ │ ├── overview │ │ │ │ │ ├── createNewRating.tsx │ │ │ │ │ ├── depr-techDetailsForNostrNerds3.tsx │ │ │ │ │ ├── index.jsx │ │ │ │ │ ├── instance.tsx │ │ │ │ │ ├── miniProfile.tsx │ │ │ │ │ ├── queryDbForInstance.jsx │ │ │ │ │ ├── queryReduxForInstance.tsx │ │ │ │ │ ├── techDetailsForNostrNerds.tsx │ │ │ │ │ ├── techDetailsForNostrNerds1.tsx │ │ │ │ │ └── techDetailsForNostrNerds2.tsx │ │ │ │ ├── techOverview │ │ │ │ │ ├── index.jsx │ │ │ │ │ ├── instance.tsx │ │ │ │ │ ├── queryDbForInstance.jsx │ │ │ │ │ └── queryReduxForInstance.tsx │ │ │ │ └── viewRatings │ │ │ │ │ ├── index.jsx │ │ │ │ │ ├── instance.tsx │ │ │ │ │ ├── queryDbForInstance.jsx │ │ │ │ │ └── queryReduxForInstance.tsx │ │ │ └── viewListOfCuratedLists │ │ │ │ ├── allLists │ │ │ │ ├── allLists.jsx │ │ │ │ ├── index.jsx │ │ │ │ ├── list.jsx │ │ │ │ ├── techDetailsForNostrNerds1.tsx │ │ │ │ ├── techDetailsForNostrNerds2.tsx │ │ │ │ ├── techDetailsForNostrNerds3.tsx │ │ │ │ └── techDetailsForNostrNerds4.tsx │ │ │ │ ├── allListsFromNostrLive │ │ │ │ ├── allLists.jsx │ │ │ │ ├── index.jsx │ │ │ │ ├── list.jsx │ │ │ │ ├── techDetailsForNostrNerds.tsx │ │ │ │ ├── techDetailsForNostrNerds1.tsx │ │ │ │ └── techDetailsForNostrNerds2.tsx │ │ │ │ ├── allListsFromSql │ │ │ │ ├── allLists.jsx │ │ │ │ ├── index.jsx │ │ │ │ ├── list.jsx │ │ │ │ ├── techDetailsForNostrNerds1.tsx │ │ │ │ └── techDetailsForNostrNerds2.tsx │ │ │ │ ├── index.jsx │ │ │ │ └── myLists │ │ │ │ ├── depr-sourceToggleSwitch.tsx │ │ │ │ ├── index.jsx │ │ │ │ ├── list.jsx │ │ │ │ └── myLists.jsx │ │ ├── eBooks │ │ │ ├── eBook │ │ │ │ ├── bookIndex │ │ │ │ │ ├── eBookIndex.tsx │ │ │ │ │ └── index.jsx │ │ │ │ ├── chapterHeader.tsx │ │ │ │ ├── content │ │ │ │ │ ├── book2 │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── threadedTapestry │ │ │ │ │ │ ├── __blank │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ ├── notes.tsx │ │ │ │ │ │ ├── singleChapter.tsx │ │ │ │ │ │ ├── singlePage.tsx │ │ │ │ │ │ ├── singleParagraph.tsx │ │ │ │ │ │ └── singleSentence.tsx │ │ │ │ │ │ ├── chunk │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ ├── notes.tsx │ │ │ │ │ │ ├── singleChapter.tsx │ │ │ │ │ │ ├── singlePage.tsx │ │ │ │ │ │ ├── singleParagraph.tsx │ │ │ │ │ │ └── singleSentence.tsx │ │ │ │ │ │ ├── classCreation │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ ├── notes.tsx │ │ │ │ │ │ ├── singleChapter.tsx │ │ │ │ │ │ ├── singlePage.tsx │ │ │ │ │ │ ├── singleParagraph.tsx │ │ │ │ │ │ └── singleSentence.tsx │ │ │ │ │ │ ├── classCriteria │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ ├── singleChapter.tsx │ │ │ │ │ │ ├── singlePage.tsx │ │ │ │ │ │ ├── singleParagraph.tsx │ │ │ │ │ │ └── singleSentence.tsx │ │ │ │ │ │ ├── classInstance │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ ├── singleChapter.tsx │ │ │ │ │ │ ├── singlePage.tsx │ │ │ │ │ │ ├── singleParagraph.tsx │ │ │ │ │ │ └── singleSentence.tsx │ │ │ │ │ │ ├── classNode │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ ├── singleChapter.tsx │ │ │ │ │ │ ├── singlePage.tsx │ │ │ │ │ │ ├── singleParagraph.tsx │ │ │ │ │ │ └── singleSentence.tsx │ │ │ │ │ │ ├── classThread │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ ├── singleChapter.tsx │ │ │ │ │ │ ├── singlePage.tsx │ │ │ │ │ │ ├── singleParagraph.tsx │ │ │ │ │ │ └── singleSentence.tsx │ │ │ │ │ │ ├── concept │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ ├── singleChapter.tsx │ │ │ │ │ │ ├── singlePage.tsx │ │ │ │ │ │ ├── singleParagraph.tsx │ │ │ │ │ │ └── singleSentence.tsx │ │ │ │ │ │ ├── conceptGraph │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ ├── singleChapter.tsx │ │ │ │ │ │ ├── singlePage.tsx │ │ │ │ │ │ ├── singleParagraph.tsx │ │ │ │ │ │ └── singleSentence.tsx │ │ │ │ │ │ ├── dataDuality │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ ├── notes.tsx │ │ │ │ │ │ ├── singleChapter.tsx │ │ │ │ │ │ ├── singlePage.tsx │ │ │ │ │ │ ├── singleParagraph.tsx │ │ │ │ │ │ └── singleSentence.tsx │ │ │ │ │ │ ├── decentralizedDistributedSystem │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ ├── notes.tsx │ │ │ │ │ │ ├── singleChapter.tsx │ │ │ │ │ │ ├── singlePage.tsx │ │ │ │ │ │ ├── singleParagraph.tsx │ │ │ │ │ │ └── singleSentence.tsx │ │ │ │ │ │ ├── grapevine │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ ├── singleChapter.tsx │ │ │ │ │ │ ├── singlePage.tsx │ │ │ │ │ │ ├── singleParagraph.tsx │ │ │ │ │ │ └── singleSentence.tsx │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ ├── knowledgeCuration │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ ├── singleChapter.tsx │ │ │ │ │ │ ├── singlePage.tsx │ │ │ │ │ │ ├── singleParagraph.tsx │ │ │ │ │ │ └── singleSentence.tsx │ │ │ │ │ │ ├── knowledgeRepresentation │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ ├── singleChapter.tsx │ │ │ │ │ │ ├── singlePage.tsx │ │ │ │ │ │ ├── singleParagraph.tsx │ │ │ │ │ │ └── singleSentence.tsx │ │ │ │ │ │ ├── lockInMinimization │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ ├── singleChapter.tsx │ │ │ │ │ │ ├── singlePage.tsx │ │ │ │ │ │ ├── singleParagraph.tsx │ │ │ │ │ │ └── singleSentence.tsx │ │ │ │ │ │ ├── looseConsensus │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ ├── singleChapter.tsx │ │ │ │ │ │ ├── singlePage.tsx │ │ │ │ │ │ ├── singleParagraph.tsx │ │ │ │ │ │ └── singleSentence.tsx │ │ │ │ │ │ ├── neuronalTapestry │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ ├── singleChapter.tsx │ │ │ │ │ │ ├── singlePage.tsx │ │ │ │ │ │ ├── singleParagraph.tsx │ │ │ │ │ │ └── singleSentence.tsx │ │ │ │ │ │ ├── primaryChallenge │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ ├── notes.tsx │ │ │ │ │ │ ├── singleChapter.tsx │ │ │ │ │ │ ├── singlePage.tsx │ │ │ │ │ │ ├── singleParagraph.tsx │ │ │ │ │ │ └── singleSentence.tsx │ │ │ │ │ │ ├── setNode │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ ├── singleChapter.tsx │ │ │ │ │ │ ├── singlePage.tsx │ │ │ │ │ │ ├── singleParagraph.tsx │ │ │ │ │ │ └── singleSentence.tsx │ │ │ │ │ │ ├── specificInstance │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ ├── notes.tsx │ │ │ │ │ │ ├── singleChapter.tsx │ │ │ │ │ │ ├── singlePage.tsx │ │ │ │ │ │ ├── singleParagraph.tsx │ │ │ │ │ │ └── singleSentence.tsx │ │ │ │ │ │ ├── thread │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ ├── singleChapter.tsx │ │ │ │ │ │ ├── singlePage.tsx │ │ │ │ │ │ ├── singleParagraph.tsx │ │ │ │ │ │ └── singleSentence.tsx │ │ │ │ │ │ ├── threadedTapestry │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ ├── notes.tsx │ │ │ │ │ │ ├── singleChapter.tsx │ │ │ │ │ │ ├── singlePage.tsx │ │ │ │ │ │ ├── singleParagraph.tsx │ │ │ │ │ │ └── singleSentence.tsx │ │ │ │ │ │ ├── threadedTapestryImplementation │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ ├── notes.tsx │ │ │ │ │ │ ├── singleChapter.tsx │ │ │ │ │ │ ├── singlePage.tsx │ │ │ │ │ │ ├── singleParagraph.tsx │ │ │ │ │ │ └── singleSentence.tsx │ │ │ │ │ │ ├── topologicalDataCompletion │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ ├── notes.tsx │ │ │ │ │ │ ├── singleChapter.tsx │ │ │ │ │ │ ├── singlePage.tsx │ │ │ │ │ │ ├── singleParagraph.tsx │ │ │ │ │ │ └── singleSentence.tsx │ │ │ │ │ │ ├── topologicalDataEncoding │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ ├── notes.tsx │ │ │ │ │ │ ├── singleChapter.tsx │ │ │ │ │ │ ├── singlePage.tsx │ │ │ │ │ │ ├── singleParagraph.tsx │ │ │ │ │ │ └── singleSentence.tsx │ │ │ │ │ │ ├── toxicThread │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ ├── notes.tsx │ │ │ │ │ │ ├── singleChapter.tsx │ │ │ │ │ │ ├── singlePage.tsx │ │ │ │ │ │ ├── singleParagraph.tsx │ │ │ │ │ │ └── singleSentence.tsx │ │ │ │ │ │ └── tribalTapestry │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ ├── singleChapter.tsx │ │ │ │ │ │ ├── singlePage.tsx │ │ │ │ │ │ ├── singleParagraph.tsx │ │ │ │ │ │ └── singleSentence.tsx │ │ │ │ ├── eBook.tsx │ │ │ │ ├── eBookHeader.tsx │ │ │ │ ├── index.jsx │ │ │ │ ├── previousTopicButton.tsx │ │ │ │ └── sectionSelector.tsx │ │ │ ├── index.jsx │ │ │ ├── settings │ │ │ │ └── index.jsx │ │ │ └── tableOfBooks.tsx │ │ ├── grapevine │ │ │ ├── attestationTemplates │ │ │ │ ├── endorseMyRelayList.tsx │ │ │ │ ├── rateRelayManagerAbility.tsx │ │ │ │ └── trustRatingTemplate.tsx │ │ │ ├── depr-components │ │ │ │ └── showSingleUserTrustScoreCalculations │ │ │ │ │ ├── index.jsx │ │ │ │ │ ├── miniProfile.tsx │ │ │ │ │ ├── ratingsRows.tsx │ │ │ │ │ ├── scoresSummary.tsx │ │ │ │ │ └── scoresSummations.tsx │ │ │ ├── graphViews │ │ │ │ ├── extendedFollowing │ │ │ │ │ └── index.jsx │ │ │ │ └── following │ │ │ │ │ ├── deprecated-following-old.tsx │ │ │ │ │ ├── deprecated-following.tsx │ │ │ │ │ ├── deprecated-graphic.tsx │ │ │ │ │ ├── deprecated-graphic2.tsx │ │ │ │ │ ├── following.tsx │ │ │ │ │ └── index.jsx │ │ │ ├── index.jsx │ │ │ ├── listCuration │ │ │ │ ├── index.jsx │ │ │ │ └── relaysCuration │ │ │ │ │ ├── calculationAndVisualization.tsx │ │ │ │ │ ├── calculations │ │ │ │ │ └── scoresCalculationsWithTimer.tsx │ │ │ │ │ ├── controlPanels │ │ │ │ │ ├── rightPanel │ │ │ │ │ │ ├── controlPanel │ │ │ │ │ │ │ ├── basicTab │ │ │ │ │ │ │ │ └── index.jsx │ │ │ │ │ │ │ ├── defenseTab │ │ │ │ │ │ │ │ ├── index.jsx │ │ │ │ │ │ │ │ ├── mod1Tab │ │ │ │ │ │ │ │ │ └── index.jsx │ │ │ │ │ │ │ │ ├── mod2Tab │ │ │ │ │ │ │ │ │ └── index.jsx │ │ │ │ │ │ │ │ └── mod3Tab │ │ │ │ │ │ │ │ │ └── index.jsx │ │ │ │ │ │ │ ├── displayTab │ │ │ │ │ │ │ │ └── index.jsx │ │ │ │ │ │ │ ├── index.jsx │ │ │ │ │ │ │ └── usersTab │ │ │ │ │ │ │ │ └── index.jsx │ │ │ │ │ │ ├── index.jsx │ │ │ │ │ │ └── scores │ │ │ │ │ │ │ └── index.jsx │ │ │ │ │ └── topControlPanel │ │ │ │ │ │ ├── attenuationFactorSlider.tsx │ │ │ │ │ │ ├── contextSelector.jsx │ │ │ │ │ │ ├── index.jsx │ │ │ │ │ │ ├── purposeSelector.jsx │ │ │ │ │ │ ├── seedUserSelector.jsx │ │ │ │ │ │ ├── testnetSelector.jsx │ │ │ │ │ │ └── viewingScoreSelector.jsx │ │ │ │ │ ├── downloadRatings.tsx │ │ │ │ │ ├── grapevineTopControlPanel.tsx │ │ │ │ │ ├── graphView.tsx │ │ │ │ │ ├── index.jsx │ │ │ │ │ └── showSingleEntityCompScoreCalculations │ │ │ │ │ ├── index.jsx │ │ │ │ │ ├── miniProfile.tsx │ │ │ │ │ ├── ratingsRows.tsx │ │ │ │ │ ├── scoresSummary.tsx │ │ │ │ │ └── scoresSummations.tsx │ │ │ ├── profile │ │ │ │ └── index.jsx │ │ │ ├── settings │ │ │ │ └── index.jsx │ │ │ └── visualization │ │ │ │ ├── calculations │ │ │ │ ├── depr-scoresCalculationsWithTimer.tsx │ │ │ │ └── singleIterationCompositeUserScoreCalculations.tsx │ │ │ │ ├── const.tsx │ │ │ │ ├── controlPanels │ │ │ │ ├── rightPanel │ │ │ │ │ ├── controlPanel │ │ │ │ │ │ ├── basicTab │ │ │ │ │ │ │ └── index.jsx │ │ │ │ │ │ ├── defenseTab │ │ │ │ │ │ │ ├── index.jsx │ │ │ │ │ │ │ ├── mod1Tab │ │ │ │ │ │ │ │ └── index.jsx │ │ │ │ │ │ │ ├── mod2Tab │ │ │ │ │ │ │ │ └── index.jsx │ │ │ │ │ │ │ └── mod3Tab │ │ │ │ │ │ │ │ └── index.jsx │ │ │ │ │ │ ├── displayTab │ │ │ │ │ │ │ └── index.jsx │ │ │ │ │ │ ├── index.jsx │ │ │ │ │ │ └── usersTab │ │ │ │ │ │ │ └── index.jsx │ │ │ │ │ ├── index.jsx │ │ │ │ │ └── scores │ │ │ │ │ │ └── index.jsx │ │ │ │ └── topControlPanel │ │ │ │ │ ├── attenuationFactorSlider.tsx │ │ │ │ │ ├── contextSelector.jsx │ │ │ │ │ ├── index.jsx │ │ │ │ │ ├── purposeSelector.jsx │ │ │ │ │ ├── seedUserSelector.jsx │ │ │ │ │ ├── testnetSelector.jsx │ │ │ │ │ └── viewingScoreSelector.jsx │ │ │ │ ├── grapevineVisualizationMainPage.tsx │ │ │ │ ├── index.tsx │ │ │ │ ├── reduxInterfaceComponent.tsx │ │ │ │ └── showSingleEntityCompScoreCalculations │ │ │ │ ├── index.jsx │ │ │ │ ├── miniProfile.tsx │ │ │ │ ├── ratingsRows.tsx │ │ │ │ ├── scoresSummary.tsx │ │ │ │ └── scoresSummations.tsx │ │ ├── nip51 │ │ │ ├── components │ │ │ │ ├── channelButton.tsx │ │ │ │ ├── kind10000Lists.jsx │ │ │ │ ├── kind10001Lists.jsx │ │ │ │ ├── kind30000Lists.jsx │ │ │ │ ├── kind30001Lists.jsx │ │ │ │ ├── nip51ListListener.tsx │ │ │ │ ├── singleListOverview.tsx │ │ │ │ ├── techDetailsForNostrNerds.tsx │ │ │ │ ├── topPanel │ │ │ │ │ ├── index.tsx │ │ │ │ │ ├── nip51Listener.jsx │ │ │ │ │ ├── numberInDatabaseTopPanel.tsx │ │ │ │ │ └── questionMarkTopPanel.tsx │ │ │ │ ├── topPanelButtons │ │ │ │ │ ├── index.tsx │ │ │ │ │ ├── nip51Listener.jsx │ │ │ │ │ ├── numberInDatabaseTopPanel.tsx │ │ │ │ │ └── questionMarkTopPanel.tsx │ │ │ │ └── topPanelDisplay │ │ │ │ │ ├── index.tsx │ │ │ │ │ ├── nip51Listener.jsx │ │ │ │ │ ├── numberInDatabaseTopPanel.tsx │ │ │ │ │ └── questionMarkTopPanel.tsx │ │ │ ├── kind10000Lists │ │ │ │ ├── index.jsx │ │ │ │ └── kind10000Lists.tsx │ │ │ ├── kind10001Lists │ │ │ │ ├── index.jsx │ │ │ │ └── kind10001Lists.tsx │ │ │ ├── kind30000Lists │ │ │ │ ├── index.jsx │ │ │ │ └── kind30000Lists.tsx │ │ │ ├── kind30001Lists │ │ │ │ ├── index.jsx │ │ │ │ └── kind30001Lists.tsx │ │ │ ├── landingPage │ │ │ │ ├── downloadLists.jsx │ │ │ │ ├── index.jsx │ │ │ │ ├── listsLandingPage.tsx │ │ │ │ └── nip51ListenerByType.jsx │ │ │ ├── list │ │ │ │ ├── addItemButton.tsx │ │ │ │ ├── addItemToThisList.tsx │ │ │ │ ├── deleteButton.tsx │ │ │ │ ├── editButtonToggle.tsx │ │ │ │ ├── index.jsx │ │ │ │ ├── list.tsx │ │ │ │ ├── miniProfile.tsx │ │ │ │ ├── populateListItemArrays.tsx │ │ │ │ ├── processImportsToggle.tsx │ │ │ │ ├── publishUpdatedListPanel.tsx │ │ │ │ ├── showListsPanel.tsx │ │ │ │ ├── showNotesPanel.tsx │ │ │ │ ├── showPeoplePanel.tsx │ │ │ │ ├── showTagsPanel.tsx │ │ │ │ ├── toggleRawListEvent.tsx │ │ │ │ └── toggleShowItems.tsx │ │ │ ├── listAuthors │ │ │ │ ├── index.jsx │ │ │ │ ├── listAuthors.tsx │ │ │ │ └── miniProfile.tsx │ │ │ ├── loadLists │ │ │ │ ├── allLists.jsx │ │ │ │ ├── categorizedEvents.jsx │ │ │ │ ├── categorizedPeople.jsx │ │ │ │ ├── index.jsx │ │ │ │ ├── kind10000Lists.jsx │ │ │ │ ├── kind10001Lists.jsx │ │ │ │ ├── kind30000Lists.jsx │ │ │ │ ├── kind30001Lists.jsx │ │ │ │ ├── list.jsx │ │ │ │ └── lists.tsx │ │ │ ├── makeNewList │ │ │ │ ├── components │ │ │ │ │ ├── addItemButton.tsx │ │ │ │ │ ├── anotherListIdentificationMethodSelector.tsx │ │ │ │ │ ├── existingListTypeSelector.tsx │ │ │ │ │ ├── importListSpecifyListname.tsx │ │ │ │ │ ├── importListTextareas.tsx │ │ │ │ │ ├── itemTypeSelector.tsx │ │ │ │ │ ├── lockListNameButton.tsx │ │ │ │ │ ├── makeNewListTitle.tsx │ │ │ │ │ ├── newItemIdentifier.tsx │ │ │ │ │ ├── newItemPlainText.tsx │ │ │ │ │ ├── newListEventContainer.tsx │ │ │ │ │ ├── newListName.tsx │ │ │ │ │ ├── newListTypeSelector.tsx │ │ │ │ │ ├── publicOrPrivateSelector.tsx │ │ │ │ │ ├── publishButton.tsx │ │ │ │ │ ├── startOverButton.tsx │ │ │ │ │ └── whoManagesSelector.tsx │ │ │ │ ├── functions │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── processNewItemText │ │ │ │ │ │ └── depr-index.tsx │ │ │ │ ├── index.jsx │ │ │ │ ├── pageLayout.tsx │ │ │ │ ├── panels │ │ │ │ │ ├── addItemPanel.tsx │ │ │ │ │ ├── buttonsPanel.tsx │ │ │ │ │ ├── depr-existingListsPreviewContainer.tsx │ │ │ │ │ ├── initListPanel.tsx │ │ │ │ │ └── showItemsPanel.tsx │ │ │ │ ├── showSingleItem │ │ │ │ │ ├── index.tsx │ │ │ │ │ ├── miniProfile.tsx │ │ │ │ │ └── post.tsx │ │ │ │ └── state.tsx │ │ │ ├── nip32Explorer │ │ │ │ ├── index.jsx │ │ │ │ └── nip32Explorer.tsx │ │ │ ├── settings │ │ │ │ ├── downloadLists.jsx │ │ │ │ ├── index.jsx │ │ │ │ └── listsSettings.tsx │ │ │ ├── tableOfLists │ │ │ │ ├── channelCell.tsx │ │ │ │ ├── clickableStatusBarComponent.tsx │ │ │ │ ├── countStatusBarComponent.tsx │ │ │ │ ├── createdAtCell.tsx │ │ │ │ ├── index.jsx │ │ │ │ ├── listNameCell.tsx │ │ │ │ ├── miniProfileCell.tsx │ │ │ │ ├── nip51Listener.jsx │ │ │ │ ├── processEventIntoTableEntry.tsx │ │ │ │ ├── tableOfLists.tsx │ │ │ │ └── tooltips │ │ │ │ │ └── customAgGridTooltip.tsx │ │ │ └── viewLists │ │ │ │ ├── index.jsx │ │ │ │ ├── showKindButton.tsx │ │ │ │ ├── showTagsButton.tsx │ │ │ │ └── viewLists.tsx │ │ ├── nostr │ │ │ ├── backup-directMessageConversation │ │ │ │ ├── index.tsx │ │ │ │ ├── message.tsx │ │ │ │ ├── messages.tsx │ │ │ │ └── sendDirectMessage.tsx │ │ │ ├── components │ │ │ │ ├── followButton.tsx │ │ │ │ ├── followCounts.tsx │ │ │ │ ├── miniProfile.tsx │ │ │ │ ├── post │ │ │ │ │ ├── actionButtons.tsx │ │ │ │ │ ├── backup-invoiceQrCode.tsx │ │ │ │ │ ├── depr-invoiceQrCode_bolt11.tsx │ │ │ │ │ ├── imageEmbed.tsx │ │ │ │ │ ├── moreInfoTooltip.tsx │ │ │ │ │ ├── post.tsx │ │ │ │ │ ├── reactionButton.tsx │ │ │ │ │ ├── replyToPost.tsx │ │ │ │ │ ├── repostButton.tsx │ │ │ │ │ ├── techDetailsForNostrNerds.tsx │ │ │ │ │ ├── techDetailsForNostrNerdsReplyBox.tsx │ │ │ │ │ ├── youTubeEmbed.tsx │ │ │ │ │ ├── zapButton.tsx │ │ │ │ │ └── zapPanel │ │ │ │ │ │ └── zapPanelWithQrCode.tsx │ │ │ │ ├── postAsAgGridCell │ │ │ │ │ ├── actionButtons.tsx │ │ │ │ │ ├── backup-invoiceQrCode.tsx │ │ │ │ │ ├── depr-invoiceQrCode_bolt11.tsx │ │ │ │ │ ├── imageEmbed.tsx │ │ │ │ │ ├── moreInfoTooltip.tsx │ │ │ │ │ ├── post.tsx │ │ │ │ │ ├── reactionButton.tsx │ │ │ │ │ ├── replyToPost.tsx │ │ │ │ │ ├── repostButton.tsx │ │ │ │ │ ├── techDetailsForNostrNerds.tsx │ │ │ │ │ ├── techDetailsForNostrNerdsReplyBox.tsx │ │ │ │ │ ├── youTubeEmbed.tsx │ │ │ │ │ ├── zapButton.tsx │ │ │ │ │ └── zapPanel │ │ │ │ │ │ └── zapPanelWithQrCode.tsx │ │ │ │ └── profile.tsx │ │ │ ├── createPost │ │ │ │ ├── backup createPost.tsx │ │ │ │ ├── createPost.tsx │ │ │ │ ├── index.tsx │ │ │ │ └── techDetailsForNostrNerds.tsx │ │ │ ├── directMessageConversation │ │ │ │ ├── dmConvoHeader.tsx │ │ │ │ ├── index.tsx │ │ │ │ ├── message.tsx │ │ │ │ ├── messages.tsx │ │ │ │ ├── miniProfile.tsx │ │ │ │ ├── sendDirectMessage.tsx │ │ │ │ └── techDetailsForNostrNerds.tsx │ │ │ ├── directMessages-backup │ │ │ │ ├── index.jsx │ │ │ │ ├── messages-backup.tsx │ │ │ │ ├── messages.tsx │ │ │ │ ├── messagesReceived.tsx │ │ │ │ └── messagesSent.tsx │ │ │ ├── directMessages │ │ │ │ ├── dmProfileButton.tsx │ │ │ │ ├── index.jsx │ │ │ │ ├── message.tsx │ │ │ │ ├── messages.tsx │ │ │ │ ├── messagesPanel-backup.tsx │ │ │ │ ├── messagesPanel.tsx │ │ │ │ └── miniProfile.tsx │ │ │ ├── editMyProfile │ │ │ │ ├── editMyProfile.tsx │ │ │ │ ├── index.jsx │ │ │ │ └── toggleMultiClientAccess.tsx │ │ │ ├── followingList │ │ │ │ ├── followingList.tsx │ │ │ │ ├── index.tsx │ │ │ │ ├── miniProfile.tsx │ │ │ │ └── temp-followingList.tsx │ │ │ ├── index.jsx │ │ │ ├── landingPage │ │ │ │ └── index.tsx │ │ │ ├── listeners │ │ │ │ ├── channelsListener │ │ │ │ │ ├── channelsListenerToggle.tsx │ │ │ │ │ ├── channelsMasterFilter.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── curatedListsListeners │ │ │ │ │ ├── curatedListInstances.tsx │ │ │ │ │ ├── curatedListItemRatings.tsx │ │ │ │ │ ├── curatedLists.tsx │ │ │ │ │ ├── curatedListsListenersToggle.tsx │ │ │ │ │ ├── curatorEndorsements.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── curatedListsListenersRedo │ │ │ │ │ ├── curatedListsListenersToggle.tsx │ │ │ │ │ ├── curatedListsMasterFilter.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── dmListener │ │ │ │ │ ├── index.tsx │ │ │ │ │ ├── messagesReceived.tsx │ │ │ │ │ └── messagesSent.tsx │ │ │ │ ├── grapevineListener │ │ │ │ │ ├── endorseAsRelaysPickerHunterListener.tsx │ │ │ │ │ ├── endorseAsRelaysPickerListener.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── myProfileListener │ │ │ │ │ ├── index.tsx │ │ │ │ │ ├── myFollowingAndRelaysListsReceived.tsx │ │ │ │ │ └── myProfileReceived.tsx │ │ │ │ ├── nip51Listener │ │ │ │ │ └── nip51.tsx │ │ │ │ ├── notesListener-maybeDeprecated │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── notesReceived.tsx │ │ │ │ └── profilesListener │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── kind3ProfilesReceived.tsx │ │ │ ├── mainFeed │ │ │ │ ├── components │ │ │ │ │ ├── sourceToggleSwitch.tsx │ │ │ │ │ └── toggleSwitchSourceSmall.tsx │ │ │ │ ├── fetchPostsInBackground.jsx │ │ │ │ ├── globalFeed-backup.jsx │ │ │ │ ├── globalFeed.jsx │ │ │ │ ├── globalFeedDisplayFromRedux.jsx │ │ │ │ ├── globalFeedFetchPostsInBackground.jsx │ │ │ │ ├── globalFeedShowLiveEvents.jsx │ │ │ │ ├── globalFeed_pre.jsx │ │ │ │ ├── index.tsx │ │ │ │ ├── mainFeedTypeSelector.tsx │ │ │ │ ├── mainFeedTypeSelectorMinusLists.tsx │ │ │ │ ├── posts.jsx │ │ │ │ └── welcomeBox.tsx │ │ │ ├── myFollowingList │ │ │ │ ├── index.tsx │ │ │ │ ├── miniProfile.tsx │ │ │ │ └── myFollowingList.tsx │ │ │ ├── profile │ │ │ │ ├── composeRatingAndEvent.tsx │ │ │ │ ├── curatedChannelsBox │ │ │ │ │ ├── createNewRating1.tsx │ │ │ │ │ ├── createNewRating2.tsx │ │ │ │ │ ├── createNewRating2TopicSelector.tsx │ │ │ │ │ ├── createNewRating3.tsx │ │ │ │ │ ├── createNewRating3TopicSelector.tsx │ │ │ │ │ ├── deprecated-createNewRating2.tsx │ │ │ │ │ ├── deprecated-createNewRating3.tsx │ │ │ │ │ ├── deprecated-topicSelector.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── curatedListBox │ │ │ │ │ ├── createNewRating.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── depr-followButton.tsx │ │ │ │ ├── index.tsx │ │ │ │ ├── lowerPanelContent.jsx │ │ │ │ ├── mainPageListeners │ │ │ │ │ ├── endorsementListener.tsx │ │ │ │ │ ├── selectListener.tsx │ │ │ │ │ └── thisUserProfileListener.tsx │ │ │ │ ├── mainProfile.tsx │ │ │ │ ├── panels │ │ │ │ │ ├── about.tsx │ │ │ │ │ ├── fetchPostsInBackground.jsx │ │ │ │ │ ├── grapevine.tsx │ │ │ │ │ ├── lists │ │ │ │ │ │ ├── allLists.jsx │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ ├── kind10000Lists.jsx │ │ │ │ │ │ ├── kind10001Lists.jsx │ │ │ │ │ │ ├── kind30000Lists.jsx │ │ │ │ │ │ ├── kind30001Lists.jsx │ │ │ │ │ │ ├── list.jsx │ │ │ │ │ │ ├── miniProfile.tsx │ │ │ │ │ │ ├── techDetailsForNostrNerds.tsx │ │ │ │ │ │ └── techDetailsForNostrNerds1.tsx │ │ │ │ │ ├── posts-backup.jsx │ │ │ │ │ ├── posts.jsx │ │ │ │ │ ├── ratings.tsx │ │ │ │ │ └── scores.tsx │ │ │ │ ├── profile.tsx │ │ │ │ ├── relaysGrapevine │ │ │ │ │ ├── endorseAsRelaysPickerButton.tsx │ │ │ │ │ ├── endorseAsRelaysPickerHunterButton.tsx │ │ │ │ │ ├── followRelaysButton.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── techDetailsForNostrNerds1.tsx │ │ │ │ ├── techDetailsForNostrNerds2.tsx │ │ │ │ ├── userGrapevinePanel.tsx │ │ │ │ └── userPanel.jsx │ │ │ ├── searchForUser │ │ │ │ ├── index-backup.js │ │ │ │ ├── index.tsx │ │ │ │ └── search.tsx │ │ │ ├── settings │ │ │ │ ├── channelManagement │ │ │ │ │ ├── channelManagement.tsx │ │ │ │ │ ├── index.jsx │ │ │ │ │ ├── list │ │ │ │ │ │ ├── addItemButton.tsx │ │ │ │ │ │ ├── addItemToThisList_depr.tsx │ │ │ │ │ │ ├── deleteButton.tsx │ │ │ │ │ │ ├── editButtonToggle.tsx │ │ │ │ │ │ ├── index.jsx │ │ │ │ │ │ ├── list.tsx │ │ │ │ │ │ ├── miniProfile.tsx │ │ │ │ │ │ ├── populateListItemArrays.tsx │ │ │ │ │ │ ├── processImportsToggle_depr.tsx │ │ │ │ │ │ ├── publishUpdatedListPanel_depr.tsx │ │ │ │ │ │ ├── showListsPanel.tsx │ │ │ │ │ │ ├── showNotesPanel.tsx │ │ │ │ │ │ ├── showPeoplePanel.tsx │ │ │ │ │ │ ├── showTagsPanel.tsx │ │ │ │ │ │ ├── toggleRawListEvent.tsx │ │ │ │ │ │ └── toggleShowItems.tsx │ │ │ │ │ └── populateChannelListener.tsx │ │ │ │ ├── deprecated-miniProfile.tsx │ │ │ │ ├── extendedFollowing │ │ │ │ │ ├── extendedFollowingCalculation.tsx │ │ │ │ │ └── index.jsx │ │ │ │ ├── grapevine │ │ │ │ │ ├── grToggleSwitch.tsx │ │ │ │ │ ├── grapevineIsActive.tsx │ │ │ │ │ ├── grapevineIsInactive.tsx │ │ │ │ │ ├── grapevineSettings.tsx │ │ │ │ │ ├── index.jsx │ │ │ │ │ ├── resetDefaultsButton.tsx │ │ │ │ │ └── topPanel.tsx │ │ │ │ ├── index.jsx │ │ │ │ ├── mainFeed │ │ │ │ │ ├── index.jsx │ │ │ │ │ ├── mainFeedSettings.tsx │ │ │ │ │ └── sinceWhenSelectors.tsx │ │ │ │ ├── nostrapp │ │ │ │ │ ├── index.jsx │ │ │ │ │ ├── nostrapp.tsx │ │ │ │ │ ├── techDetailsForNostrNerds1.tsx │ │ │ │ │ └── techDetailsForNostrNerds2.tsx │ │ │ │ ├── profileManagement │ │ │ │ │ ├── index.jsx │ │ │ │ │ └── profileManagement.tsx │ │ │ │ ├── profiles │ │ │ │ │ ├── allCurrentProfiles.tsx │ │ │ │ │ ├── enterExternalKeys.tsx │ │ │ │ │ ├── generateNewKeys.tsx │ │ │ │ │ └── index.jsx │ │ │ │ ├── relays │ │ │ │ │ ├── addNewRelay.tsx │ │ │ │ │ ├── endorseAsRelayPickerHunterList.tsx │ │ │ │ │ ├── endorseAsRelayPickerList.tsx │ │ │ │ │ ├── endorseRelayMessage.tsx │ │ │ │ │ ├── followingForRelays.tsx │ │ │ │ │ ├── index.jsx │ │ │ │ │ ├── miniProfile.tsx │ │ │ │ │ ├── relays.tsx │ │ │ │ │ └── relaysAutoUpdateControls.tsx │ │ │ │ ├── relaysV2 │ │ │ │ │ ├── addNewRelay.tsx │ │ │ │ │ ├── curatedRelaysList.tsx │ │ │ │ │ ├── endorseRelayMessage.tsx │ │ │ │ │ ├── index.jsx │ │ │ │ │ ├── miniProfile.tsx │ │ │ │ │ ├── relays.tsx │ │ │ │ │ ├── relaysAutoUpdateControls.tsx │ │ │ │ │ └── singleUserRelaysList.tsx │ │ │ │ └── sql │ │ │ │ │ └── index.jsx │ │ │ ├── thread │ │ │ │ ├── backup-thread.jsx │ │ │ │ ├── index.tsx │ │ │ │ ├── techDetailsForNostrNerds.jsx │ │ │ │ └── thread.jsx │ │ │ ├── userRelaysList │ │ │ │ ├── index.tsx │ │ │ │ ├── relaysList copy.tsx │ │ │ │ └── relaysList.tsx │ │ │ └── viewMyProfile │ │ │ │ ├── index.jsx │ │ │ │ ├── techDetailsForNostrNerds1.tsx │ │ │ │ ├── techDetailsForNostrNerds2.tsx │ │ │ │ ├── techDetailsForNostrNerds3.tsx │ │ │ │ ├── techDetailsForNostrNerds4.tsx │ │ │ │ ├── toggleMultiClientAccess.tsx │ │ │ │ └── viewMyProfile.tsx │ │ └── prettyGood │ │ │ ├── about │ │ │ ├── index.jsx │ │ │ └── threadedTapestry │ │ │ │ └── index.jsx │ │ │ ├── apps.tsx │ │ │ ├── faq │ │ │ └── index.jsx │ │ │ ├── index.tsx │ │ │ ├── profile │ │ │ └── index.jsx │ │ │ └── settings │ │ │ ├── allAppSettingsNav.tsx │ │ │ ├── generalSettings.tsx │ │ │ ├── helloWorld │ │ │ ├── agGridTable │ │ │ │ ├── agGridtable.tsx │ │ │ │ └── index.tsx │ │ │ ├── dataTables │ │ │ │ ├── dataTables-backup.tsx │ │ │ │ ├── dataTables.tsx │ │ │ │ └── index.tsx │ │ │ ├── deprecated-ipfsCore │ │ │ │ └── index.tsx │ │ │ ├── exploreNotesByKind.tsx │ │ │ │ ├── exploreNostrNotesByKind.tsx │ │ │ │ └── index.jsx │ │ │ ├── getRequests │ │ │ │ ├── getRequests.tsx │ │ │ │ └── index.jsx │ │ │ ├── index.jsx │ │ │ ├── reactDataTableComponent │ │ │ │ ├── index.tsx │ │ │ │ ├── instanceScores.jsx │ │ │ │ └── reactDataTableComponent.tsx │ │ │ ├── sandbox1 │ │ │ │ ├── index.tsx │ │ │ │ └── sandbox.tsx │ │ │ ├── sandbox2 │ │ │ │ ├── index.tsx │ │ │ │ └── sandbox.tsx │ │ │ ├── sandbox3 │ │ │ │ ├── index.tsx │ │ │ │ └── sandbox.tsx │ │ │ ├── tooltipDemo.tsx │ │ │ ├── visjs │ │ │ │ ├── graphic.tsx │ │ │ │ └── index.tsx │ │ │ └── visjsMultiGraph │ │ │ │ ├── attenuationFactorSlider.tsx │ │ │ │ ├── graphic-backup.tsx │ │ │ │ ├── graphic.tsx │ │ │ │ └── index.tsx │ │ │ ├── index.tsx │ │ │ ├── networksAndDatabases │ │ │ ├── ipfsCore │ │ │ │ └── index.tsx │ │ │ ├── ipfsHeavyweight.tsx │ │ │ ├── ipfsLightweight.tsx │ │ │ ├── nostr.tsx │ │ │ └── sql │ │ │ │ ├── index.tsx │ │ │ │ └── sql.tsx │ │ │ └── redux.jsx │ ├── assets │ │ ├── Grapevine_Logo03.png │ │ ├── blankAvatar.png │ │ ├── minus.png │ │ ├── nostr_logo_prpl.svg │ │ └── plus.png │ ├── components │ │ ├── backButton.tsx │ │ ├── grToggleSwitchT2-deprecated.tsx │ │ ├── grToggleSwitchT2.tsx │ │ ├── toggleSwitch.tsx │ │ ├── toggleSwitchSmall.tsx │ │ └── toggleSwitchT2.tsx │ ├── const │ │ ├── contextDAG.tsx │ │ ├── index.tsx │ │ └── tooltipContent.tsx │ ├── css │ │ ├── app.css │ │ ├── conceptGraph │ │ │ └── index.css │ │ ├── contentCuration │ │ │ └── index.css │ │ ├── curatedLists │ │ │ ├── acceptVsReject.css │ │ │ ├── endorsements.css │ │ │ └── index.css │ │ ├── customDataTables.css │ │ ├── dataTables │ │ │ ├── bulma.css │ │ │ └── dataTables.css │ │ ├── depr-devMode2Off.css │ │ ├── depr-devMode2On.css │ │ ├── eBooks │ │ │ └── index.css │ │ ├── grapevine │ │ │ └── index.css │ │ ├── images │ │ │ ├── favicon.ico │ │ │ ├── sort_asc.png │ │ │ ├── sort_asc_disabled.png │ │ │ ├── sort_both.png │ │ │ ├── sort_desc.png │ │ │ └── sort_desc_disabled.png │ │ ├── mastheads.css │ │ ├── navbars.css │ │ ├── nostr │ │ │ ├── app-depr.css │ │ │ ├── directMessaging.css │ │ │ ├── editMyProfile.css │ │ │ ├── feed.css │ │ │ ├── follows.css │ │ │ ├── grapevine.css │ │ │ ├── grapevineSettings.css │ │ │ ├── grapevineToggleSwitch.css │ │ │ ├── grapevineToggleSwitchSmall.css │ │ │ ├── index.css │ │ │ ├── mastheads-depr.css │ │ │ ├── misc.css │ │ │ ├── myProfile.css │ │ │ ├── navbars-depr.css │ │ │ ├── newPost.css │ │ │ ├── nfgGraphic.css │ │ │ ├── profileKeys.css │ │ │ ├── settings.css │ │ │ ├── toggleSwitch1--depr.css │ │ │ ├── userList.css │ │ │ ├── userProfile.css │ │ │ └── youTubeEmbed.css │ │ ├── prettyGood │ │ │ └── index.css │ │ └── rangeSliders.css │ ├── errorBoundary.tsx │ ├── index.ejs │ ├── index.tsx │ ├── landingPage │ │ └── index.tsx │ ├── lib │ │ ├── conceptGraph │ │ │ └── index.tsx │ │ ├── curatedLists │ │ │ ├── extractNodesAndEdgesRedo.tsx │ │ │ ├── index.tsx │ │ │ ├── singleIterationCompositeUserScoreCalculations.tsx │ │ │ ├── singleIterationCompositeUserScoreCalculationsRedo.tsx │ │ │ ├── singleIterationInstanceScoreCalculations.tsx │ │ │ └── singleIterationInstanceScoreCalculationsRedo.tsx │ │ ├── grapevine │ │ │ └── index.tsx │ │ ├── ipfs │ │ │ └── index.tsx │ │ ├── nip51 │ │ │ └── index.tsx │ │ ├── nostr │ │ │ ├── eventValidation.tsx │ │ │ └── index.tsx │ │ ├── pg │ │ │ ├── asyncLightningPayReq.tsx │ │ │ ├── asyncLnurlDecode.tsx │ │ │ ├── asyncSql.tsx │ │ │ ├── index.tsx │ │ │ ├── sql │ │ │ │ └── index.tsx │ │ │ └── ui.tsx │ │ ├── startup-deprecated │ │ │ └── index.tsx │ │ └── visjs │ │ │ ├── index.tsx │ │ │ └── visjs-style.tsx │ ├── mastheads │ │ ├── askNostrMasthead.tsx │ │ ├── cgMasthead.jsx │ │ ├── curatedListsListenersToggle.tsx │ │ ├── curatedListsMasthead.jsx │ │ ├── eBooksMasthead.jsx │ │ ├── grapevineMasthead.jsx │ │ ├── nip51Masthead.jsx │ │ ├── nostrMasthead.tsx │ │ ├── pgMasthead.jsx │ │ ├── relaysStatus.tsx │ │ └── tapestryStatus.tsx │ ├── navbars │ │ ├── leftNavbar1 │ │ │ ├── askNostrNavbar.jsx │ │ │ ├── cgNavbar.jsx │ │ │ ├── curatedListsNavbar.jsx │ │ │ ├── eBooksNavbar.jsx │ │ │ ├── grapevineNavbar.jsx │ │ │ ├── nostrNavbar.jsx │ │ │ ├── pgNavbar.jsx │ │ │ └── universalNavbar.jsx │ │ └── leftNavbar2 │ │ │ ├── askNostr │ │ │ ├── home.jsx │ │ │ └── settings.jsx │ │ │ ├── conceptGraph │ │ │ ├── home.jsx │ │ │ ├── profile.jsx │ │ │ └── settings.jsx │ │ │ ├── curatedLists │ │ │ ├── contentCuration │ │ │ │ ├── creators.tsx │ │ │ │ ├── curators.tsx │ │ │ │ ├── graphs.tsx │ │ │ │ ├── home.tsx │ │ │ │ ├── showCurations.tsx │ │ │ │ ├── topic.tsx │ │ │ │ └── topics.tsx │ │ │ ├── home.jsx │ │ │ ├── instance.jsx │ │ │ ├── settings.jsx │ │ │ ├── singleListCurators.jsx │ │ │ ├── singleListInstances.jsx │ │ │ ├── viewList.jsx │ │ │ └── viewLists.tsx │ │ │ ├── eBooks │ │ │ ├── book.jsx │ │ │ ├── home.jsx │ │ │ └── settings.jsx │ │ │ ├── emptyNavbar.jsx │ │ │ ├── grapevine │ │ │ ├── home.jsx │ │ │ ├── listCuration.jsx │ │ │ ├── profile.jsx │ │ │ └── settings.jsx │ │ │ ├── nip51 │ │ │ └── home.jsx │ │ │ ├── nostr │ │ │ ├── profile.jsx │ │ │ └── settings.jsx │ │ │ └── prettyGood │ │ │ ├── about.jsx │ │ │ ├── helloWorld.jsx │ │ │ ├── home.jsx │ │ │ ├── profile.jsx │ │ │ └── settings.jsx │ ├── preload.d.ts │ └── redux │ │ ├── features │ │ ├── counter │ │ │ ├── helloWorld.tsx │ │ │ └── slice.tsx │ │ ├── curatedChannels │ │ │ ├── channels │ │ │ │ ├── helloWorld.tsx │ │ │ │ ├── slice.tsx │ │ │ │ ├── techDetailsForNostrNerdsA.tsx │ │ │ │ ├── techDetailsForNostrNerdsB.tsx │ │ │ │ ├── techDetailsForNostrNerdsC.tsx │ │ │ │ ├── techDetailsForNostrNerdsD.tsx │ │ │ │ ├── techDetailsForNostrNerdsE.tsx │ │ │ │ ├── techDetailsForNostrNerdsE1.tsx │ │ │ │ └── techDetailsForNostrNerdsE1a.tsx │ │ │ └── settings │ │ │ │ └── slice.tsx │ │ ├── curatedLists │ │ │ ├── lists │ │ │ │ ├── helloWorld.tsx │ │ │ │ └── slice.tsx │ │ │ └── settings │ │ │ │ └── slice.tsx │ │ ├── eBooks │ │ │ └── slice.tsx │ │ ├── grapevine │ │ │ ├── compositeTrustScores │ │ │ │ └── slice.tsx │ │ │ ├── controlPanelSettings │ │ │ │ └── slice.tsx │ │ │ ├── grapevineTrustRatingPresets │ │ │ │ └── slice.tsx │ │ │ └── listCuration │ │ │ │ └── slice.tsx │ │ ├── nip51 │ │ │ ├── lists │ │ │ │ └── slice.tsx │ │ │ └── settings │ │ │ │ └── slice.tsx │ │ ├── nostr │ │ │ ├── directMessages │ │ │ │ ├── helloWorld.tsx │ │ │ │ └── slice.tsx │ │ │ ├── myNostrProfile │ │ │ │ ├── MyProfile-depr.tsx │ │ │ │ └── slice.tsx │ │ │ ├── notes │ │ │ │ ├── helloWorld.tsx │ │ │ │ └── slice.tsx │ │ │ ├── profiles │ │ │ │ ├── helloWorld.tsx │ │ │ │ └── slice.tsx │ │ │ └── settings │ │ │ │ ├── defaults.tsx │ │ │ │ ├── helloWorld.tsx │ │ │ │ └── slice.tsx │ │ ├── posts-deprecated │ │ │ ├── EditPostForm.tsx │ │ │ ├── PostsList.tsx │ │ │ ├── SinglePostPage.tsx │ │ │ ├── TimeAgo.tsx │ │ │ └── postsSlice.tsx │ │ ├── prettyGood │ │ │ └── settings │ │ │ │ └── slice.tsx │ │ └── startup │ │ │ └── slice.tsx │ │ └── store │ │ └── store.tsx │ ├── window2 │ ├── App.tsx │ ├── App2.css │ ├── index.ejs │ ├── index.tsx │ └── preload.d.ts │ └── window3 │ ├── App.tsx │ ├── App3.css │ ├── index.ejs │ ├── index.tsx │ └── preload.d.ts └── tsconfig.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/.editorconfig -------------------------------------------------------------------------------- /.erb/configs/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/.erb/configs/.eslintrc -------------------------------------------------------------------------------- /.erb/configs/webpack.config.base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/.erb/configs/webpack.config.base.ts -------------------------------------------------------------------------------- /.erb/configs/webpack.config.eslint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/.erb/configs/webpack.config.eslint.ts -------------------------------------------------------------------------------- /.erb/configs/webpack.config.main.prod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/.erb/configs/webpack.config.main.prod.ts -------------------------------------------------------------------------------- /.erb/configs/webpack.config.preload.dev.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/.erb/configs/webpack.config.preload.dev.ts -------------------------------------------------------------------------------- /.erb/configs/webpack.config.renderer.dev.dll.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/.erb/configs/webpack.config.renderer.dev.dll.ts -------------------------------------------------------------------------------- /.erb/configs/webpack.config.renderer.dev.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/.erb/configs/webpack.config.renderer.dev.ts -------------------------------------------------------------------------------- /.erb/configs/webpack.config.renderer.prod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/.erb/configs/webpack.config.renderer.prod.ts -------------------------------------------------------------------------------- /.erb/configs/webpack.paths.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/.erb/configs/webpack.paths.ts -------------------------------------------------------------------------------- /.erb/img/app-snapshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/.erb/img/app-snapshot.png -------------------------------------------------------------------------------- /.erb/img/calculationsOverview_damus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/.erb/img/calculationsOverview_damus.png -------------------------------------------------------------------------------- /.erb/img/calculationsOverview_joker1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/.erb/img/calculationsOverview_joker1.png -------------------------------------------------------------------------------- /.erb/img/createInstance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/.erb/img/createInstance.png -------------------------------------------------------------------------------- /.erb/img/createNewList.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/.erb/img/createNewList.png -------------------------------------------------------------------------------- /.erb/img/curatedListsControlPanel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/.erb/img/curatedListsControlPanel.png -------------------------------------------------------------------------------- /.erb/img/curatedListsControlPanel2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/.erb/img/curatedListsControlPanel2.png -------------------------------------------------------------------------------- /.erb/img/curatedListsMainPage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/.erb/img/curatedListsMainPage.png -------------------------------------------------------------------------------- /.erb/img/curatedListsMainPage2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/.erb/img/curatedListsMainPage2.png -------------------------------------------------------------------------------- /.erb/img/curatedListsShowCalculations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/.erb/img/curatedListsShowCalculations.png -------------------------------------------------------------------------------- /.erb/img/curatedListsWithGraph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/.erb/img/curatedListsWithGraph.png -------------------------------------------------------------------------------- /.erb/img/damusInfo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/.erb/img/damusInfo.png -------------------------------------------------------------------------------- /.erb/img/damusNostrEvent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/.erb/img/damusNostrEvent.png -------------------------------------------------------------------------------- /.erb/img/damusWord.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/.erb/img/damusWord.png -------------------------------------------------------------------------------- /.erb/img/endorseOrBlockACurator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/.erb/img/endorseOrBlockACurator.png -------------------------------------------------------------------------------- /.erb/img/endorseOrBlockAnItem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/.erb/img/endorseOrBlockAnItem.png -------------------------------------------------------------------------------- /.erb/img/erb-banner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/.erb/img/erb-banner.svg -------------------------------------------------------------------------------- /.erb/img/erb-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/.erb/img/erb-logo.png -------------------------------------------------------------------------------- /.erb/img/listCuration1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/.erb/img/listCuration1.png -------------------------------------------------------------------------------- /.erb/img/listCuration2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/.erb/img/listCuration2.png -------------------------------------------------------------------------------- /.erb/img/listCurationControlPanel_display.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/.erb/img/listCurationControlPanel_display.png -------------------------------------------------------------------------------- /.erb/img/listCurationControlPanel_items.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/.erb/img/listCurationControlPanel_items.png -------------------------------------------------------------------------------- /.erb/img/listCurationControlPanel_sybilMitigation_defense_mod1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/.erb/img/listCurationControlPanel_sybilMitigation_defense_mod1.png -------------------------------------------------------------------------------- /.erb/img/listCurationControlPanel_sybilMitigation_defense_mod2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/.erb/img/listCurationControlPanel_sybilMitigation_defense_mod2.png -------------------------------------------------------------------------------- /.erb/img/listCurationControlPanel_sybilMitigation_defense_mod3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/.erb/img/listCurationControlPanel_sybilMitigation_defense_mod3.png -------------------------------------------------------------------------------- /.erb/img/listCurationControlPanel_sybilMitigation_overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/.erb/img/listCurationControlPanel_sybilMitigation_overview.png -------------------------------------------------------------------------------- /.erb/img/listCurationControlPanel_sybilMitigation_rigor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/.erb/img/listCurationControlPanel_sybilMitigation_rigor.png -------------------------------------------------------------------------------- /.erb/img/listCurationControlPanel_users.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/.erb/img/listCurationControlPanel_users.png -------------------------------------------------------------------------------- /.erb/img/listCurationMainPageWds4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/.erb/img/listCurationMainPageWds4.png -------------------------------------------------------------------------------- /.erb/img/listCurationResults_curatorScores.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/.erb/img/listCurationResults_curatorScores.png -------------------------------------------------------------------------------- /.erb/img/listCurationResults_itemScores.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/.erb/img/listCurationResults_itemScores.png -------------------------------------------------------------------------------- /.erb/img/listCurationResults_items.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/.erb/img/listCurationResults_items.png -------------------------------------------------------------------------------- /.erb/img/listCurationWds4WoT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/.erb/img/listCurationWds4WoT.png -------------------------------------------------------------------------------- /.erb/img/nostrClientsCurationImg1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/.erb/img/nostrClientsCurationImg1.png -------------------------------------------------------------------------------- /.erb/img/nostrClientsCurationImg2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/.erb/img/nostrClientsCurationImg2.png -------------------------------------------------------------------------------- /.erb/img/nostrClientsInfo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/.erb/img/nostrClientsInfo.png -------------------------------------------------------------------------------- /.erb/img/nostrClientsNostrEvent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/.erb/img/nostrClientsNostrEvent.png -------------------------------------------------------------------------------- /.erb/img/nostrClientsWord.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/.erb/img/nostrClientsWord.png -------------------------------------------------------------------------------- /.erb/img/palette-sponsor-banner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/.erb/img/palette-sponsor-banner.svg -------------------------------------------------------------------------------- /.erb/img/ratingOfCurator_event.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/.erb/img/ratingOfCurator_event.png -------------------------------------------------------------------------------- /.erb/img/ratingOfCurator_word.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/.erb/img/ratingOfCurator_word.png -------------------------------------------------------------------------------- /.erb/img/ratingOfItem_event.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/.erb/img/ratingOfItem_event.png -------------------------------------------------------------------------------- /.erb/img/ratingOfItem_word.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/.erb/img/ratingOfItem_word.png -------------------------------------------------------------------------------- /.erb/img/ratingsOfCurators.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/.erb/img/ratingsOfCurators.png -------------------------------------------------------------------------------- /.erb/img/ratingsOfItems.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/.erb/img/ratingsOfItems.png -------------------------------------------------------------------------------- /.erb/img/viewLists.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/.erb/img/viewLists.png -------------------------------------------------------------------------------- /.erb/mocks/fileMock.js: -------------------------------------------------------------------------------- 1 | export default 'test-file-stub'; 2 | -------------------------------------------------------------------------------- /.erb/scripts/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/.erb/scripts/.eslintrc -------------------------------------------------------------------------------- /.erb/scripts/check-build-exists.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/.erb/scripts/check-build-exists.ts -------------------------------------------------------------------------------- /.erb/scripts/check-native-dep.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/.erb/scripts/check-native-dep.js -------------------------------------------------------------------------------- /.erb/scripts/check-node-env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/.erb/scripts/check-node-env.js -------------------------------------------------------------------------------- /.erb/scripts/check-port-in-use.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/.erb/scripts/check-port-in-use.js -------------------------------------------------------------------------------- /.erb/scripts/clean.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/.erb/scripts/clean.js -------------------------------------------------------------------------------- /.erb/scripts/delete-source-maps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/.erb/scripts/delete-source-maps.js -------------------------------------------------------------------------------- /.erb/scripts/electron-rebuild.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/.erb/scripts/electron-rebuild.js -------------------------------------------------------------------------------- /.erb/scripts/link-modules.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/.erb/scripts/link-modules.ts -------------------------------------------------------------------------------- /.erb/scripts/notarize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/.erb/scripts/notarize.js -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/1-Bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/.github/ISSUE_TEMPLATE/1-Bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/2-Question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/.github/ISSUE_TEMPLATE/2-Question.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/3-Feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/.github/ISSUE_TEMPLATE/3-Feature_request.md -------------------------------------------------------------------------------- /.github/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/.github/config.yml -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . "$(dirname "$0")/_/husky.sh" 3 | 4 | npx lint-staged 5 | -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/LICENSE -------------------------------------------------------------------------------- /README copy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/README copy.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/README.md -------------------------------------------------------------------------------- /appDescriptions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/appDescriptions/README.md -------------------------------------------------------------------------------- /appDescriptions/channels/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/appDescriptions/channels/README.md -------------------------------------------------------------------------------- /appDescriptions/curatedLists/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/appDescriptions/curatedLists/README.md -------------------------------------------------------------------------------- /appDescriptions/curatedLists/exampleListCuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/appDescriptions/curatedLists/exampleListCuration.md -------------------------------------------------------------------------------- /appDescriptions/curatedLists/exampleListCurationGrapevine.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/appDescriptions/curatedLists/exampleListCurationGrapevine.md -------------------------------------------------------------------------------- /appDescriptions/curatedLists/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/appDescriptions/curatedLists/overview.md -------------------------------------------------------------------------------- /appDescriptions/curatedLists/screenshots.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/appDescriptions/curatedLists/screenshots.md -------------------------------------------------------------------------------- /appDescriptions/curatedLists/v021Overview/calculationsOverview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/appDescriptions/curatedLists/v021Overview/calculationsOverview.md -------------------------------------------------------------------------------- /appDescriptions/curatedLists/v021Overview/rateCurator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/appDescriptions/curatedLists/v021Overview/rateCurator.md -------------------------------------------------------------------------------- /appDescriptions/curatedLists/v021Overview/rateItem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/appDescriptions/curatedLists/v021Overview/rateItem.md -------------------------------------------------------------------------------- /appDescriptions/curatedLists/v021Overview/singleListDetails.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/appDescriptions/curatedLists/v021Overview/singleListDetails.md -------------------------------------------------------------------------------- /appDescriptions/curatedLists/v021Overview/singleListItemDetails.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/appDescriptions/curatedLists/v021Overview/singleListItemDetails.md -------------------------------------------------------------------------------- /appDescriptions/pgnostr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/appDescriptions/pgnostr/README.md -------------------------------------------------------------------------------- /assets/assets.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/assets/assets.d.ts -------------------------------------------------------------------------------- /assets/entitlements.mac.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/assets/entitlements.mac.plist -------------------------------------------------------------------------------- /assets/icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/assets/icon.icns -------------------------------------------------------------------------------- /assets/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/assets/icon.ico -------------------------------------------------------------------------------- /assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/assets/icon.png -------------------------------------------------------------------------------- /assets/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/assets/icon.svg -------------------------------------------------------------------------------- /assets/icons/1024x1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/assets/icons/1024x1024.png -------------------------------------------------------------------------------- /assets/icons/128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/assets/icons/128x128.png -------------------------------------------------------------------------------- /assets/icons/16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/assets/icons/16x16.png -------------------------------------------------------------------------------- /assets/icons/24x24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/assets/icons/24x24.png -------------------------------------------------------------------------------- /assets/icons/256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/assets/icons/256x256.png -------------------------------------------------------------------------------- /assets/icons/32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/assets/icons/32x32.png -------------------------------------------------------------------------------- /assets/icons/48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/assets/icons/48x48.png -------------------------------------------------------------------------------- /assets/icons/512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/assets/icons/512x512.png -------------------------------------------------------------------------------- /assets/icons/64x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/assets/icons/64x64.png -------------------------------------------------------------------------------- /assets/icons/96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/assets/icons/96x96.png -------------------------------------------------------------------------------- /config-overrides.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/config-overrides.js -------------------------------------------------------------------------------- /notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/notes.txt -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/package.json -------------------------------------------------------------------------------- /release/app/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/release/app/package-lock.json -------------------------------------------------------------------------------- /release/app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/release/app/package.json -------------------------------------------------------------------------------- /src/__tests__/App.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/__tests__/App.test.tsx -------------------------------------------------------------------------------- /src/main/const/nostr/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/main/const/nostr/index.ts -------------------------------------------------------------------------------- /src/main/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/main/main.ts -------------------------------------------------------------------------------- /src/main/menu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/main/menu.ts -------------------------------------------------------------------------------- /src/main/preload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/main/preload.ts -------------------------------------------------------------------------------- /src/main/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/main/util.ts -------------------------------------------------------------------------------- /src/renderer/devNotes/devModes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/devNotes/devModes.txt -------------------------------------------------------------------------------- /src/renderer/devNotes/techDetailsForNostrNerds.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/devNotes/techDetailsForNostrNerds.tsx -------------------------------------------------------------------------------- /src/renderer/devNotes/techDetailsForNostrNerds.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/devNotes/techDetailsForNostrNerds.txt -------------------------------------------------------------------------------- /src/renderer/window1/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/App.tsx -------------------------------------------------------------------------------- /src/renderer/window1/AppNostr.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/AppNostr.tsx -------------------------------------------------------------------------------- /src/renderer/window1/AppRoutes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/AppRoutes.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/askNostr/createNewQuestion/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/askNostr/createNewQuestion/index.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/askNostr/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/askNostr/index.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/askNostr/questions/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/askNostr/questions/index.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/askNostr/settings/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/askNostr/settings/index.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/conceptGraph/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/conceptGraph/index.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/conceptGraph/profile/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/conceptGraph/profile/index.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/conceptGraph/settings/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/conceptGraph/settings/index.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/conceptGraph/words/createWord/createWord.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/conceptGraph/words/createWord/createWord.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/conceptGraph/words/createWord/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/conceptGraph/words/createWord/index.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/conceptGraph/words/viewWords/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/conceptGraph/words/viewWords/index.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/conceptGraph/words/viewWords/viewWords.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/conceptGraph/words/viewWords/viewWords.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/curatedLists/about/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/curatedLists/about/index.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/curatedLists/components/sourceToggleSwitch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/curatedLists/components/sourceToggleSwitch.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/curatedLists/components/toggleSwitchSourceSmall.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/curatedLists/components/toggleSwitchSourceSmall.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/curatedLists/contentCuration/contentCreators/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/curatedLists/contentCuration/contentCreators/index.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/curatedLists/contentCuration/contentCurators/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/curatedLists/contentCuration/contentCurators/index.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/curatedLists/contentCuration/contextualFeed/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/curatedLists/contentCuration/contextualFeed/index.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/curatedLists/contentCuration/graphs/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/curatedLists/contentCuration/graphs/index.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/curatedLists/contentCuration/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/curatedLists/contentCuration/index.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/curatedLists/contentCuration/relationships/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/curatedLists/contentCuration/relationships/index.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/curatedLists/contentCuration/settings/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/curatedLists/contentCuration/settings/index.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/curatedLists/contentCuration/settings/redux/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/curatedLists/contentCuration/settings/redux/index.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/curatedLists/contentCuration/settings/sql/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/curatedLists/contentCuration/settings/sql/index.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/curatedLists/contentCuration/showCurations/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/curatedLists/contentCuration/showCurations/index.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/curatedLists/contentCuration/topic/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/curatedLists/contentCuration/topic/index.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/curatedLists/contentCuration/topic/topicOverview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/curatedLists/contentCuration/topic/topicOverview.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/curatedLists/contentCuration/topics/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/curatedLists/contentCuration/topics/index.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/curatedLists/createNewCuratedList/createNewList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/curatedLists/createNewCuratedList/createNewList.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/curatedLists/createNewCuratedList/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/curatedLists/createNewCuratedList/index.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/curatedLists/createNewCuratedListInstance/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/curatedLists/createNewCuratedListInstance/index.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/curatedLists/createNewCuratedListInstance/list.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/curatedLists/createNewCuratedListInstance/list.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/curatedLists/deprecated-profile/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/curatedLists/deprecated-profile/index.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/curatedLists/faq/faq.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/curatedLists/faq/faq.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/curatedLists/faq/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/curatedLists/faq/index.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/curatedLists/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/curatedLists/index.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/curatedLists/landingPageRedirect.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/curatedLists/landingPageRedirect.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/curatedLists/listsWithScores/graphic.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/curatedLists/listsWithScores/graphic.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/curatedLists/listsWithScores/graphic2.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/curatedLists/listsWithScores/graphic2.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/curatedLists/listsWithScores/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/curatedLists/listsWithScores/index.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/curatedLists/listsWithScores/list.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/curatedLists/listsWithScores/list.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/curatedLists/listsWithScores/listUI.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/curatedLists/listsWithScores/listUI.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/curatedLists/listsWithScores/lists.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/curatedLists/listsWithScores/lists.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/curatedLists/listsWithScoresV4/graphic.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/curatedLists/listsWithScoresV4/graphic.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/curatedLists/listsWithScoresV4/graphic2.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/curatedLists/listsWithScoresV4/graphic2.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/curatedLists/listsWithScoresV4/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/curatedLists/listsWithScoresV4/index.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/curatedLists/listsWithScoresV4/list.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/curatedLists/listsWithScoresV4/list.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/curatedLists/listsWithScoresV4/listUI.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/curatedLists/listsWithScoresV4/listUI.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/curatedLists/listsWithScoresV4/lists.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/curatedLists/listsWithScoresV4/lists.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/curatedLists/listsWithScoresV4/listsRedux.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/curatedLists/listsWithScoresV4/listsRedux.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/curatedLists/listsWithScoresV5/graphic.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/curatedLists/listsWithScoresV5/graphic.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/curatedLists/listsWithScoresV5/graphic2.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/curatedLists/listsWithScoresV5/graphic2.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/curatedLists/listsWithScoresV5/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/curatedLists/listsWithScoresV5/index.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/curatedLists/listsWithScoresV5/list.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/curatedLists/listsWithScoresV5/list.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/curatedLists/listsWithScoresV5/listUI.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/curatedLists/listsWithScoresV5/listUI.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/curatedLists/listsWithScoresV5/lists.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/curatedLists/listsWithScoresV5/lists.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/curatedLists/listsWithScoresV5/listsRedux.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/curatedLists/listsWithScoresV5/listsRedux.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/curatedLists/listsWithScoresV6/graphic.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/curatedLists/listsWithScoresV6/graphic.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/curatedLists/listsWithScoresV6/graphic2.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/curatedLists/listsWithScoresV6/graphic2.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/curatedLists/listsWithScoresV6/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/curatedLists/listsWithScoresV6/index.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/curatedLists/listsWithScoresV6/list.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/curatedLists/listsWithScoresV6/list.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/curatedLists/listsWithScoresV6/listUI.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/curatedLists/listsWithScoresV6/listUI.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/curatedLists/listsWithScoresV6/lists.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/curatedLists/listsWithScoresV6/lists.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/curatedLists/listsWithScoresV6/listsRedux.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/curatedLists/listsWithScoresV6/listsRedux.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/curatedLists/listsWithScoresV7/depr-.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/curatedLists/listsWithScoresV7/depr-.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/curatedLists/listsWithScoresV7/graphic.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/curatedLists/listsWithScoresV7/graphic.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/curatedLists/listsWithScoresV7/graphic2.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/curatedLists/listsWithScoresV7/graphic2.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/curatedLists/listsWithScoresV7/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/curatedLists/listsWithScoresV7/index.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/curatedLists/listsWithScoresV7/list.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/curatedLists/listsWithScoresV7/list.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/curatedLists/listsWithScoresV7/listPre.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/curatedLists/listsWithScoresV7/listPre.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/curatedLists/listsWithScoresV7/listSelectButton.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/curatedLists/listsWithScoresV7/listSelectButton.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/curatedLists/listsWithScoresV7/listUI.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/curatedLists/listsWithScoresV7/listUI.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/curatedLists/listsWithScoresV7/lists.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/curatedLists/listsWithScoresV7/lists.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/curatedLists/listsWithScoresV7/listsRedux.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/curatedLists/listsWithScoresV7/listsRedux.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/curatedLists/listsWithScoresV8/graphic.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/curatedLists/listsWithScoresV8/graphic.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/curatedLists/listsWithScoresV8/graphic2.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/curatedLists/listsWithScoresV8/graphic2.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/curatedLists/listsWithScoresV8/graphic2Redo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/curatedLists/listsWithScoresV8/graphic2Redo.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/curatedLists/listsWithScoresV8/graphicRedo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/curatedLists/listsWithScoresV8/graphicRedo.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/curatedLists/listsWithScoresV8/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/curatedLists/listsWithScoresV8/index.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/curatedLists/listsWithScoresV8/list.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/curatedLists/listsWithScoresV8/list.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/curatedLists/listsWithScoresV8/listPre.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/curatedLists/listsWithScoresV8/listPre.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/curatedLists/listsWithScoresV8/listPreRedo.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/curatedLists/listsWithScoresV8/listPreRedo.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/curatedLists/listsWithScoresV8/listRedo.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/curatedLists/listsWithScoresV8/listRedo.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/curatedLists/listsWithScoresV8/listSelectButton.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/curatedLists/listsWithScoresV8/listSelectButton.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/curatedLists/listsWithScoresV8/listUI.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/curatedLists/listsWithScoresV8/listUI.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/curatedLists/listsWithScoresV8/listUIRedo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/curatedLists/listsWithScoresV8/listUIRedo.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/curatedLists/listsWithScoresV8/lists.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/curatedLists/listsWithScoresV8/lists.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/curatedLists/listsWithScoresV8/listsRedux.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/curatedLists/listsWithScoresV8/listsRedux.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/curatedLists/listsWithScoresV8/spinner.tsx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/renderer/window1/apps/curatedLists/multiListSummariesOfItemScores/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/curatedLists/multiListSummariesOfItemScores/index.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/curatedLists/settings/generalSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/curatedLists/settings/generalSettings.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/curatedLists/settings/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/curatedLists/settings/index.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/curatedLists/viewIndividualCuratedList/graph/const.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/curatedLists/viewIndividualCuratedList/graph/const.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/curatedLists/viewIndividualCuratedList/graph/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/curatedLists/viewIndividualCuratedList/graph/index.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/curatedLists/viewInstance/leaveRating/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/curatedLists/viewInstance/leaveRating/index.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/curatedLists/viewInstance/leaveRating/instance.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/curatedLists/viewInstance/leaveRating/instance.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/curatedLists/viewInstance/overview/createNewRating.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/curatedLists/viewInstance/overview/createNewRating.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/curatedLists/viewInstance/overview/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/curatedLists/viewInstance/overview/index.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/curatedLists/viewInstance/overview/instance.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/curatedLists/viewInstance/overview/instance.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/curatedLists/viewInstance/overview/miniProfile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/curatedLists/viewInstance/overview/miniProfile.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/curatedLists/viewInstance/techOverview/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/curatedLists/viewInstance/techOverview/index.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/curatedLists/viewInstance/techOverview/instance.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/curatedLists/viewInstance/techOverview/instance.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/curatedLists/viewInstance/viewRatings/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/curatedLists/viewInstance/viewRatings/index.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/curatedLists/viewInstance/viewRatings/instance.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/curatedLists/viewInstance/viewRatings/instance.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/curatedLists/viewListOfCuratedLists/allLists/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/curatedLists/viewListOfCuratedLists/allLists/index.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/curatedLists/viewListOfCuratedLists/allLists/list.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/curatedLists/viewListOfCuratedLists/allLists/list.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/curatedLists/viewListOfCuratedLists/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/curatedLists/viewListOfCuratedLists/index.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/curatedLists/viewListOfCuratedLists/myLists/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/curatedLists/viewListOfCuratedLists/myLists/index.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/curatedLists/viewListOfCuratedLists/myLists/list.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/curatedLists/viewListOfCuratedLists/myLists/list.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/eBooks/eBook/bookIndex/eBookIndex.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/eBooks/eBook/bookIndex/eBookIndex.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/eBooks/eBook/bookIndex/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/eBooks/eBook/bookIndex/index.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/eBooks/eBook/chapterHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/eBooks/eBook/chapterHeader.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/eBooks/eBook/content/book2/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/eBooks/eBook/content/book2/index.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/eBooks/eBook/content/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/eBooks/eBook/content/index.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/eBooks/eBook/content/threadedTapestry/chunk/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/eBooks/eBook/content/threadedTapestry/chunk/index.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/eBooks/eBook/content/threadedTapestry/chunk/notes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/eBooks/eBook/content/threadedTapestry/chunk/notes.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/eBooks/eBook/content/threadedTapestry/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/eBooks/eBook/content/threadedTapestry/index.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/eBooks/eBook/content/threadedTapestry/thread/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/eBooks/eBook/content/threadedTapestry/thread/index.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/eBooks/eBook/eBook.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/eBooks/eBook/eBook.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/eBooks/eBook/eBookHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/eBooks/eBook/eBookHeader.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/eBooks/eBook/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/eBooks/eBook/index.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/eBooks/eBook/previousTopicButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/eBooks/eBook/previousTopicButton.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/eBooks/eBook/sectionSelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/eBooks/eBook/sectionSelector.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/eBooks/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/eBooks/index.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/eBooks/settings/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/eBooks/settings/index.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/eBooks/tableOfBooks.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/eBooks/tableOfBooks.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/grapevine/graphViews/extendedFollowing/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/grapevine/graphViews/extendedFollowing/index.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/grapevine/graphViews/following/following.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/grapevine/graphViews/following/following.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/grapevine/graphViews/following/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/grapevine/graphViews/following/index.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/grapevine/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/grapevine/index.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/grapevine/listCuration/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/grapevine/listCuration/index.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/grapevine/listCuration/relaysCuration/graphView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/grapevine/listCuration/relaysCuration/graphView.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/grapevine/listCuration/relaysCuration/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/grapevine/listCuration/relaysCuration/index.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/grapevine/profile/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/grapevine/profile/index.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/grapevine/settings/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/grapevine/settings/index.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/grapevine/visualization/const.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/grapevine/visualization/const.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/grapevine/visualization/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/grapevine/visualization/index.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/grapevine/visualization/reduxInterfaceComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/grapevine/visualization/reduxInterfaceComponent.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nip51/components/channelButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nip51/components/channelButton.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nip51/components/kind10000Lists.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nip51/components/kind10000Lists.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nip51/components/kind10001Lists.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nip51/components/kind10001Lists.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nip51/components/kind30000Lists.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nip51/components/kind30000Lists.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nip51/components/kind30001Lists.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nip51/components/kind30001Lists.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nip51/components/nip51ListListener.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nip51/components/nip51ListListener.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nip51/components/singleListOverview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nip51/components/singleListOverview.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nip51/components/techDetailsForNostrNerds.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nip51/components/techDetailsForNostrNerds.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nip51/components/topPanel/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nip51/components/topPanel/index.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nip51/components/topPanel/nip51Listener.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nip51/components/topPanel/nip51Listener.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nip51/components/topPanel/questionMarkTopPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nip51/components/topPanel/questionMarkTopPanel.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nip51/components/topPanelButtons/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nip51/components/topPanelButtons/index.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nip51/components/topPanelButtons/nip51Listener.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nip51/components/topPanelButtons/nip51Listener.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nip51/components/topPanelDisplay/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nip51/components/topPanelDisplay/index.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nip51/components/topPanelDisplay/nip51Listener.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nip51/components/topPanelDisplay/nip51Listener.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nip51/kind10000Lists/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nip51/kind10000Lists/index.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nip51/kind10000Lists/kind10000Lists.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nip51/kind10000Lists/kind10000Lists.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nip51/kind10001Lists/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nip51/kind10001Lists/index.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nip51/kind10001Lists/kind10001Lists.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nip51/kind10001Lists/kind10001Lists.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nip51/kind30000Lists/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nip51/kind30000Lists/index.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nip51/kind30000Lists/kind30000Lists.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nip51/kind30000Lists/kind30000Lists.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nip51/kind30001Lists/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nip51/kind30001Lists/index.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nip51/kind30001Lists/kind30001Lists.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nip51/kind30001Lists/kind30001Lists.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nip51/landingPage/downloadLists.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nip51/landingPage/downloadLists.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nip51/landingPage/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nip51/landingPage/index.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nip51/landingPage/listsLandingPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nip51/landingPage/listsLandingPage.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nip51/landingPage/nip51ListenerByType.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nip51/landingPage/nip51ListenerByType.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nip51/list/addItemButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nip51/list/addItemButton.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nip51/list/addItemToThisList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nip51/list/addItemToThisList.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nip51/list/deleteButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nip51/list/deleteButton.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nip51/list/editButtonToggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nip51/list/editButtonToggle.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nip51/list/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nip51/list/index.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nip51/list/list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nip51/list/list.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nip51/list/miniProfile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nip51/list/miniProfile.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nip51/list/populateListItemArrays.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nip51/list/populateListItemArrays.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nip51/list/processImportsToggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nip51/list/processImportsToggle.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nip51/list/publishUpdatedListPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nip51/list/publishUpdatedListPanel.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nip51/list/showListsPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nip51/list/showListsPanel.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nip51/list/showNotesPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nip51/list/showNotesPanel.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nip51/list/showPeoplePanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nip51/list/showPeoplePanel.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nip51/list/showTagsPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nip51/list/showTagsPanel.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nip51/list/toggleRawListEvent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nip51/list/toggleRawListEvent.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nip51/list/toggleShowItems.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nip51/list/toggleShowItems.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nip51/listAuthors/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nip51/listAuthors/index.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nip51/listAuthors/listAuthors.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nip51/listAuthors/listAuthors.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nip51/listAuthors/miniProfile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nip51/listAuthors/miniProfile.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nip51/loadLists/allLists.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nip51/loadLists/allLists.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nip51/loadLists/categorizedEvents.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nip51/loadLists/categorizedEvents.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nip51/loadLists/categorizedPeople.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nip51/loadLists/categorizedPeople.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nip51/loadLists/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nip51/loadLists/index.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nip51/loadLists/kind10000Lists.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nip51/loadLists/kind10000Lists.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nip51/loadLists/kind10001Lists.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nip51/loadLists/kind10001Lists.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nip51/loadLists/kind30000Lists.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nip51/loadLists/kind30000Lists.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nip51/loadLists/kind30001Lists.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nip51/loadLists/kind30001Lists.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nip51/loadLists/list.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nip51/loadLists/list.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nip51/loadLists/lists.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nip51/loadLists/lists.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nip51/makeNewList/components/addItemButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nip51/makeNewList/components/addItemButton.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nip51/makeNewList/components/importListTextareas.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nip51/makeNewList/components/importListTextareas.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nip51/makeNewList/components/itemTypeSelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nip51/makeNewList/components/itemTypeSelector.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nip51/makeNewList/components/lockListNameButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nip51/makeNewList/components/lockListNameButton.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nip51/makeNewList/components/makeNewListTitle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nip51/makeNewList/components/makeNewListTitle.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nip51/makeNewList/components/newItemIdentifier.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nip51/makeNewList/components/newItemIdentifier.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nip51/makeNewList/components/newItemPlainText.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nip51/makeNewList/components/newItemPlainText.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nip51/makeNewList/components/newListName.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nip51/makeNewList/components/newListName.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nip51/makeNewList/components/newListTypeSelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nip51/makeNewList/components/newListTypeSelector.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nip51/makeNewList/components/publishButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nip51/makeNewList/components/publishButton.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nip51/makeNewList/components/startOverButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nip51/makeNewList/components/startOverButton.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nip51/makeNewList/components/whoManagesSelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nip51/makeNewList/components/whoManagesSelector.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nip51/makeNewList/functions/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nip51/makeNewList/functions/index.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nip51/makeNewList/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nip51/makeNewList/index.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nip51/makeNewList/pageLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nip51/makeNewList/pageLayout.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nip51/makeNewList/panels/addItemPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nip51/makeNewList/panels/addItemPanel.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nip51/makeNewList/panels/buttonsPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nip51/makeNewList/panels/buttonsPanel.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nip51/makeNewList/panels/initListPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nip51/makeNewList/panels/initListPanel.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nip51/makeNewList/panels/showItemsPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nip51/makeNewList/panels/showItemsPanel.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nip51/makeNewList/showSingleItem/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nip51/makeNewList/showSingleItem/index.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nip51/makeNewList/showSingleItem/miniProfile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nip51/makeNewList/showSingleItem/miniProfile.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nip51/makeNewList/showSingleItem/post.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nip51/makeNewList/showSingleItem/post.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nip51/makeNewList/state.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nip51/makeNewList/state.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nip51/nip32Explorer/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nip51/nip32Explorer/index.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nip51/nip32Explorer/nip32Explorer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nip51/nip32Explorer/nip32Explorer.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nip51/settings/downloadLists.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nip51/settings/downloadLists.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nip51/settings/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nip51/settings/index.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nip51/settings/listsSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nip51/settings/listsSettings.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nip51/tableOfLists/channelCell.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nip51/tableOfLists/channelCell.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nip51/tableOfLists/clickableStatusBarComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nip51/tableOfLists/clickableStatusBarComponent.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nip51/tableOfLists/countStatusBarComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nip51/tableOfLists/countStatusBarComponent.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nip51/tableOfLists/createdAtCell.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nip51/tableOfLists/createdAtCell.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nip51/tableOfLists/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nip51/tableOfLists/index.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nip51/tableOfLists/listNameCell.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nip51/tableOfLists/listNameCell.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nip51/tableOfLists/miniProfileCell.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nip51/tableOfLists/miniProfileCell.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nip51/tableOfLists/nip51Listener.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nip51/tableOfLists/nip51Listener.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nip51/tableOfLists/processEventIntoTableEntry.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nip51/tableOfLists/processEventIntoTableEntry.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nip51/tableOfLists/tableOfLists.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nip51/tableOfLists/tableOfLists.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nip51/tableOfLists/tooltips/customAgGridTooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nip51/tableOfLists/tooltips/customAgGridTooltip.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nip51/viewLists/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nip51/viewLists/index.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nip51/viewLists/showKindButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nip51/viewLists/showKindButton.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nip51/viewLists/showTagsButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nip51/viewLists/showTagsButton.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nip51/viewLists/viewLists.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nip51/viewLists/viewLists.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/backup-directMessageConversation/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/backup-directMessageConversation/index.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/backup-directMessageConversation/message.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/backup-directMessageConversation/message.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/backup-directMessageConversation/messages.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/backup-directMessageConversation/messages.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/components/followButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/components/followButton.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/components/followCounts.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/components/followCounts.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/components/miniProfile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/components/miniProfile.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/components/post/actionButtons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/components/post/actionButtons.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/components/post/backup-invoiceQrCode.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/components/post/backup-invoiceQrCode.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/components/post/depr-invoiceQrCode_bolt11.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/components/post/depr-invoiceQrCode_bolt11.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/components/post/imageEmbed.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/components/post/imageEmbed.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/components/post/moreInfoTooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/components/post/moreInfoTooltip.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/components/post/post.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/components/post/post.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/components/post/reactionButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/components/post/reactionButton.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/components/post/replyToPost.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/components/post/replyToPost.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/components/post/repostButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/components/post/repostButton.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/components/post/techDetailsForNostrNerds.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/components/post/techDetailsForNostrNerds.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/components/post/youTubeEmbed.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/components/post/youTubeEmbed.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/components/post/zapButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/components/post/zapButton.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/components/postAsAgGridCell/actionButtons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/components/postAsAgGridCell/actionButtons.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/components/postAsAgGridCell/imageEmbed.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/components/postAsAgGridCell/imageEmbed.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/components/postAsAgGridCell/post.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/components/postAsAgGridCell/post.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/components/postAsAgGridCell/reactionButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/components/postAsAgGridCell/reactionButton.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/components/postAsAgGridCell/replyToPost.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/components/postAsAgGridCell/replyToPost.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/components/postAsAgGridCell/repostButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/components/postAsAgGridCell/repostButton.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/components/postAsAgGridCell/youTubeEmbed.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/components/postAsAgGridCell/youTubeEmbed.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/components/postAsAgGridCell/zapButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/components/postAsAgGridCell/zapButton.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/components/profile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/components/profile.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/createPost/backup createPost.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/createPost/backup createPost.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/createPost/createPost.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/createPost/createPost.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/createPost/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/createPost/index.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/createPost/techDetailsForNostrNerds.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/createPost/techDetailsForNostrNerds.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/directMessageConversation/dmConvoHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/directMessageConversation/dmConvoHeader.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/directMessageConversation/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/directMessageConversation/index.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/directMessageConversation/message.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/directMessageConversation/message.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/directMessageConversation/messages.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/directMessageConversation/messages.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/directMessageConversation/miniProfile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/directMessageConversation/miniProfile.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/directMessages-backup/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/directMessages-backup/index.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/directMessages-backup/messages-backup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/directMessages-backup/messages-backup.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/directMessages-backup/messages.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/directMessages-backup/messages.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/directMessages-backup/messagesReceived.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/directMessages-backup/messagesReceived.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/directMessages-backup/messagesSent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/directMessages-backup/messagesSent.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/directMessages/dmProfileButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/directMessages/dmProfileButton.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/directMessages/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/directMessages/index.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/directMessages/message.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/directMessages/message.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/directMessages/messages.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/directMessages/messages.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/directMessages/messagesPanel-backup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/directMessages/messagesPanel-backup.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/directMessages/messagesPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/directMessages/messagesPanel.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/directMessages/miniProfile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/directMessages/miniProfile.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/editMyProfile/editMyProfile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/editMyProfile/editMyProfile.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/editMyProfile/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/editMyProfile/index.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/editMyProfile/toggleMultiClientAccess.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/editMyProfile/toggleMultiClientAccess.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/followingList/followingList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/followingList/followingList.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/followingList/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/followingList/index.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/followingList/miniProfile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/followingList/miniProfile.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/followingList/temp-followingList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/followingList/temp-followingList.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/index.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/landingPage/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/landingPage/index.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/listeners/channelsListener/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/listeners/channelsListener/index.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/listeners/curatedListsListeners/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/listeners/curatedListsListeners/index.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/listeners/curatedListsListenersRedo/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/listeners/curatedListsListenersRedo/index.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/listeners/dmListener/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/listeners/dmListener/index.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/listeners/dmListener/messagesReceived.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/listeners/dmListener/messagesReceived.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/listeners/dmListener/messagesSent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/listeners/dmListener/messagesSent.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/listeners/grapevineListener/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/listeners/grapevineListener/index.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/listeners/myProfileListener/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/listeners/myProfileListener/index.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/listeners/nip51Listener/nip51.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/listeners/nip51Listener/nip51.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/listeners/profilesListener/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/listeners/profilesListener/index.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/mainFeed/components/sourceToggleSwitch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/mainFeed/components/sourceToggleSwitch.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/mainFeed/fetchPostsInBackground.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/mainFeed/fetchPostsInBackground.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/mainFeed/globalFeed-backup.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/mainFeed/globalFeed-backup.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/mainFeed/globalFeed.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/mainFeed/globalFeed.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/mainFeed/globalFeedDisplayFromRedux.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/mainFeed/globalFeedDisplayFromRedux.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/mainFeed/globalFeedFetchPostsInBackground.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/mainFeed/globalFeedFetchPostsInBackground.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/mainFeed/globalFeedShowLiveEvents.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/mainFeed/globalFeedShowLiveEvents.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/mainFeed/globalFeed_pre.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/mainFeed/globalFeed_pre.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/mainFeed/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/mainFeed/index.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/mainFeed/mainFeedTypeSelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/mainFeed/mainFeedTypeSelector.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/mainFeed/mainFeedTypeSelectorMinusLists.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/mainFeed/mainFeedTypeSelectorMinusLists.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/mainFeed/posts.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/mainFeed/posts.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/mainFeed/welcomeBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/mainFeed/welcomeBox.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/myFollowingList/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/myFollowingList/index.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/myFollowingList/miniProfile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/myFollowingList/miniProfile.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/myFollowingList/myFollowingList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/myFollowingList/myFollowingList.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/profile/composeRatingAndEvent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/profile/composeRatingAndEvent.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/profile/curatedChannelsBox/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/profile/curatedChannelsBox/index.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/profile/curatedListBox/createNewRating.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/profile/curatedListBox/createNewRating.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/profile/curatedListBox/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/profile/curatedListBox/index.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/profile/depr-followButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/profile/depr-followButton.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/profile/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/profile/index.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/profile/lowerPanelContent.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/profile/lowerPanelContent.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/profile/mainPageListeners/selectListener.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/profile/mainPageListeners/selectListener.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/profile/mainProfile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/profile/mainProfile.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/profile/panels/about.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/profile/panels/about.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/profile/panels/fetchPostsInBackground.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/profile/panels/fetchPostsInBackground.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/profile/panels/grapevine.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/profile/panels/grapevine.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/profile/panels/lists/allLists.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/profile/panels/lists/allLists.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/profile/panels/lists/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/profile/panels/lists/index.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/profile/panels/lists/kind10000Lists.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/profile/panels/lists/kind10000Lists.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/profile/panels/lists/kind10001Lists.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/profile/panels/lists/kind10001Lists.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/profile/panels/lists/kind30000Lists.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/profile/panels/lists/kind30000Lists.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/profile/panels/lists/kind30001Lists.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/profile/panels/lists/kind30001Lists.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/profile/panels/lists/list.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/profile/panels/lists/list.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/profile/panels/lists/miniProfile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/profile/panels/lists/miniProfile.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/profile/panels/posts-backup.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/profile/panels/posts-backup.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/profile/panels/posts.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/profile/panels/posts.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/profile/panels/ratings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/profile/panels/ratings.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/profile/panels/scores.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/profile/panels/scores.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/profile/profile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/profile/profile.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/profile/relaysGrapevine/followRelaysButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/profile/relaysGrapevine/followRelaysButton.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/profile/relaysGrapevine/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/profile/relaysGrapevine/index.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/profile/techDetailsForNostrNerds1.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/profile/techDetailsForNostrNerds1.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/profile/techDetailsForNostrNerds2.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/profile/techDetailsForNostrNerds2.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/profile/userGrapevinePanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/profile/userGrapevinePanel.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/profile/userPanel.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/profile/userPanel.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/searchForUser/index-backup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/searchForUser/index-backup.js -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/searchForUser/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/searchForUser/index.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/searchForUser/search.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/searchForUser/search.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/settings/channelManagement/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/settings/channelManagement/index.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/settings/channelManagement/list/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/settings/channelManagement/list/index.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/settings/channelManagement/list/list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/settings/channelManagement/list/list.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/settings/deprecated-miniProfile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/settings/deprecated-miniProfile.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/settings/extendedFollowing/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/settings/extendedFollowing/index.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/settings/grapevine/grToggleSwitch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/settings/grapevine/grToggleSwitch.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/settings/grapevine/grapevineIsActive.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/settings/grapevine/grapevineIsActive.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/settings/grapevine/grapevineIsInactive.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/settings/grapevine/grapevineIsInactive.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/settings/grapevine/grapevineSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/settings/grapevine/grapevineSettings.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/settings/grapevine/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/settings/grapevine/index.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/settings/grapevine/resetDefaultsButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/settings/grapevine/resetDefaultsButton.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/settings/grapevine/topPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/settings/grapevine/topPanel.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/settings/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/settings/index.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/settings/mainFeed/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/settings/mainFeed/index.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/settings/mainFeed/mainFeedSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/settings/mainFeed/mainFeedSettings.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/settings/mainFeed/sinceWhenSelectors.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/settings/mainFeed/sinceWhenSelectors.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/settings/nostrapp/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/settings/nostrapp/index.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/settings/nostrapp/nostrapp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/settings/nostrapp/nostrapp.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/settings/profileManagement/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/settings/profileManagement/index.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/settings/profiles/allCurrentProfiles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/settings/profiles/allCurrentProfiles.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/settings/profiles/enterExternalKeys.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/settings/profiles/enterExternalKeys.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/settings/profiles/generateNewKeys.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/settings/profiles/generateNewKeys.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/settings/profiles/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/settings/profiles/index.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/settings/relays/addNewRelay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/settings/relays/addNewRelay.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/settings/relays/endorseAsRelayPickerList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/settings/relays/endorseAsRelayPickerList.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/settings/relays/endorseRelayMessage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/settings/relays/endorseRelayMessage.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/settings/relays/followingForRelays.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/settings/relays/followingForRelays.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/settings/relays/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/settings/relays/index.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/settings/relays/miniProfile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/settings/relays/miniProfile.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/settings/relays/relays.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/settings/relays/relays.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/settings/relays/relaysAutoUpdateControls.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/settings/relays/relaysAutoUpdateControls.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/settings/relaysV2/addNewRelay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/settings/relaysV2/addNewRelay.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/settings/relaysV2/curatedRelaysList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/settings/relaysV2/curatedRelaysList.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/settings/relaysV2/endorseRelayMessage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/settings/relaysV2/endorseRelayMessage.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/settings/relaysV2/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/settings/relaysV2/index.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/settings/relaysV2/miniProfile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/settings/relaysV2/miniProfile.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/settings/relaysV2/relays.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/settings/relaysV2/relays.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/settings/relaysV2/relaysAutoUpdateControls.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/settings/relaysV2/relaysAutoUpdateControls.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/settings/relaysV2/singleUserRelaysList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/settings/relaysV2/singleUserRelaysList.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/settings/sql/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/settings/sql/index.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/thread/backup-thread.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/thread/backup-thread.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/thread/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/thread/index.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/thread/techDetailsForNostrNerds.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/thread/techDetailsForNostrNerds.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/thread/thread.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/thread/thread.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/userRelaysList/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/userRelaysList/index.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/userRelaysList/relaysList copy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/userRelaysList/relaysList copy.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/userRelaysList/relaysList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/userRelaysList/relaysList.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/viewMyProfile/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/viewMyProfile/index.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/viewMyProfile/techDetailsForNostrNerds1.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/viewMyProfile/techDetailsForNostrNerds1.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/viewMyProfile/techDetailsForNostrNerds2.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/viewMyProfile/techDetailsForNostrNerds2.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/viewMyProfile/techDetailsForNostrNerds3.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/viewMyProfile/techDetailsForNostrNerds3.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/viewMyProfile/techDetailsForNostrNerds4.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/viewMyProfile/techDetailsForNostrNerds4.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/viewMyProfile/toggleMultiClientAccess.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/viewMyProfile/toggleMultiClientAccess.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/nostr/viewMyProfile/viewMyProfile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/nostr/viewMyProfile/viewMyProfile.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/prettyGood/about/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/prettyGood/about/index.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/prettyGood/about/threadedTapestry/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/prettyGood/about/threadedTapestry/index.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/prettyGood/apps.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/prettyGood/apps.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/prettyGood/faq/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/prettyGood/faq/index.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/prettyGood/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/prettyGood/index.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/prettyGood/profile/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/prettyGood/profile/index.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/prettyGood/settings/allAppSettingsNav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/prettyGood/settings/allAppSettingsNav.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/prettyGood/settings/generalSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/prettyGood/settings/generalSettings.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/prettyGood/settings/helloWorld/agGridTable/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/prettyGood/settings/helloWorld/agGridTable/index.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/prettyGood/settings/helloWorld/dataTables/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/prettyGood/settings/helloWorld/dataTables/index.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/prettyGood/settings/helloWorld/getRequests/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/prettyGood/settings/helloWorld/getRequests/index.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/prettyGood/settings/helloWorld/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/prettyGood/settings/helloWorld/index.jsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/prettyGood/settings/helloWorld/sandbox1/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/prettyGood/settings/helloWorld/sandbox1/index.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/prettyGood/settings/helloWorld/sandbox1/sandbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/prettyGood/settings/helloWorld/sandbox1/sandbox.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/prettyGood/settings/helloWorld/sandbox2/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/prettyGood/settings/helloWorld/sandbox2/index.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/prettyGood/settings/helloWorld/sandbox2/sandbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/prettyGood/settings/helloWorld/sandbox2/sandbox.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/prettyGood/settings/helloWorld/sandbox3/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/prettyGood/settings/helloWorld/sandbox3/index.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/prettyGood/settings/helloWorld/sandbox3/sandbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/prettyGood/settings/helloWorld/sandbox3/sandbox.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/prettyGood/settings/helloWorld/tooltipDemo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/prettyGood/settings/helloWorld/tooltipDemo.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/prettyGood/settings/helloWorld/visjs/graphic.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/prettyGood/settings/helloWorld/visjs/graphic.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/prettyGood/settings/helloWorld/visjs/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/prettyGood/settings/helloWorld/visjs/index.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/prettyGood/settings/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/prettyGood/settings/index.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/prettyGood/settings/networksAndDatabases/nostr.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/prettyGood/settings/networksAndDatabases/nostr.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/prettyGood/settings/networksAndDatabases/sql/sql.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/prettyGood/settings/networksAndDatabases/sql/sql.tsx -------------------------------------------------------------------------------- /src/renderer/window1/apps/prettyGood/settings/redux.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/apps/prettyGood/settings/redux.jsx -------------------------------------------------------------------------------- /src/renderer/window1/assets/Grapevine_Logo03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/assets/Grapevine_Logo03.png -------------------------------------------------------------------------------- /src/renderer/window1/assets/blankAvatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/assets/blankAvatar.png -------------------------------------------------------------------------------- /src/renderer/window1/assets/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/assets/minus.png -------------------------------------------------------------------------------- /src/renderer/window1/assets/nostr_logo_prpl.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/assets/nostr_logo_prpl.svg -------------------------------------------------------------------------------- /src/renderer/window1/assets/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/assets/plus.png -------------------------------------------------------------------------------- /src/renderer/window1/components/backButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/components/backButton.tsx -------------------------------------------------------------------------------- /src/renderer/window1/components/grToggleSwitchT2-deprecated.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/components/grToggleSwitchT2-deprecated.tsx -------------------------------------------------------------------------------- /src/renderer/window1/components/grToggleSwitchT2.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/components/grToggleSwitchT2.tsx -------------------------------------------------------------------------------- /src/renderer/window1/components/toggleSwitch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/components/toggleSwitch.tsx -------------------------------------------------------------------------------- /src/renderer/window1/components/toggleSwitchSmall.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/components/toggleSwitchSmall.tsx -------------------------------------------------------------------------------- /src/renderer/window1/components/toggleSwitchT2.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/components/toggleSwitchT2.tsx -------------------------------------------------------------------------------- /src/renderer/window1/const/contextDAG.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/const/contextDAG.tsx -------------------------------------------------------------------------------- /src/renderer/window1/const/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/const/index.tsx -------------------------------------------------------------------------------- /src/renderer/window1/const/tooltipContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/const/tooltipContent.tsx -------------------------------------------------------------------------------- /src/renderer/window1/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/css/app.css -------------------------------------------------------------------------------- /src/renderer/window1/css/conceptGraph/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/css/conceptGraph/index.css -------------------------------------------------------------------------------- /src/renderer/window1/css/contentCuration/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/css/contentCuration/index.css -------------------------------------------------------------------------------- /src/renderer/window1/css/curatedLists/acceptVsReject.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/css/curatedLists/acceptVsReject.css -------------------------------------------------------------------------------- /src/renderer/window1/css/curatedLists/endorsements.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/css/curatedLists/endorsements.css -------------------------------------------------------------------------------- /src/renderer/window1/css/curatedLists/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/css/curatedLists/index.css -------------------------------------------------------------------------------- /src/renderer/window1/css/customDataTables.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/css/customDataTables.css -------------------------------------------------------------------------------- /src/renderer/window1/css/dataTables/bulma.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/css/dataTables/bulma.css -------------------------------------------------------------------------------- /src/renderer/window1/css/dataTables/dataTables.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/css/dataTables/dataTables.css -------------------------------------------------------------------------------- /src/renderer/window1/css/depr-devMode2Off.css: -------------------------------------------------------------------------------- 1 | .devMode2Class { 2 | display: none; 3 | } 4 | -------------------------------------------------------------------------------- /src/renderer/window1/css/depr-devMode2On.css: -------------------------------------------------------------------------------- 1 | .devMode2Class {} 2 | -------------------------------------------------------------------------------- /src/renderer/window1/css/eBooks/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/css/eBooks/index.css -------------------------------------------------------------------------------- /src/renderer/window1/css/grapevine/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/css/grapevine/index.css -------------------------------------------------------------------------------- /src/renderer/window1/css/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/css/images/favicon.ico -------------------------------------------------------------------------------- /src/renderer/window1/css/images/sort_asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/css/images/sort_asc.png -------------------------------------------------------------------------------- /src/renderer/window1/css/images/sort_asc_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/css/images/sort_asc_disabled.png -------------------------------------------------------------------------------- /src/renderer/window1/css/images/sort_both.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/css/images/sort_both.png -------------------------------------------------------------------------------- /src/renderer/window1/css/images/sort_desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/css/images/sort_desc.png -------------------------------------------------------------------------------- /src/renderer/window1/css/images/sort_desc_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/css/images/sort_desc_disabled.png -------------------------------------------------------------------------------- /src/renderer/window1/css/mastheads.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/css/mastheads.css -------------------------------------------------------------------------------- /src/renderer/window1/css/navbars.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/css/navbars.css -------------------------------------------------------------------------------- /src/renderer/window1/css/nostr/app-depr.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/css/nostr/app-depr.css -------------------------------------------------------------------------------- /src/renderer/window1/css/nostr/directMessaging.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/css/nostr/directMessaging.css -------------------------------------------------------------------------------- /src/renderer/window1/css/nostr/editMyProfile.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/css/nostr/editMyProfile.css -------------------------------------------------------------------------------- /src/renderer/window1/css/nostr/feed.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/css/nostr/feed.css -------------------------------------------------------------------------------- /src/renderer/window1/css/nostr/follows.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/css/nostr/follows.css -------------------------------------------------------------------------------- /src/renderer/window1/css/nostr/grapevine.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/css/nostr/grapevine.css -------------------------------------------------------------------------------- /src/renderer/window1/css/nostr/grapevineSettings.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/css/nostr/grapevineSettings.css -------------------------------------------------------------------------------- /src/renderer/window1/css/nostr/grapevineToggleSwitch.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/css/nostr/grapevineToggleSwitch.css -------------------------------------------------------------------------------- /src/renderer/window1/css/nostr/grapevineToggleSwitchSmall.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/css/nostr/grapevineToggleSwitchSmall.css -------------------------------------------------------------------------------- /src/renderer/window1/css/nostr/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/css/nostr/index.css -------------------------------------------------------------------------------- /src/renderer/window1/css/nostr/mastheads-depr.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/css/nostr/mastheads-depr.css -------------------------------------------------------------------------------- /src/renderer/window1/css/nostr/misc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/css/nostr/misc.css -------------------------------------------------------------------------------- /src/renderer/window1/css/nostr/myProfile.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/css/nostr/myProfile.css -------------------------------------------------------------------------------- /src/renderer/window1/css/nostr/navbars-depr.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/css/nostr/navbars-depr.css -------------------------------------------------------------------------------- /src/renderer/window1/css/nostr/newPost.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/css/nostr/newPost.css -------------------------------------------------------------------------------- /src/renderer/window1/css/nostr/nfgGraphic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/css/nostr/nfgGraphic.css -------------------------------------------------------------------------------- /src/renderer/window1/css/nostr/profileKeys.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/css/nostr/profileKeys.css -------------------------------------------------------------------------------- /src/renderer/window1/css/nostr/settings.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/css/nostr/settings.css -------------------------------------------------------------------------------- /src/renderer/window1/css/nostr/toggleSwitch1--depr.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/css/nostr/toggleSwitch1--depr.css -------------------------------------------------------------------------------- /src/renderer/window1/css/nostr/userList.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/css/nostr/userList.css -------------------------------------------------------------------------------- /src/renderer/window1/css/nostr/userProfile.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/css/nostr/userProfile.css -------------------------------------------------------------------------------- /src/renderer/window1/css/nostr/youTubeEmbed.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/css/nostr/youTubeEmbed.css -------------------------------------------------------------------------------- /src/renderer/window1/css/prettyGood/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/css/prettyGood/index.css -------------------------------------------------------------------------------- /src/renderer/window1/css/rangeSliders.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/css/rangeSliders.css -------------------------------------------------------------------------------- /src/renderer/window1/errorBoundary.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/errorBoundary.tsx -------------------------------------------------------------------------------- /src/renderer/window1/index.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/index.ejs -------------------------------------------------------------------------------- /src/renderer/window1/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/index.tsx -------------------------------------------------------------------------------- /src/renderer/window1/landingPage/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/landingPage/index.tsx -------------------------------------------------------------------------------- /src/renderer/window1/lib/conceptGraph/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/lib/conceptGraph/index.tsx -------------------------------------------------------------------------------- /src/renderer/window1/lib/curatedLists/extractNodesAndEdgesRedo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/lib/curatedLists/extractNodesAndEdgesRedo.tsx -------------------------------------------------------------------------------- /src/renderer/window1/lib/curatedLists/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/lib/curatedLists/index.tsx -------------------------------------------------------------------------------- /src/renderer/window1/lib/grapevine/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/lib/grapevine/index.tsx -------------------------------------------------------------------------------- /src/renderer/window1/lib/ipfs/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/lib/ipfs/index.tsx -------------------------------------------------------------------------------- /src/renderer/window1/lib/nip51/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/lib/nip51/index.tsx -------------------------------------------------------------------------------- /src/renderer/window1/lib/nostr/eventValidation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/lib/nostr/eventValidation.tsx -------------------------------------------------------------------------------- /src/renderer/window1/lib/nostr/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/lib/nostr/index.tsx -------------------------------------------------------------------------------- /src/renderer/window1/lib/pg/asyncLightningPayReq.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/lib/pg/asyncLightningPayReq.tsx -------------------------------------------------------------------------------- /src/renderer/window1/lib/pg/asyncLnurlDecode.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/lib/pg/asyncLnurlDecode.tsx -------------------------------------------------------------------------------- /src/renderer/window1/lib/pg/asyncSql.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/lib/pg/asyncSql.tsx -------------------------------------------------------------------------------- /src/renderer/window1/lib/pg/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/lib/pg/index.tsx -------------------------------------------------------------------------------- /src/renderer/window1/lib/pg/sql/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/lib/pg/sql/index.tsx -------------------------------------------------------------------------------- /src/renderer/window1/lib/pg/ui.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/lib/pg/ui.tsx -------------------------------------------------------------------------------- /src/renderer/window1/lib/startup-deprecated/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/lib/startup-deprecated/index.tsx -------------------------------------------------------------------------------- /src/renderer/window1/lib/visjs/index.tsx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/renderer/window1/lib/visjs/visjs-style.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/lib/visjs/visjs-style.tsx -------------------------------------------------------------------------------- /src/renderer/window1/mastheads/askNostrMasthead.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/mastheads/askNostrMasthead.tsx -------------------------------------------------------------------------------- /src/renderer/window1/mastheads/cgMasthead.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/mastheads/cgMasthead.jsx -------------------------------------------------------------------------------- /src/renderer/window1/mastheads/curatedListsListenersToggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/mastheads/curatedListsListenersToggle.tsx -------------------------------------------------------------------------------- /src/renderer/window1/mastheads/curatedListsMasthead.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/mastheads/curatedListsMasthead.jsx -------------------------------------------------------------------------------- /src/renderer/window1/mastheads/eBooksMasthead.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/mastheads/eBooksMasthead.jsx -------------------------------------------------------------------------------- /src/renderer/window1/mastheads/grapevineMasthead.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/mastheads/grapevineMasthead.jsx -------------------------------------------------------------------------------- /src/renderer/window1/mastheads/nip51Masthead.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/mastheads/nip51Masthead.jsx -------------------------------------------------------------------------------- /src/renderer/window1/mastheads/nostrMasthead.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/mastheads/nostrMasthead.tsx -------------------------------------------------------------------------------- /src/renderer/window1/mastheads/pgMasthead.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/mastheads/pgMasthead.jsx -------------------------------------------------------------------------------- /src/renderer/window1/mastheads/relaysStatus.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/mastheads/relaysStatus.tsx -------------------------------------------------------------------------------- /src/renderer/window1/mastheads/tapestryStatus.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/mastheads/tapestryStatus.tsx -------------------------------------------------------------------------------- /src/renderer/window1/navbars/leftNavbar1/askNostrNavbar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/navbars/leftNavbar1/askNostrNavbar.jsx -------------------------------------------------------------------------------- /src/renderer/window1/navbars/leftNavbar1/cgNavbar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/navbars/leftNavbar1/cgNavbar.jsx -------------------------------------------------------------------------------- /src/renderer/window1/navbars/leftNavbar1/curatedListsNavbar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/navbars/leftNavbar1/curatedListsNavbar.jsx -------------------------------------------------------------------------------- /src/renderer/window1/navbars/leftNavbar1/eBooksNavbar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/navbars/leftNavbar1/eBooksNavbar.jsx -------------------------------------------------------------------------------- /src/renderer/window1/navbars/leftNavbar1/grapevineNavbar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/navbars/leftNavbar1/grapevineNavbar.jsx -------------------------------------------------------------------------------- /src/renderer/window1/navbars/leftNavbar1/nostrNavbar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/navbars/leftNavbar1/nostrNavbar.jsx -------------------------------------------------------------------------------- /src/renderer/window1/navbars/leftNavbar1/pgNavbar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/navbars/leftNavbar1/pgNavbar.jsx -------------------------------------------------------------------------------- /src/renderer/window1/navbars/leftNavbar1/universalNavbar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/navbars/leftNavbar1/universalNavbar.jsx -------------------------------------------------------------------------------- /src/renderer/window1/navbars/leftNavbar2/askNostr/home.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/navbars/leftNavbar2/askNostr/home.jsx -------------------------------------------------------------------------------- /src/renderer/window1/navbars/leftNavbar2/askNostr/settings.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/navbars/leftNavbar2/askNostr/settings.jsx -------------------------------------------------------------------------------- /src/renderer/window1/navbars/leftNavbar2/conceptGraph/home.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/navbars/leftNavbar2/conceptGraph/home.jsx -------------------------------------------------------------------------------- /src/renderer/window1/navbars/leftNavbar2/conceptGraph/profile.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/navbars/leftNavbar2/conceptGraph/profile.jsx -------------------------------------------------------------------------------- /src/renderer/window1/navbars/leftNavbar2/conceptGraph/settings.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/navbars/leftNavbar2/conceptGraph/settings.jsx -------------------------------------------------------------------------------- /src/renderer/window1/navbars/leftNavbar2/curatedLists/contentCuration/home.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/navbars/leftNavbar2/curatedLists/contentCuration/home.tsx -------------------------------------------------------------------------------- /src/renderer/window1/navbars/leftNavbar2/curatedLists/home.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/navbars/leftNavbar2/curatedLists/home.jsx -------------------------------------------------------------------------------- /src/renderer/window1/navbars/leftNavbar2/curatedLists/instance.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/navbars/leftNavbar2/curatedLists/instance.jsx -------------------------------------------------------------------------------- /src/renderer/window1/navbars/leftNavbar2/curatedLists/settings.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/navbars/leftNavbar2/curatedLists/settings.jsx -------------------------------------------------------------------------------- /src/renderer/window1/navbars/leftNavbar2/curatedLists/singleListCurators.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/navbars/leftNavbar2/curatedLists/singleListCurators.jsx -------------------------------------------------------------------------------- /src/renderer/window1/navbars/leftNavbar2/curatedLists/singleListInstances.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/navbars/leftNavbar2/curatedLists/singleListInstances.jsx -------------------------------------------------------------------------------- /src/renderer/window1/navbars/leftNavbar2/curatedLists/viewList.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/navbars/leftNavbar2/curatedLists/viewList.jsx -------------------------------------------------------------------------------- /src/renderer/window1/navbars/leftNavbar2/curatedLists/viewLists.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/navbars/leftNavbar2/curatedLists/viewLists.tsx -------------------------------------------------------------------------------- /src/renderer/window1/navbars/leftNavbar2/eBooks/book.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/navbars/leftNavbar2/eBooks/book.jsx -------------------------------------------------------------------------------- /src/renderer/window1/navbars/leftNavbar2/eBooks/home.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/navbars/leftNavbar2/eBooks/home.jsx -------------------------------------------------------------------------------- /src/renderer/window1/navbars/leftNavbar2/eBooks/settings.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/navbars/leftNavbar2/eBooks/settings.jsx -------------------------------------------------------------------------------- /src/renderer/window1/navbars/leftNavbar2/emptyNavbar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/navbars/leftNavbar2/emptyNavbar.jsx -------------------------------------------------------------------------------- /src/renderer/window1/navbars/leftNavbar2/grapevine/home.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/navbars/leftNavbar2/grapevine/home.jsx -------------------------------------------------------------------------------- /src/renderer/window1/navbars/leftNavbar2/grapevine/listCuration.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/navbars/leftNavbar2/grapevine/listCuration.jsx -------------------------------------------------------------------------------- /src/renderer/window1/navbars/leftNavbar2/grapevine/profile.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/navbars/leftNavbar2/grapevine/profile.jsx -------------------------------------------------------------------------------- /src/renderer/window1/navbars/leftNavbar2/grapevine/settings.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/navbars/leftNavbar2/grapevine/settings.jsx -------------------------------------------------------------------------------- /src/renderer/window1/navbars/leftNavbar2/nip51/home.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/navbars/leftNavbar2/nip51/home.jsx -------------------------------------------------------------------------------- /src/renderer/window1/navbars/leftNavbar2/nostr/profile.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/navbars/leftNavbar2/nostr/profile.jsx -------------------------------------------------------------------------------- /src/renderer/window1/navbars/leftNavbar2/nostr/settings.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/navbars/leftNavbar2/nostr/settings.jsx -------------------------------------------------------------------------------- /src/renderer/window1/navbars/leftNavbar2/prettyGood/about.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/navbars/leftNavbar2/prettyGood/about.jsx -------------------------------------------------------------------------------- /src/renderer/window1/navbars/leftNavbar2/prettyGood/helloWorld.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/navbars/leftNavbar2/prettyGood/helloWorld.jsx -------------------------------------------------------------------------------- /src/renderer/window1/navbars/leftNavbar2/prettyGood/home.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/navbars/leftNavbar2/prettyGood/home.jsx -------------------------------------------------------------------------------- /src/renderer/window1/navbars/leftNavbar2/prettyGood/profile.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/navbars/leftNavbar2/prettyGood/profile.jsx -------------------------------------------------------------------------------- /src/renderer/window1/navbars/leftNavbar2/prettyGood/settings.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/navbars/leftNavbar2/prettyGood/settings.jsx -------------------------------------------------------------------------------- /src/renderer/window1/preload.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/preload.d.ts -------------------------------------------------------------------------------- /src/renderer/window1/redux/features/counter/helloWorld.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/redux/features/counter/helloWorld.tsx -------------------------------------------------------------------------------- /src/renderer/window1/redux/features/counter/slice.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/redux/features/counter/slice.tsx -------------------------------------------------------------------------------- /src/renderer/window1/redux/features/curatedChannels/channels/helloWorld.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/redux/features/curatedChannels/channels/helloWorld.tsx -------------------------------------------------------------------------------- /src/renderer/window1/redux/features/curatedChannels/channels/slice.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/redux/features/curatedChannels/channels/slice.tsx -------------------------------------------------------------------------------- /src/renderer/window1/redux/features/curatedChannels/settings/slice.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/redux/features/curatedChannels/settings/slice.tsx -------------------------------------------------------------------------------- /src/renderer/window1/redux/features/curatedLists/lists/helloWorld.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/redux/features/curatedLists/lists/helloWorld.tsx -------------------------------------------------------------------------------- /src/renderer/window1/redux/features/curatedLists/lists/slice.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/redux/features/curatedLists/lists/slice.tsx -------------------------------------------------------------------------------- /src/renderer/window1/redux/features/curatedLists/settings/slice.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/redux/features/curatedLists/settings/slice.tsx -------------------------------------------------------------------------------- /src/renderer/window1/redux/features/eBooks/slice.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/redux/features/eBooks/slice.tsx -------------------------------------------------------------------------------- /src/renderer/window1/redux/features/grapevine/compositeTrustScores/slice.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/redux/features/grapevine/compositeTrustScores/slice.tsx -------------------------------------------------------------------------------- /src/renderer/window1/redux/features/grapevine/controlPanelSettings/slice.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/redux/features/grapevine/controlPanelSettings/slice.tsx -------------------------------------------------------------------------------- /src/renderer/window1/redux/features/grapevine/listCuration/slice.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/redux/features/grapevine/listCuration/slice.tsx -------------------------------------------------------------------------------- /src/renderer/window1/redux/features/nip51/lists/slice.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/redux/features/nip51/lists/slice.tsx -------------------------------------------------------------------------------- /src/renderer/window1/redux/features/nip51/settings/slice.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/redux/features/nip51/settings/slice.tsx -------------------------------------------------------------------------------- /src/renderer/window1/redux/features/nostr/directMessages/helloWorld.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/redux/features/nostr/directMessages/helloWorld.tsx -------------------------------------------------------------------------------- /src/renderer/window1/redux/features/nostr/directMessages/slice.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/redux/features/nostr/directMessages/slice.tsx -------------------------------------------------------------------------------- /src/renderer/window1/redux/features/nostr/myNostrProfile/MyProfile-depr.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/redux/features/nostr/myNostrProfile/MyProfile-depr.tsx -------------------------------------------------------------------------------- /src/renderer/window1/redux/features/nostr/myNostrProfile/slice.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/redux/features/nostr/myNostrProfile/slice.tsx -------------------------------------------------------------------------------- /src/renderer/window1/redux/features/nostr/notes/helloWorld.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/redux/features/nostr/notes/helloWorld.tsx -------------------------------------------------------------------------------- /src/renderer/window1/redux/features/nostr/notes/slice.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/redux/features/nostr/notes/slice.tsx -------------------------------------------------------------------------------- /src/renderer/window1/redux/features/nostr/profiles/helloWorld.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/redux/features/nostr/profiles/helloWorld.tsx -------------------------------------------------------------------------------- /src/renderer/window1/redux/features/nostr/profiles/slice.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/redux/features/nostr/profiles/slice.tsx -------------------------------------------------------------------------------- /src/renderer/window1/redux/features/nostr/settings/defaults.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/redux/features/nostr/settings/defaults.tsx -------------------------------------------------------------------------------- /src/renderer/window1/redux/features/nostr/settings/helloWorld.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/redux/features/nostr/settings/helloWorld.tsx -------------------------------------------------------------------------------- /src/renderer/window1/redux/features/nostr/settings/slice.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/redux/features/nostr/settings/slice.tsx -------------------------------------------------------------------------------- /src/renderer/window1/redux/features/posts-deprecated/EditPostForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/redux/features/posts-deprecated/EditPostForm.tsx -------------------------------------------------------------------------------- /src/renderer/window1/redux/features/posts-deprecated/PostsList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/redux/features/posts-deprecated/PostsList.tsx -------------------------------------------------------------------------------- /src/renderer/window1/redux/features/posts-deprecated/SinglePostPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/redux/features/posts-deprecated/SinglePostPage.tsx -------------------------------------------------------------------------------- /src/renderer/window1/redux/features/posts-deprecated/TimeAgo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/redux/features/posts-deprecated/TimeAgo.tsx -------------------------------------------------------------------------------- /src/renderer/window1/redux/features/posts-deprecated/postsSlice.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/redux/features/posts-deprecated/postsSlice.tsx -------------------------------------------------------------------------------- /src/renderer/window1/redux/features/prettyGood/settings/slice.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/redux/features/prettyGood/settings/slice.tsx -------------------------------------------------------------------------------- /src/renderer/window1/redux/features/startup/slice.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/redux/features/startup/slice.tsx -------------------------------------------------------------------------------- /src/renderer/window1/redux/store/store.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window1/redux/store/store.tsx -------------------------------------------------------------------------------- /src/renderer/window2/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window2/App.tsx -------------------------------------------------------------------------------- /src/renderer/window2/App2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window2/App2.css -------------------------------------------------------------------------------- /src/renderer/window2/index.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window2/index.ejs -------------------------------------------------------------------------------- /src/renderer/window2/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window2/index.tsx -------------------------------------------------------------------------------- /src/renderer/window2/preload.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window2/preload.d.ts -------------------------------------------------------------------------------- /src/renderer/window3/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window3/App.tsx -------------------------------------------------------------------------------- /src/renderer/window3/App3.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window3/App3.css -------------------------------------------------------------------------------- /src/renderer/window3/index.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window3/index.ejs -------------------------------------------------------------------------------- /src/renderer/window3/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window3/index.tsx -------------------------------------------------------------------------------- /src/renderer/window3/preload.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/src/renderer/window3/preload.d.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wds4/pretty-good/HEAD/tsconfig.json --------------------------------------------------------------------------------