Skip to content

Commit

Permalink
docs: Added Changelog entry for v0.3.0 (#67)
Browse files Browse the repository at this point in the history
  • Loading branch information
Slartibartfass2 authored Feb 27, 2023
1 parent 5b73e04 commit d89bec5
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 7 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## [0.3.0] - 2023-02-28

### Added

- Added support for Eat this! ([#65](https://github.com/Slartibartfass2/ingredient_collector/pull/65))
- Added support for Bianca Zapatka ([#63](https://github.com/Slartibartfass2/ingredient_collector/pull/63))
- Added feedback for missing CORS plugin on web ([#64](https://github.com/Slartibartfass2/ingredient_collector/pull/64))

## [0.2.1] - 2023-02-19

### Fixed
Expand Down Expand Up @@ -29,6 +37,7 @@

_Initial release._

[0.3.0]: https://github.com/Slartibartfass2/ingredient_collector/releases/tag/v0.3.0
[0.2.1]: https://github.com/Slartibartfass2/ingredient_collector/releases/tag/v0.2.1
[0.2.0]: https://github.com/Slartibartfass2/ingredient_collector/releases/tag/v0.2.0
[0.1.1]: https://github.com/Slartibartfass2/ingredient_collector/releases/tag/v0.1.1
Expand Down
13 changes: 7 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<a href="https://github.com/Slartibartfass2/ingredient_collector">
<img src="https://cdn-images-1.medium.com/max/1200/1*5-aoK8IBmXve5whBQM90GA.png" alt="Logo" width="80" height="80">
</a>
<h3 align="center">ingredient_collector</h3>
<h3 align="center">ingredient_collector - 0.3.0</h3>
<p align="center">
An app that collects ingredients from recipe websites and combines them into a shopping list.
</p>
Expand Down Expand Up @@ -151,10 +151,11 @@
## Roadmap

- [x] Add support for [KptnCook](https://www.kptncook.com/)
- [x] Add support for [Eat This](https://www.eat-this.org/)
- [x] Add support for [Bianca Zapatka](https://biancazapatka.com/de/)
- [ ] Add support for [Nora Cooks](https://www.noracooks.com/)
- [ ] Add support for [Eat This](https://www.eat-this.org/)
- [ ] Add support for [Bianca Zapatka](https://biancazapatka.com/de/)
- [ ] Add support for [Chefkoch](https://www.chefkoch.de/)
- [ ] Add support for [BBC Good Food](https://www.bbcgoodfood.com/)

See the [open issues](https://github.com/Slartibartfass2/ingredient_collector/issues) for a full list of proposed features (and known issues).

Expand All @@ -175,10 +176,10 @@ Don't forget to give the project a star! Thanks again!
### Adding support for a recipe website
1. Add a recipe script file in `./lib/src/recipe_scripts`.
1. Add a recipe script file in [./lib/src/recipe_scripts](./lib/src/recipe_scripts/).
2. Add a parsing method which takes a `Document` and a `RecipeParsingJob` and returns a `RecipeParsingResult`.
3. Register the url host and the parsing method in the `_recipeParseMethodMap` map in `./lib/src/recipe_controller.dart`.
4. Add tests in `./test/recipe_scripts_tests` to ensure the parsing works.
3. Register the url origin and the parsing method in the `_recipeParseMethodMap` map in [./lib/src/recipe_controller.dart](./lib/src/recipe_controller.dart).
4. Add tests in [./test/recipe_scripts_tests](./test/recipe_scripts_tests/) to ensure the parsing works.
<p align="right">(<a href="#readme-top">back to top</a>)</p>
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: ingredient_collector
description: An app that collects ingredients from recipe websites and combines them into a shopping list.
version: 0.2.1
version: 0.3.0

environment:
sdk: '>=2.18.5 <3.0.0'
Expand Down

0 comments on commit d89bec5

Please sign in to comment.