Skip to content

Commit

Permalink
Merge branch 'v0.3.0' of https://github.com/ZorrillosDev/watchit-app
Browse files Browse the repository at this point in the history
…into v0.3.0
  • Loading branch information
geolffreym committed Jun 2, 2022
2 parents 777fd4b + bf03ecf commit 2d2b882
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.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.
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "watchit",
"author": "ZorrillosDev",
"version": "0.3.3-alpha.3",
"version": "0.3.3-alpha.2",
"private": true,
"main": "./src/main/index.js",
"description": "Open movies everywhere",
Expand Down
4 changes: 2 additions & 2 deletions src/render/core/app/components/Image/index.test.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import Image from './index'

/* eslint-disable no-undef */
describe('<Image />', () => {
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(<Image src={src} />)
Expand All @@ -17,7 +17,7 @@ describe('<Image />', () => {
const imageComponent = mount(<Image src={src} />)
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()
})
Expand Down
2 changes: 1 addition & 1 deletion src/render/core/settings.js
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down

0 comments on commit 2d2b882

Please sign in to comment.