Compare commits
No commits in common. "master" and "v1.0" have entirely different histories.
|
@ -1,9 +1,3 @@
|
||||||
*.pro
|
*.pro
|
||||||
*.pro.user
|
*.pro.user
|
||||||
*.autosave
|
*.autosave
|
||||||
#Files generated by qmake.
|
|
||||||
.qmake.stash
|
|
||||||
Makefile
|
|
||||||
recipedb_plugin_import.cpp
|
|
||||||
#Build directories.
|
|
||||||
staticBuild_Linux/*
|
|
|
@ -10,9 +10,15 @@ For the user interface, a [Qt](https://www.qt.io/) Application is built, both fo
|
||||||
|
|
||||||
### To-Do List
|
### 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:
|
* Share Options:
|
||||||
* Social Media
|
* Social Media
|
||||||
* Email
|
* Email
|
||||||
* Generate PDF, Word Document
|
* 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.
|
* Automatic Unit conversion for ingredients, using pre-determined conversion rates.
|
|
@ -2,8 +2,8 @@
|
||||||
#Builds a static release of the RecipeDB program for linux.
|
#Builds a static release of the RecipeDB program for linux.
|
||||||
echo "Building static release..."
|
echo "Building static release..."
|
||||||
qmake
|
qmake
|
||||||
make -C /home/andrew/Programming/Projects/RecipeDB/staticBuild_Linux/ clean
|
make -C /home/andrew/Programming/Projects/staticRelease/ clean
|
||||||
PATH=/home/andrew/Programming/Qt5_10static/bin:$PATH
|
PATH=/home/andrew/Programming/Qt5_10static/bin:$PATH
|
||||||
export PATH
|
export PATH
|
||||||
make -C /home/andrew/Programming/Projects/RecipeDB/staticBuild_Linux/
|
make -C /home/andrew/Programming/Projects/staticRelease/
|
||||||
echo "Done!"
|
echo "Done!"
|
Loading…
Reference in New Issue