Locally-stored recipes database application
Go to file
Andrew Lalis 8644cbbd41
Merge pull request #13 from andrewlalis/improve/redesignIngredients
Improve/redesign ingredients
2018-05-22 23:29:25 +02:00
Design Added design info to repository. 2018-03-31 22:51:02 +02:00
SQLite Added SQLite3 library, testing code. 2018-02-02 11:41:36 +01:00
fonts Added fonts, still need to implement. 2018-03-31 22:01:49 +02:00
gui Added slot for return in add ingredients input field. 2018-05-22 23:27:40 +02:00
images Added icons for search criteria, fixed deleting image bug when editing. 2018-03-31 14:01:57 +02:00
model Fixed compilation bugs. Program runs. 2018-05-22 23:21:15 +02:00
utils Fixed unused variable issues. 2018-03-31 22:15:01 +02:00
.gitignore Updated README.md 2018-04-18 22:20:14 +02:00
README.md Updated README.md 2018-04-18 22:20:14 +02:00
RecipeDB.pro Removed more dialogs for obsolete units and recipe ingredients. 2018-05-22 23:11:52 +02:00
main.cpp Removed test method from main, removed new unit dialog. 2018-05-22 23:09:52 +02:00
res.qrc Fixed unused variable issues. 2018-03-31 22:15:01 +02:00
staticBuilder.sh Updated README.md 2018-04-18 22:20:14 +02:00

README.md

Recipe DB

screenshot

Recipe DB is a simple, lightweight database powered by Qt and SQLite to allow you to save, retrieve, and search through many recipes without needing to be connected to the internet. Meant as a tool for those who enjoy making recipes their own, this tool lets you edit recipes, search by ingredients or food groups, and filter out recipes that meet certain criteria. Recipe DB was created initially out of a desire to organize my many recipes in one uniform way, as simply as possible, while still making sure that retrieving any given recipe is as effortless as possible. I wanted something where I could save recipes offline, change them if I need to, convert units on-the-fly, and add a few other small utilities that would save a few precious minutes in the kitchen.

How it works

For the user interface, a Qt Application is built, both for ease of development, and the sleek, modern visual effects for which it is popular. To save the recipes, the world-famous SQLite embedded database engine was used. It is simply the most obvious choice for a locally stored relational database, and has proven its worth in billions of devices and applications. The filtering, searching, and other various operations used to store and retrieve data from the database is done through the use of SQL statements constructed around user-generated parameters.

To-Do List

  • Share Options:
    • Social Media
    • Email
    • Generate PDF, Word Document
  • More intuitive ingredient addition. It shouldn't be so tedious to add ingredients.
  • Automatic Unit conversion for ingredients, using pre-determined conversion rates.