-
Notifications
You must be signed in to change notification settings - Fork 324
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: replace pinning with import to mfs #997
Conversation
This changes the way IPFS content is kept around. Instead of using low level pins we copy the item to MFS, unifying experience to match recent changes in ipfs-webui v2.12 and ipfs-desktop v0.15.0 This also removed page-action, because it was Firefox-specific feature and made maintenance and testing more difficult (now we have same UX in all browsers). Closes #742 Closes #888 Closes ipfs/ipfs-gui#91
add-on/_locales/en/messages.json
Outdated
"panel_importCurrentIpfsAddress": { | ||
"message": "Import to Files at My Node", | ||
"description": "A menu item in Browser Action pop-up (panel_importCurrentIpfsAddress)" | ||
}, | ||
"panel_pinCurrentIpfsAddressTooltip": { | ||
"message": "Pin this page's IPFS resources to your node to have a local copy that's available offline and never thrown away.", | ||
"description": "A menu item tooltip in Browser Action pop-up (panel_pinCurrentIpfsAddressTooltip)" | ||
"panel_importCurrentIpfsAddressTooltip": { | ||
"message": "Import this tab's IPFS resource to your Files to have a persistent local copy that's available offline and never thrown away.", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@jessicaschilling this is the only change in UI, lmk if the label and tooltip explainer could be improved 🙏
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@lidel Maybe "on My Node" rather than "at"?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Two small text suggestions. Thanks!
Co-authored-by: Jessica Schilling <jessica@protocol.ai>
Co-authored-by: Jessica Schilling <jessica@protocol.ai>
Thanks! Final look: This will confuse existing users who are used to seeing low level pin controls there, but the new flow is way more user-friendly and enables users to do remote pinning with UI from webui v2.12: ipfs/ipfs-gui#91 |
This PR changes the way IPFS content is kept around.
Closes #742
Closes #888
Closes ipfs/ipfs-gui#91