Skip to content
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: IPNS Publishing #1973

Merged
merged 36 commits into from
Jul 26, 2022
Merged
Show file tree
Hide file tree
Changes from 35 commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
7910e5f
wip: bootstrap settings ipns keys
hacdias Sep 20, 2021
d126d43
wip: add table and generate modal
hacdias Sep 20, 2021
66dda15
wip: rename working
hacdias Sep 20, 2021
28c7b85
wip: remove working
hacdias Sep 20, 2021
71b02cc
wip: working rename, remove and generation
hacdias Sep 20, 2021
e67ca16
show available keys through link
hacdias Sep 20, 2021
8fa8d8c
wip: publish from files
hacdias Sep 20, 2021
ccf8ed9
publishing works from files page
hacdias Sep 20, 2021
bedc063
fix: disable button when no option is selected
hacdias Sep 24, 2021
14b2db6
Merge branch 'main' into feat/1482-settings
lidel Nov 24, 2021
55064f0
style: IPNS copy tweaks on settings screen
lidel Nov 25, 2021
3344487
docs: suggest backing up IPNS key before removal
lidel Nov 25, 2021
1b65411
style: ipns publishing modal tweaks
lidel Nov 25, 2021
44ace78
style: publish to ipns
lidel Nov 25, 2021
91e0df4
chore: go-ipfs 0.10.0
lidel Nov 25, 2021
ab4901e
test(e2e): ipns keys on settings screen
lidel Nov 26, 2021
71aefa7
chore: @playwright/test v1.16.3
lidel Nov 26, 2021
3b54406
refactor(e2e): remove waitForText helper
lidel Nov 27, 2021
7dcfc1b
use defaults for ipfs.key.gen
hacdias Nov 30, 2021
326b892
feat: wait for publishing
hacdias Nov 30, 2021
f99120e
test(ipns): confirm IPNS record was published
lidel Dec 2, 2021
67f51a8
docs: ipns sharing prompt
lidel Dec 2, 2021
9b65fd7
add progress bar
hacdias Dec 3, 2021
84d5a8c
remove console.log
hacdias Dec 3, 2021
227de8b
extract progress calculation
hacdias Dec 3, 2021
8ff5764
feat: adjusted guess for progressbar
lidel Dec 17, 2021
18717fd
feat: css animations for progress bar
hacdias Dec 20, 2021
b581062
Merge branch 'feat/1482-settings' of https://github.com/ipfs/ipfs-web…
hacdias Dec 20, 2021
857bdf5
fix: bar does not go over the limits
hacdias Dec 20, 2021
ae51379
Merge branch 'main' into feat/1482-settings
hacdias Jul 10, 2022
7d02c74
fix jsdoc
hacdias Jul 10, 2022
b062406
chore: update package lock with right versions
hacdias Jul 20, 2022
dbcad82
Merge main into feat/1482-settings
lidel Jul 25, 2022
9c90a41
docs(ipns): point at Settings screen
lidel Jul 25, 2022
11d8c3a
test(e2e): ipns key removal via Settings
lidel Jul 25, 2022
ded8966
refactor: update english keys
hacdias Jul 26, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,13 @@ By default, the test run headless, so you won't see the browser. To debug test e
To disable headless mode and see the browser, set the environment variable `DEBUG=true`:

```sh
> DEBUG=true npm run test:e2e
> DEBUG=true npm run test:e2e # will show a browser window
```

To build and run e2e only for a specific test script, pass its name:

```sh
> npm run build && npm run test:e2e -- --grep "Settings"
```

#### Breakpoints
Expand Down
Loading