Skip to content

Commit

Permalink
Merge pull request #1552 from daostack/dev
Browse files Browse the repository at this point in the history
release 0.10.4
  • Loading branch information
dkent600 authored Apr 12, 2020
2 parents c8384b9 + b2b5c35 commit 530c0d8
Show file tree
Hide file tree
Showing 26 changed files with 29,581 additions and 9,986 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
language: node_js
node_js: 10.13.0
node_js: 12.16.1
addons:
apt:
update: true
Expand Down
33 changes: 26 additions & 7 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,22 @@
## 0.10.5
- Features Added
- Recommended node.js version to build Alchemy is set to 12.16.1.

- Bugs fixed
- Allow following/unfollowing DAOs again

## 0.10.4
- Features Added
- Add Torus configuration button
- Recommended node.js version to build Alchemy is set to 12.16.1
- Only show registered schemes in DAOs
- Added support for the CO2ken generic scheme
- Enable Alchemy to run against kovan

- Bugs Fixed
- Fix crash on the redemptions page when there are more than 100 DAOs and not all of them initially load. Only currently an issue in Rinkeby
- Removed "Powered by DAOstack" from Create DAO page

## 0.10.3
- Features Added
- Add support for Torus wallet
Expand All @@ -9,7 +28,7 @@

## 0.10.2
- Features Added
- Fix bug when entering numbers for uint256 data types in the GenericScheme new proposal modal
- Fix bug when entering numbers for uint256 data types in the GenericScheme new proposal modal
- New busy waiting animation

- Bugs Fixed
Expand Down Expand Up @@ -63,9 +82,9 @@
- Retry on failed queries

- Bugs fixed
- update repfromtokens when switching accounts
- update repfromtokens when switching accounts
- Various UI fixes
-
-
## 2020-02-03
- Features Added
- Support for Competitions
Expand All @@ -75,21 +94,21 @@
- representation of durations in schmeme info page
- fix plugin manager form
- do not show the redeem button for expired proposals
- optimize the bundle size
- support new ABI for ReputationFromToken
- optimize the bundle size
- support new ABI for ReputationFromToken
- add mixpanel support
- upgrade client to version 0.2.56 (which includes various fixes, and competition support)
- upgrade subgraph to v37_2 (which included various fixes, and competition supprt)
- add new ENS registry address

## 2020-01-22

- TLDR
- TLDR
- Many tweaks to the language throughout the app
- Create proposal urls can now be exported and shared
- Improvements in feed and feed representation
- Various UI improvements

- Features Added
- Can click on whole proposal card to go to proposal details page
- Can click on whole proposal history row to go to proposal details page
Expand Down
5 changes: 5 additions & 0 deletions data/tokens.json
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,11 @@
}
}
},
"kovan": {
"baseTokenName": "ETH",
"genName": "GEN",
"tokens": {}
},
"xdai": {
"baseTokenName": "xDAI",
"genName": "xGEN",
Expand Down
7 changes: 3 additions & 4 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,19 +46,18 @@ services:
GRAPH_GRAPHQL_MAX_FIRST: 1000

ipfs:
image: daostack/test-env-ipfs:3.0.31
image: daostack/test-env-ipfs:3.0.33
ports:
- 5001:5001

postgres:
image: daostack/test-env-postgres:3.0.31
image: daostack/test-env-postgres:3.0.33
ports:
- 9432:5432
environment:
POSTGRES_PASSWORD: 'letmein'

ganache:
image: daostack/test-env-ganache:3.0.31
image: daostack/test-env-ganache:3.0.33
ports:
- 8545:8545

14 changes: 11 additions & 3 deletions docs/development.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,21 @@ Probably the most flexible way is to run the services that alchemy depends on in
and run the alchemy server in a separate terminal:

```sh
docker-compose build --no-cache # run this if package.json has changed
docker-compose up graph-node alchemy-server # start the services needed by alchemy
# run this only if package.json has changed
docker-compose build --no-cache

# start the services needed by alchemy
docker-compose up graph-node

# in another terminal run:
npm run start # start the development server
# ... point your browser to 127.0.0.1:3000, OPEN AND UNLOCK METAMASK

# browse to 127.0.0.1:3000, OPEN AND UNLOCK METAMASK
# ... develop away
# ... commit your changes

# shutdown docker
docker-compose down
docker-compose down
```

Expand Down
Loading

0 comments on commit 530c0d8

Please sign in to comment.