diff --git a/.gitignore b/.gitignore index b165559..d026582 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,9 @@ *.pro *.pro.user -*.autosave \ No newline at end of file +*.autosave +#Files generated by qmake. +.qmake.stash +Makefile +recipedb_plugin_import.cpp +#Build directories. +staticBuild_Linux/* \ No newline at end of file diff --git a/README.md b/README.md index e46c739..8eb4691 100644 --- a/README.md +++ b/README.md @@ -10,15 +10,9 @@ For the user interface, a [Qt](https://www.qt.io/) Application is built, both fo ### To-Do List -* Finish User Interface -* Finish and ensure safety of SQL statements and tables in the database; ensure persistence. -* Implement Searching/Filtering -* Create an *Edit* mode in which the user can change a recipe's data. -* Create file protocol to save recipe data which is linked in the database. - * Create a file-naming protocol. -* No save button, should save everything automatically. * 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. \ No newline at end of file diff --git a/staticBuilder.sh b/staticBuilder.sh index f43baeb..06e4502 100755 --- a/staticBuilder.sh +++ b/staticBuilder.sh @@ -2,8 +2,8 @@ #Builds a static release of the RecipeDB program for linux. echo "Building static release..." qmake -make -C /home/andrew/Programming/Projects/staticRelease/ clean +make -C /home/andrew/Programming/Projects/RecipeDB/staticBuild_Linux/ clean PATH=/home/andrew/Programming/Qt5_10static/bin:$PATH export PATH -make -C /home/andrew/Programming/Projects/staticRelease/ +make -C /home/andrew/Programming/Projects/RecipeDB/staticBuild_Linux/ echo "Done!" \ No newline at end of file