summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2023-05-07Update CHANGELOG.md for version 0.3.1 releasev0.3.10.3.1xengineering
2023-05-07index.html: Remove autofocus to search fieldxengineering
This is useful for desktops but is annoying on mobile devices since a touchscreen keyboard is overlayed automatically and hides half of the index page.
2023-05-01Update CHANGELOG.md for release v0.3.0v0.3.00.3.0xengineering
2023-05-01Remove link to Gemini specificationxengineering
This project does not use the Gemini markup anymore. It was replaced by JSON.
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-28Fix add_recipes with default JSONxengineering
2023-04-28Fix empty title regressionxengineering
Empty title should be avoided because the recipe otherwise just disappears.
2023-04-28Introduce routing tablexengineering
This removes a lot of repetative code.
2023-04-28Verify JSON inputxengineering
Without verification the text input is simply saved to the file. This is no problem for the recipe editing but since the json.Unmarshal functino will also fail on the index and recipe page this recipe will simply disappear from the web server while the file still exists on disk.
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-23Update to simple.css v.2.2.0xengineering
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-22Remove markup.goxengineering
Markup parsing is not needed anymore since recipes are now modeled as JSON text.
2023-04-22Remove legacy Recipe structxengineering
2023-04-22Implement index page with JSONxengineering
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-13Update changelog for v0.2.0 releasev0.2.00.2.0xengineering
2023-04-13Automate /var/lib/ceres creationxengineering
That way only the system user setup and ownership change has to be done by the packager / installer.
2023-04-13Document creation of /var/lib/ceresxengineering
This is up to the packager. Inside that data directory the application is allowed to create folders on its own.
2023-04-13Fix Makefilexengineering
There were some templates missing.
2023-04-13Allow empty recipe listxengineering
This is useful for the case that no recipes exist or the recipe data folder does not exist.
2023-04-13Remove .gitignore filexengineering
The only left entry was `vendor` which was used to save Go dependencies. Since there are no dependencies anymore this file is removed.
2023-04-13Apply go fmtxengineering
2023-04-13Remove unnecessary FIXMExengineering
The security advice cares about HTML injected from recipe markup into HTML templates. This is not a considered threat because the user is trusted in this earlx version.
2023-04-13Fix empty title regressionxengineering
If no title is detected, a default text should be inserted instead. This avoids not clickable links on the index page.
2023-04-13Remove LinkLine type from markupxengineering
This was not fully implemented and looks better as normal text line than as <pre> element.
2023-04-13Do not hardcode data directoryxengineering
2023-04-12Switch to unnested configxengineering
This is now just not needed.
2023-04-12Update example recipesxengineering
This shows some more markup features / edge cases.
2023-04-12Implement markup to HTML conversionxengineering
The new custom and text/gemini inspired markup has to be converted to HTML to display the recipe.
2023-04-08Add link to gemini specificationxengineering
The gemini protocol specification includes a section about the text/gemini MIME type. This file format is a easy to parse markup language which should be used for the Ceres recipe server.
2023-04-08Move title parsing to new markup.go filexengineering
The new recipe markup which replaces Markdown will need an own file to be implemented.
2023-04-08Remove Markdown renderingxengineering
This step prepares moving to a new, custom and easily parsable markup language.
2023-04-08Fix layout on delete confirmation pagexengineering
2023-04-08Fix linksxengineering
2023-04-08Fix Makefilexengineering
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