Skip to content
This repository has been archived by the owner on Jul 7, 2024. It is now read-only.
/ Orion Public archive

Release 0.9.1 #202

Merged
merged 5 commits into from
Sep 24, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
1 change: 1 addition & 0 deletions app/gateways.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
[
"https://siderus.io/ipfs",
"https://ipfs.io/ipfs",
"http://cloudflare-ipfs.com/ipfs",
"https://gateway.ipfs.io/ipfs",
"https://xmine128.tk/ipfs",
"https://www.eternum.io/ipfs",
Expand Down
4 changes: 4 additions & 0 deletions app/windows/Settings/Components/ConnectivityPanel.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ import Input from '../../../components/Input'

const GatewayEnum = {
SIDERUS: 'https://siderus.io',
PROTOCOLLABS: 'https://ipfs.io',
CLOUDFLARE: 'https://cloudflare-ipfs.com',
LOCAL: 'http://localhost:8080'
}

Expand Down Expand Up @@ -167,6 +169,8 @@ class ConnectivityPanel extends React.Component {
value={this.state.gateway}
>
<option value={GatewayEnum.SIDERUS}>Siderus.io</option>
<option value={GatewayEnum.CLOUDFLARE}>CloudFlare</option>
<option value={GatewayEnum.PROTOCOLLABS}>Protocol Labs</option>
<option value={GatewayEnum.LOCAL}>Local HTTP Gateway</option>
</select>
</div>
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Orion",
"version": "0.9.0-master",
"version": "0.9.1-master",
"env": "development",
"ipfsVersion": "v0.4.17",
"ipfsRepoMigrationsVersion": "v1.4.0",
Expand Down
Loading