From d9f28139125c2340af980d60e0dacbbd072ccbef Mon Sep 17 00:00:00 2001 From: geolffreym Date: Sun, 29 May 2022 12:19:37 -0600 Subject: [PATCH 1/9] chore: add custom gateway --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 018051741..33d50d52d 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "watchit", "author": "ZorrillosDev", - "version": "0.3.3-alpha.1", + "version": "0.3.0-alpha.2", "private": true, "main": "./src/main/index.js", "description": "Open movies everywhere", From b6c81ccabab0b6e916517cb5afa83b315569365b Mon Sep 17 00:00:00 2001 From: geolffreym Date: Sun, 29 May 2022 12:20:06 -0600 Subject: [PATCH 2/9] chore: add custom gateway --- src/render/core/settings.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/render/core/settings.js b/src/render/core/settings.js index 88bf1b821..1f4112327 100755 --- a/src/render/core/settings.js +++ b/src/render/core/settings.js @@ -8,7 +8,7 @@ export default { // 'https://vps1.phillm.net', // 'https://vps2.phillm.net', // 'https://vps3.phillm.net', - 'https://gateway.ipfs.io', + 'https://watchit.mypinata.cloud', 'https://ipfs.infura.io', // 'https://gateway.pinata.cloud', ...process.env.RUNTIME !== 'web' From 38e706d59c96488b168f147a47bdd621b35b914e Mon Sep 17 00:00:00 2001 From: geolffreym Date: Mon, 30 May 2022 10:44:54 -0600 Subject: [PATCH 3/9] fix: test gateway --- src/render/core/app/components/Image/index.test.jsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/render/core/app/components/Image/index.test.jsx b/src/render/core/app/components/Image/index.test.jsx index f4d294652..426d43670 100644 --- a/src/render/core/app/components/Image/index.test.jsx +++ b/src/render/core/app/components/Image/index.test.jsx @@ -5,7 +5,7 @@ import Image from './index' /* eslint-disable no-undef */ describe('', () => { - const src = 'https://gateway.ipfs.io/ipfs/QmcdLW9p1dcYYKBHZdRXEXA4go6Qd3C4ce12khyiCqVNaH/image/medium.jpg' + const src = 'https://watchit.mypinata.cloud/ipfs/QmcdLW9p1dcYYKBHZdRXEXA4go6Qd3C4ce12khyiCqVNaH/image/medium.jpg' it('should render', () => { const imageComponent = shallow() @@ -17,7 +17,7 @@ describe('', () => { const imageComponent = mount() const imageEl = imageComponent.instance().img // Image link built using at least one gateway - const match = settings.gateways.some(gateway => ~imageEl.src.indexOf(gateway)) + const match = settings.gateways.some(gateway => imageEl.src.includes(gateway)) // eslint-disable-next-line no-undef expect(match).toBeTruthy() }) From 632ade46037bc68758ec3cba3c09782e2c9373ce Mon Sep 17 00:00:00 2001 From: geolffreym Date: Mon, 30 May 2022 10:46:29 -0600 Subject: [PATCH 4/9] chore: add custom gateway --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 33d50d52d..a177f4cf9 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "watchit", "author": "ZorrillosDev", - "version": "0.3.0-alpha.2", + "version": "0.3.3-alpha.2", "private": true, "main": "./src/main/index.js", "description": "Open movies everywhere", From 3ded96dfdcf70a1258c2c8d549503801f432e325 Mon Sep 17 00:00:00 2001 From: geolffreym Date: Mon, 30 May 2022 10:48:33 -0600 Subject: [PATCH 5/9] chore: add dependant flow --- .github/workflows/publish-web.yml | 1 + .github/workflows/publish.yml | 1 + 2 files changed, 2 insertions(+) diff --git a/.github/workflows/publish-web.yml b/.github/workflows/publish-web.yml index eb20161ad..fb5eef119 100644 --- a/.github/workflows/publish-web.yml +++ b/.github/workflows/publish-web.yml @@ -8,6 +8,7 @@ on: jobs: release: + needs: "test" runs-on: ubuntu-latest steps: - name: Check out Git repository diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 695fe45aa..f4c872d6f 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -8,6 +8,7 @@ on: jobs: release: + needs: "test" runs-on: ${{ matrix.os }} strategy: fail-fast: false From c2be9d30f16de67769150cb02893bbafffbf4c8e Mon Sep 17 00:00:00 2001 From: geolffreym Date: Mon, 30 May 2022 11:47:52 -0600 Subject: [PATCH 6/9] chore: add dependant flow --- .github/workflows/publish-web.yml | 2 +- .github/workflows/publish.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish-web.yml b/.github/workflows/publish-web.yml index fb5eef119..b8fe74347 100644 --- a/.github/workflows/publish-web.yml +++ b/.github/workflows/publish-web.yml @@ -8,8 +8,8 @@ on: jobs: release: - needs: "test" runs-on: ubuntu-latest + needs: "test" steps: - name: Check out Git repository uses: actions/checkout@v2 diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index f4c872d6f..3f416159e 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -8,8 +8,8 @@ on: jobs: release: - needs: "test" runs-on: ${{ matrix.os }} + needs: "test" strategy: fail-fast: false matrix: From 078a6ee6c0b16ad59164cc590ea1ee5a550e4b57 Mon Sep 17 00:00:00 2001 From: geolffreym Date: Mon, 30 May 2022 12:04:55 -0600 Subject: [PATCH 7/9] chore: add dependant flow --- .github/workflows/publish-web.yml | 1 - .github/workflows/publish.yml | 1 - 2 files changed, 2 deletions(-) diff --git a/.github/workflows/publish-web.yml b/.github/workflows/publish-web.yml index b8fe74347..eb20161ad 100644 --- a/.github/workflows/publish-web.yml +++ b/.github/workflows/publish-web.yml @@ -9,7 +9,6 @@ on: jobs: release: runs-on: ubuntu-latest - needs: "test" steps: - name: Check out Git repository uses: actions/checkout@v2 diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 3f416159e..695fe45aa 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -9,7 +9,6 @@ on: jobs: release: runs-on: ${{ matrix.os }} - needs: "test" strategy: fail-fast: false matrix: From b09cc555d12403b041fb114b21eca1814e1a0aec Mon Sep 17 00:00:00 2001 From: Geolffrey Mena Date: Thu, 2 Jun 2022 08:42:24 -0600 Subject: [PATCH 8/9] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index d11052318..b86f28559 100644 --- a/README.md +++ b/README.md @@ -28,8 +28,8 @@ Please look at our [gateway](https://github.com/ZorrillosDev/watchit-gateway) 's [![screenshot](src/render/media/img/layout/nodes.png?raw=true)]() ## More info -* Visit our site [watchitapp.site](https://watchitapp.site). -* Try our web app release [web.watchitapp.site](https://web.watchitapp.site). +* Visit our site [watchit.movie](https://watchit.movie). +* Try our web app release [web.watchitapp.site](https://web.watchit.movie). * Read our post: [Watchit - Open Movies](https://dev.to/geolffreym/watchit-2b88). * Read our interview in [Console 94](https://console.substack.com/p/console-94?r=3cbez&utm_campaign=post&utm_medium=web&utm_source=url) * Check out [the roadmap](https://github.com/ZorrillosDev/watchit-desktop/projects/1) to future features. From bf03ecfe0d07f987ff2fa7afade31de02379a716 Mon Sep 17 00:00:00 2001 From: Geolffrey Mena Date: Thu, 2 Jun 2022 08:44:14 -0600 Subject: [PATCH 9/9] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b86f28559..51b7db9a3 100644 --- a/README.md +++ b/README.md @@ -29,7 +29,7 @@ Please look at our [gateway](https://github.com/ZorrillosDev/watchit-gateway) 's ## More info * Visit our site [watchit.movie](https://watchit.movie). -* Try our web app release [web.watchitapp.site](https://web.watchit.movie). +* Try our web app release [web.watchit.movie](https://web.watchit.movie). * Read our post: [Watchit - Open Movies](https://dev.to/geolffreym/watchit-2b88). * Read our interview in [Console 94](https://console.substack.com/p/console-94?r=3cbez&utm_campaign=post&utm_medium=web&utm_source=url) * Check out [the roadmap](https://github.com/ZorrillosDev/watchit-desktop/projects/1) to future features.