From df29aa7f5b3d88de632ed08d22ed7851dcbc8fd1 Mon Sep 17 00:00:00 2001 From: Michael Cole Date: Wed, 27 Sep 2023 17:17:16 -0500 Subject: [PATCH 1/6] Update README.md Some notes about the build process. --- README.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/README.md b/README.md index dac9edc1f..d1e2d8edd 100644 --- a/README.md +++ b/README.md @@ -156,6 +156,17 @@ npm run build npm start ``` +> **Build Note:** `npm ci` will download the webui code to run in electron from the ipfs network using the bitswap protocol. For details, see the [build process](`.github/workflows/ci.yml`) and the [webui code](https://github.com/ipfs/ipfs-webui). + +ipfs-desktop in itself is a simple container that makes sure kubo and webui can work together in a standalone fashion and has access to other os-specfic features like tray and contextual integrations. +There are multiple ways to access webui: + +- https://webui.ipfs.io/#/welcome +- http://127.0.0.1:5001/webui (shipped with kubo) +- ipfs-desktop itself + +All of these instances of webui are the same but shipped slightly differently. The file you're seeing being downloaded is the latest release of webui, i.e. v4.1.1 has content identifiers (CID) `bafybeiamycmd52xvg6k3nzr6z3n33de6a2teyhquhj4kspdtnvetnkrfim` which can be verified on the [webui release page](https://github.com/ipfs/ipfs-webui/releases). + ## Contribute We welcome all contributions to IPFS Desktop! The best way to get started is to check the current [open issues](https://github.com/ipfs-shipyard/ipfs-desktop/issues) (or drill down specifically for [issues labeled "help wanted"](https://github.com/ipfs-shipyard/ipfs-desktop/issues?q=is%3Aissue+is%3Aopen+label%3A%22help+wanted%22)) and find something interesting. All issues are categorized by the [standard label taxonomy](https://github.com/ipfs/community/blob/master/ISSUE_LABELS.md) used across the IPFS project, so you can also drill by topic (for example, [UX-related issues](https://github.com/ipfs-shipyard/ipfs-desktop/issues?q=is%3Aissue+is%3Aopen+label%3Atopic%2Fdesign-ux)). From 34e623c403ffd4c5ee1eda4896774004258730bc Mon Sep 17 00:00:00 2001 From: Russell Dempsey <1173416+SgtPooki@users.noreply.github.com> Date: Wed, 27 Sep 2023 21:31:51 -0700 Subject: [PATCH 2/6] docs: Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d1e2d8edd..71bf9f025 100644 --- a/README.md +++ b/README.md @@ -156,7 +156,7 @@ npm run build npm start ``` -> **Build Note:** `npm ci` will download the webui code to run in electron from the ipfs network using the bitswap protocol. For details, see the [build process](`.github/workflows/ci.yml`) and the [webui code](https://github.com/ipfs/ipfs-webui). +> **Build Note:** `npm ci` will download the webui code to run in electron from IPFS using the [ipfs-or-gateway](https://www.npmjs.com/package/ipfs-or-gateway) npm package. For details, see the [build process](`.github/workflows/ci.yml`) and the [webui code](https://github.com/ipfs/ipfs-webui). ipfs-desktop in itself is a simple container that makes sure kubo and webui can work together in a standalone fashion and has access to other os-specfic features like tray and contextual integrations. There are multiple ways to access webui: From d8301c1821c38cc2b825a23104ed17e94095cf06 Mon Sep 17 00:00:00 2001 From: Russell Dempsey <1173416+SgtPooki@users.noreply.github.com> Date: Wed, 27 Sep 2023 21:31:59 -0700 Subject: [PATCH 3/6] docs: Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 71bf9f025..d64fbe13c 100644 --- a/README.md +++ b/README.md @@ -158,7 +158,7 @@ npm start > **Build Note:** `npm ci` will download the webui code to run in electron from IPFS using the [ipfs-or-gateway](https://www.npmjs.com/package/ipfs-or-gateway) npm package. For details, see the [build process](`.github/workflows/ci.yml`) and the [webui code](https://github.com/ipfs/ipfs-webui). -ipfs-desktop in itself is a simple container that makes sure kubo and webui can work together in a standalone fashion and has access to other os-specfic features like tray and contextual integrations. +IPFS Desktop in itself is a simple container that makes sure Kubo and IPFS Webui can work together in a standalone fashion and has access to other os-specfic features like tray and contextual integrations. There are multiple ways to access webui: - https://webui.ipfs.io/#/welcome From 9607be428ffb8a8a8b33bd6939f254ea71412daf Mon Sep 17 00:00:00 2001 From: Russell Dempsey <1173416+SgtPooki@users.noreply.github.com> Date: Wed, 27 Sep 2023 21:32:07 -0700 Subject: [PATCH 4/6] docs: Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d64fbe13c..6edf7862a 100644 --- a/README.md +++ b/README.md @@ -159,7 +159,7 @@ npm start > **Build Note:** `npm ci` will download the webui code to run in electron from IPFS using the [ipfs-or-gateway](https://www.npmjs.com/package/ipfs-or-gateway) npm package. For details, see the [build process](`.github/workflows/ci.yml`) and the [webui code](https://github.com/ipfs/ipfs-webui). IPFS Desktop in itself is a simple container that makes sure Kubo and IPFS Webui can work together in a standalone fashion and has access to other os-specfic features like tray and contextual integrations. -There are multiple ways to access webui: +There are multiple ways to access IPFS Webui: - https://webui.ipfs.io/#/welcome - http://127.0.0.1:5001/webui (shipped with kubo) From 11deeeb8c16b4f0a762944e233e497f1536cd06d Mon Sep 17 00:00:00 2001 From: Russell Dempsey <1173416+SgtPooki@users.noreply.github.com> Date: Wed, 27 Sep 2023 21:32:14 -0700 Subject: [PATCH 5/6] docs: Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 6edf7862a..07c6a5471 100644 --- a/README.md +++ b/README.md @@ -163,7 +163,7 @@ There are multiple ways to access IPFS Webui: - https://webui.ipfs.io/#/welcome - http://127.0.0.1:5001/webui (shipped with kubo) -- ipfs-desktop itself +- IPFS Desktop itself All of these instances of webui are the same but shipped slightly differently. The file you're seeing being downloaded is the latest release of webui, i.e. v4.1.1 has content identifiers (CID) `bafybeiamycmd52xvg6k3nzr6z3n33de6a2teyhquhj4kspdtnvetnkrfim` which can be verified on the [webui release page](https://github.com/ipfs/ipfs-webui/releases). From abaa7dba18df4236d76d15db4b234ae069f1d319 Mon Sep 17 00:00:00 2001 From: Russell Dempsey <1173416+SgtPooki@users.noreply.github.com> Date: Wed, 27 Sep 2023 21:32:23 -0700 Subject: [PATCH 6/6] docs: Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 07c6a5471..8e6e002a3 100644 --- a/README.md +++ b/README.md @@ -165,7 +165,7 @@ There are multiple ways to access IPFS Webui: - http://127.0.0.1:5001/webui (shipped with kubo) - IPFS Desktop itself -All of these instances of webui are the same but shipped slightly differently. The file you're seeing being downloaded is the latest release of webui, i.e. v4.1.1 has content identifiers (CID) `bafybeiamycmd52xvg6k3nzr6z3n33de6a2teyhquhj4kspdtnvetnkrfim` which can be verified on the [webui release page](https://github.com/ipfs/ipfs-webui/releases). +All of these instances of IPFS Webui are the same but shipped slightly differently. The file you're seeing being downloaded is a specific release of IPFS Webui, i.e. v4.1.1 has content identifiers (CID) `bafybeiamycmd52xvg6k3nzr6z3n33de6a2teyhquhj4kspdtnvetnkrfim` which can be verified on the [IPFS Webui release page](https://github.com/ipfs/ipfs-webui/releases). ## Contribute