summaryrefslogtreecommitdiff
path: root/data
AgeCommit message (Collapse)Author
2023-05-01Implement ingredient summaryxengineering
2023-05-01Show link just if not emptyxengineering
Otherwise this is confusing.
2023-05-01Switch to tripel to describe ingredientsxengineering
It is always the same: - amount float32 - unit string - type string This is good as a starting point. Later the types of ingredients might have to be tracked. In this a string as key is maybe not the best.
2023-04-28Focus search input on index page loadxengineering
This allows the user to start typing without clicking into the input field.
2023-04-28Implement search bar on index pagexengineering
This is way it is way easier to filter recipes by name.
2023-04-28Replace simple.css submodule by release copyxengineering
This is way simpler to handle since you can get a full tarball of Ceres with everything included which is necessary to run it. The LICENSE of simple.css allows such a copy and stays inside the copy to make clear that this folder uses the simple.css license and not the one of Ceres.
2023-04-23Replace JavaScript on edit page by formxengineering
This is actually possible when using <textarea> instead of <pre>. With this change the recipe server has full support for browsers without JavaScript.
2023-04-22Move delete button from edit page to recipe pagexengineering
This reduces the number of clicks to delete a recipe.
2023-04-22Update edit pagexengineering
2023-04-22Use <section> elements for recipe stepsxengineering
2023-04-22Improve representation of step ingredientsxengineering
2023-04-22Convert tabs to four spaces in example recipesxengineering
Using spaces removes the need to care about the tabwidth of different browsers.
2023-04-22Implement basic recipe target with JSONxengineering
2023-04-22Convert example recipes to JSONxengineering
2023-04-12Update example recipesxengineering
This shows some more markup features / edge cases.
2023-04-08Fix layout on delete confirmation pagexengineering
2023-04-08Fix linksxengineering
2023-04-02Switch from MariaDB to filesxengineering
Using a database is way more complex (see the commit statistics of this commit) than using files to store recipe data. Also administration and usage is simpler.
2023-04-02Add example recipe data filesxengineering
This prepares the switch to a file-based store of recipe data replacing MariaDB.
2023-04-01Improve user interfacexengineering
2023-04-01Implement recipe deletionxengineering
2023-04-01Make Markdown editablexengineering
2023-03-31Reduce to ID and Markdownxengineering
The upstream URL can be encoded easily by the user in the Markdown-based description. The title can be parsed by the first found top-level heading in the Markdown text. Thus these two columns are no longer used. To avoid an additional migration they will be kept in the database.
2023-03-31Remove image functionalityxengineering
Recipe images are currently complicated to implement and have little use. Probably they will not be covered in the next release.
2023-03-07Rework edit page dummyxengineering
Since there are no good solutions to upload the file and markdown description text via HTML forms the edit page will upload the changes using embedded javascript. The page is now complete apart from the necessary javascript code and the backend handlers.
2023-03-07Update navigation linksxengineering
2023-02-12Make add.html a templatexengineering
This allows to use partial HTML files via Go's templating features.
2023-02-12Move footer to own template filexengineering
2023-02-12Move <head/> section to own template filexengineering
This reduces copies of the same HTML code.
2023-02-08Add new recipe edit pagexengineering
Recipes should be completely editable and removable. Thus this edit page was added.
2023-01-11Switch to simple.cssxengineering
This makes it easier to maintain and it looks better.
2022-11-11Ensure that storage folder exists for debuggingxengineering
A not existing data/storage folder could break the program with the debug.json config file used. The .gitkeep file which is introduced with this commit ensures that the folder exists.
2022-11-07Add existing workxengineering