diff --git a/project.task.yaml b/project.task.yaml index e191f34..6312fb5 100644 --- a/project.task.yaml +++ b/project.task.yaml @@ -5,43 +5,32 @@ tasks: - 40 notifications : - push, where we trigger a ServiceWorker(?) in the app to reach out and check for new data assignee:matthew +- .5 add project ID to the URL of the project-view, to make a project publicly-accessible +- .5 add link to further project / people when a project pays ahead +- .5 show checkbox on "gave" modal to say that user is recipient (so it could be uncheked for someone unspecified) + - .5 allow to manage their notifications even without an identity - .5 bug - on the discover page, enter a search term and search and see a duplicate project show at the end of the list - 01 Ensure each action sent to the server has a confirmation - eg registration (ie a toast something that dismisses after 5-10s) - -- Home Feed & Quick Give screen : - - 01 save the feed-viewed status in settings storage ("afterQuery") - - 01 quick action - send action, maybe choose via canvas tool - - SEE: https://github.com/konvajs/vue-konva - -- 24 Move to Vite assignee:matthew - - .3 fix the Project-location-selection map display to not show on top of bottom icons (and any other UI tweaks on the map flow) assignee-group:ui -- .5 switch so DiscoverView shows anywhere by default, and no number unless search is done (and maybe a better filter UI, including "mine" to consolidate with ProjectsView) + - .5 Add infinite scroll to gifts on the home page - .5 bug - search for "Safari" does not find the project, but if already on the "Anywhere" tab it shows all - .2 figure out why endorser-mobile search doesn't find recently created PlanAction - .1 when creating a plan, select location and then make sure you can deselect on Android -- .5 add link to further project / people when a project pays ahead -- .5 add project ID to the URL of the project-view, to make a project publicly-accessible - .5 fix where user 0 sees no txns from user 1 on contacts page but sees them on list page -- .2 on ProjectViewView, show different messages for "to" and "from" sections if none exist -- .2 fix rate limit verbiage (with the new one-per-day allowance) assignee:trent -- .1 remove the logic to exclude beforeId in list of plans after server has commit 26b25af605e715600d4f12b6416ed9fd7142d164 +- .1 remove the logic to exclude beforeId in list of plans after server has commit 26b25af605e715600d4f12b6416ed9fd7142d164 assignee:trent - .2 in SeedBackupView, don't load the mnemonic and keep it in memory; only load it when they click "show" -- .1 Make give description text box into something that expands as they type -- .1 Make contact info specific to Time Safari - rather pointing at CommunityCred.org - Discuss whether the remaining tasks are worthwhile before MVP release. +- .1 Make give description text box into something that expands as they type? - 04 allow user to download claims, mine + ones I can see about me from others -- 02 allow user to create new DIDs from the same seed phrase (ie. increment derivation path) -- .5 on ProjectView page, show immediate feedback when a gift is given (on list?) -- and consider the same for Home & Contacts pages - .5 customize favicon assignee-group:ui - .2 Show a warning if both giver and recipient are the same (but still allow?) - 01 Would it look better to shrink the buttons on many pages so they don't expand to the width of the screen? assignee-group:ui - .5 Display a more appealing confirmation on the map when erasing the marker -- .5 make a VC details page +- .5 make a VC details page, or link to endorser.ch - .1 Add units or different icon to the coins (to distinguish $, BTC, hours, etc) - .5 include the hash of the latest commit on help page next to version - .5 remove references to localStorage for projectId (now that it's pulling from the path) @@ -53,7 +42,7 @@ tasks: - stats v1 : - 01 show numeric stats - - 04 show different graphic for projects vs people on world + - 04 show different graphic for projects vs people (gnome?) on world - 01 link to world for specific stats - .5 don't load another instance of a bush if it already exists - maybe - allow type annotations in World.js & landmarks.js (since we get this error - "Types are not supported by current JavaScript version") @@ -71,7 +60,9 @@ tasks: blocks: ref:https://raw.githubusercontent.com/trentlarson/lives-of-gifts/master/project.yaml#kickstarter%20for%20time - .5 show seed phrase in a QR code for transfer to another device +- .5 on DiscoverView, switch to a filter UI (eg. just from friend +- 24 Move to Vite - 32 accept images for projects - 32 accept images for contacts @@ -101,11 +92,10 @@ tasks: - Multiple identities -- Peer DID - -- DIDComm - -- Write to or read from a different ledger (eg. private ACDC, attest.sh) +- Support KERI AIDs +- Support Peer DIDs +- Support messaging through DIDComm +- Write to or read from a different ledger (eg. private ACDC, EAS & attest.sh) - Do we want split first name & last name? @@ -113,6 +103,7 @@ tasks: - pull, w/ scheduled runs - 01 On nearby search, if user starts changing their box but cancels and goes back to the map it is zoomed far out. Fix to fit the box better. +- 16 From the home screen, make the quick action even easier. log: - videos for multiple identities https://youtu.be/p8L87AeD76w and for adding time to contacts https://youtu.be/7Yylczevp10 done:2023-03-29 diff --git a/src/views/DiscoverView.vue b/src/views/DiscoverView.vue index 6612a02..891a62a 100644 --- a/src/views/DiscoverView.vue +++ b/src/views/DiscoverView.vue @@ -41,7 +41,7 @@ Nearby {{ localCount }}{{ localCount > -1 ? localCount : "?" }} @@ -59,7 +59,7 @@ Anywhere {{ remoteCount }}{{ remoteCount > -1 ? remoteCount : "?" }} @@ -158,8 +158,8 @@ export default class DiscoverView extends Vue { projects: ProjectData[] = []; isLocalActive = true; isRemoteActive = false; - localCount = 0; - remoteCount = 0; + localCount = -1; + remoteCount = -1; searchBox: { name: string; bbox: BoundingBox } | null = null; isLoading = false;