This commit is contained in:
2018-09-08 18:03:45 -07:00
parent bebd51b047
commit a2bea32fb6
5 changed files with 25 additions and 4 deletions

3
AUTHORS.md Normal file
View File

@@ -0,0 +1,3 @@
### Authors
- joe fleming ([w33ble](https://github.com/w33ble))

17
CHANGELOG.md Normal file
View File

@@ -0,0 +1,17 @@
### Changelog
#### 1.0.0 (9 September 2018)
- fix: assign key to strain cards [`e3e95e7`](https://git.w33ble.com/w33ble/strain-tools/commit/e3e95e7c2b390ca52633e84604cf6a4a9b239d54)
- fix: remove listener on form unmount [`4591a47`](https://git.w33ble.com/w33ble/strain-tools/commit/4591a47dbaa62cbd330bbc9b96ace2be1ace8bd6)
- feat: add fav/unfav control [`50a3b1d`](https://git.w33ble.com/w33ble/strain-tools/commit/50a3b1db92a64fcd7e10e35ba045a3970a1440ba)
- feat: adjust card tag label by screen size [`5665bde`](https://git.w33ble.com/w33ble/strain-tools/commit/5665bdeaa99bcbf4fc5a9d13d98803b17a42404b)
- feat: sort by adjusted rating [`712c5c0`](https://git.w33ble.com/w33ble/strain-tools/commit/712c5c095c52269d7ffbd7f763cdf325b11369a4)
- feat: show errors, sort tags [`943c091`](https://git.w33ble.com/w33ble/strain-tools/commit/943c0917c71db1612aefd9f2fc8bde098000364c)
- feat: functional search on site [`d3b2110`](https://git.w33ble.com/w33ble/strain-tools/commit/d3b21103eb5227101f581fcc853714bc78ea9950)
- feat: even more site functionality [`9a1f2f9`](https://git.w33ble.com/w33ble/strain-tools/commit/9a1f2f9785e36bd2de2a3a1fbf46bbc9cfdb90d3)
- feat: add tags to scraper output [`804fac1`](https://git.w33ble.com/w33ble/strain-tools/commit/804fac1afb68dc52f482cbfa393856b14b64400a)
- feat: mocked up search form on site [`22a95c3`](https://git.w33ble.com/w33ble/strain-tools/commit/22a95c3fe827ec0651c44164f58950dcc283354b)
- feat: simple site build and dev server [`699a03c`](https://git.w33ble.com/w33ble/strain-tools/commit/699a03c7c06da011b64bdc358287f5d653c96c92)
- feat: add a search site package [`37dcabd`](https://git.w33ble.com/w33ble/strain-tools/commit/37dcabde5e20a6ecea803f40798ae43c72e3afe8)
- feat: working scraper [`cc5e15d`](https://git.w33ble.com/w33ble/strain-tools/commit/cc5e15dbb11f388ba260da6c196fe6827e947d3c)
- initial commit [`c81b30b`](https://git.w33ble.com/w33ble/strain-tools/commit/c81b30be896009b48e66005007f88e55fb159c9c)

View File

@@ -1,6 +1,6 @@
{ {
"name": "strain-tools", "name": "strain-tools",
"version": "0.0.0", "version": "1.0.0",
"description": "strain tools", "description": "strain tools",
"main": "index", "main": "index",
"module": "index.mjs", "module": "index.mjs",
@@ -11,7 +11,8 @@
"prepush": "npm run lint", "prepush": "npm run lint",
"version": "auto-changelog -p && auto-authors && git add CHANGELOG.md AUTHORS.md", "version": "auto-changelog -p && auto-authors && git add CHANGELOG.md AUTHORS.md",
"start": "node .", "start": "node .",
"dev": "nodemon --ignore db.json ." "dev": "nodemon --ignore db.json .",
"setversion": "npx oao reset-all-versions"
}, },
"repository": { "repository": {
"type": "git", "type": "git",

View File

@@ -1,6 +1,6 @@
{ {
"name": "scraper", "name": "scraper",
"version": "0.0.0", "version": "1.0.0",
"private": true, "private": true,
"description": "scrapes strain info, stores for later reference", "description": "scrapes strain info, stores for later reference",
"main": "index", "main": "index",

View File

@@ -1,6 +1,6 @@
{ {
"name": "search-site", "name": "search-site",
"version": "0.0.0", "version": "1.0.0",
"private": true, "private": true,
"main": "index", "main": "index",
"module": "index.mjs", "module": "index.mjs",