Sam Jaffe пре 4 година
родитељ
комит
c69eccb069
2 измењених фајлова са 14 додато и 3 уклоњено
  1. 13 2
      README.md
  2. 1 1
      src/main/lombok/org/leumasjaffe/recipe/model/CompoundRecipeComponent.java

+ 13 - 2
README.md

@@ -12,7 +12,18 @@ A java program for the purpose of storing and categorizing various recipes.
 - [x] Allow specifying instructions on every step
 - [x] Allow user to lock a recipe, to view it as complete instead of in-edit
 - [x] Change number of servings from default
-- [ ] Support images
-- [ ] Load interface should search tags
+- [ ] Propagate updates to CollatedDurationPanel
+- [ ] Propagate updates to summary.IngredientPanel
+- [ ] Hide summary.ElementPanel for no-ingredient Elements
 - [ ] Ensure that instructions are not cut off in lock-view
+- [ ] Support images
+- [ ] Ingredient/Tag searching for recipes
+
+## 0.2.0 Features
+
+- [ ] Nutrition calculator
+- [ ] Substitution guide (e.g. Milk + Vinegar = Buttermilk)
+
+## 0.3.0 Features
+
 - [ ] Create dependency tree for Products

+ 1 - 1
src/main/lombok/org/leumasjaffe/recipe/model/CompoundRecipeComponent.java

@@ -10,7 +10,7 @@ import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
 @JsonIgnoreProperties({
 	"duration", "ingredients", "components", "ingredientsAsStream", "collatedDuration"
 })
-interface CompoundRecipeComponent extends RecipeComponent {
+public interface CompoundRecipeComponent extends RecipeComponent {
 	Stream<? extends RecipeComponent> getComponents();
 	Stream<Ingredient> getIngredientsAsStream();
 	CollatedDuration getCollatedDuration();