Skip to content

Commit

Permalink
Merge pull request #1 from wilicw/develop
Browse files Browse the repository at this point in the history
merge Develop to master
  • Loading branch information
William Chang authored Nov 30, 2018
2 parents d39991d + 1a28229 commit b781b1c
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: 2
jobs:
build:
branches:
only: release
only: master
docker:
- image: circleci/node:11.2
working_directory: ~/repo
Expand Down
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Changelog

## [Unreleased]
### Added
- Add Level in Timeing mode ending report
- Add Changelog.

## v0.0.1 - 2018-11-30
### Added
- Create project use Vuejs.
- Add Vuex.
- Add Vue router.
- Use [JavaScript Standard Style](https://github.com/standard/standard) to coding.
- Add Timeing mode.
- Add Normal mode.
- Add 5 bands resistor.

[Unreleased]: https://github.com/wilicw/resicolor/tree/develop
[0.0.1]: https://github.com/wilicw/resicolor/releases/tag/v0.0.1
2 changes: 1 addition & 1 deletion deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ echo "version: 2\n\
jobs:\n\
build:\n\
branches:\n\
only: release" > config.yml
only: master" > config.yml
cd ..
cp index.html 404.html
git config --global user.email "[email protected]"
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": "resicolor",
"version": "1.2.2",
"version": "0.0.1",
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
Expand Down
1 change: 1 addition & 0 deletions src/views/Timeing.vue
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
</el-rate>
<br>
Total: {{$store.state.total}} <br><br>
Level: {{$store.state.opacity}} <br><br>
Avg: {{($store.state.total === 0) ? 0 : (Math.round((avgtime/$store.state.total) * 10) / 10 + 's/one resistor')}} <br><br>
<el-button @click="tryagain" round>Try again</el-button>
</div>
Expand Down

0 comments on commit b781b1c

Please sign in to comment.