├── .dockerignore ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug.yml │ ├── feature_request.yml │ └── wiki_issue.yml └── workflows │ ├── deploy_app_store.yml │ ├── deploy_backend_docker_hub.yml │ ├── deploy_docker_hub.yml │ ├── deploy_docs.yml │ ├── deploy_play_store.yml │ ├── deploy_release_docs.yml │ ├── deploy_web_docker_hub.yml │ ├── pytest.yml │ ├── release.yml │ └── tests.yaml ├── .gitignore ├── .gitmodules ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── README.md ├── backend ├── .dockerignore ├── .gitignore ├── .pre-commit-config.yaml ├── .python-version ├── Dockerfile ├── LICENSE ├── README.md ├── app │ ├── __init__.py │ ├── api │ │ ├── __init__.py │ │ └── register_controller.py │ ├── config.py │ ├── controller │ │ ├── __init__.py │ │ ├── analytics │ │ │ ├── __init__.py │ │ │ └── analytics_controller.py │ │ ├── auth │ │ │ ├── __init__.py │ │ │ ├── auth_controller.py │ │ │ └── schemas.py │ │ ├── category │ │ │ ├── __init__.py │ │ │ ├── category_controller.py │ │ │ └── schemas.py │ │ ├── expense │ │ │ ├── __init__.py │ │ │ ├── expense_controller.py │ │ │ └── schemas.py │ │ ├── exportimport │ │ │ ├── __init__.py │ │ │ ├── export_controller.py │ │ │ ├── import_controller.py │ │ │ └── schemas.py │ │ ├── health_controller.py │ │ ├── household │ │ │ ├── __init__.py │ │ │ ├── household_controller.py │ │ │ └── schemas.py │ │ ├── item │ │ │ ├── __init__.py │ │ │ ├── item_controller.py │ │ │ └── schemas.py │ │ ├── onboarding │ │ │ ├── __init__.py │ │ │ ├── onboarding_controller.py │ │ │ └── schemas.py │ │ ├── planner │ │ │ ├── __init__.py │ │ │ ├── planner_controller.py │ │ │ └── schemas.py │ │ ├── recipe │ │ │ ├── __init__.py │ │ │ ├── recipe_controller.py │ │ │ └── schemas.py │ │ ├── report │ │ │ ├── __init__.py │ │ │ ├── report_controller.py │ │ │ └── schemas.py │ │ ├── settings │ │ │ ├── __init__.py │ │ │ ├── schemas.py │ │ │ └── settings_controller.py │ │ ├── shoppinglist │ │ │ ├── __init__.py │ │ │ ├── schemas.py │ │ │ └── shoppinglist_controller.py │ │ ├── tag │ │ │ ├── __init__.py │ │ │ ├── schemas.py │ │ │ └── tag_controller.py │ │ ├── upload │ │ │ ├── __init__.py │ │ │ └── upload_controller.py │ │ └── user │ │ │ ├── __init__.py │ │ │ ├── schemas.py │ │ │ └── user_controller.py │ ├── errors │ │ └── __init__.py │ ├── helpers │ │ ├── __init__.py │ │ ├── authorize_household.py │ │ ├── db_list_type.py │ │ ├── db_model_authorize_mixin.py │ │ ├── db_model_base.py │ │ ├── db_model_timestamp_mixin.py │ │ ├── db_set_type.py │ │ ├── server_admin_required.py │ │ ├── socket_jwt_required.py │ │ ├── validate_args.py │ │ └── validate_socket_args.py │ ├── jobs │ │ ├── __init__.py │ │ ├── cluster_shoppings.py │ │ ├── item_ordering.py │ │ ├── item_suggestions.py │ │ ├── jobs.py │ │ └── recipe_suggestions.py │ ├── models │ │ ├── __init__.py │ │ ├── association.py │ │ ├── category.py │ │ ├── challenge_mail_verify.py │ │ ├── challenge_password_reset.py │ │ ├── expense.py │ │ ├── expense_category.py │ │ ├── file.py │ │ ├── history.py │ │ ├── household.py │ │ ├── item.py │ │ ├── oidc.py │ │ ├── planner.py │ │ ├── recipe.py │ │ ├── recipe_history.py │ │ ├── report.py │ │ ├── settings.py │ │ ├── shoppinglist.py │ │ ├── tag.py │ │ ├── token.py │ │ └── user.py │ ├── service │ │ ├── __init__.py │ │ ├── delete_unused.py │ │ ├── file_has_access_or_download.py │ │ ├── importServices │ │ │ ├── __init__.py │ │ │ ├── import_expense.py │ │ │ ├── import_item.py │ │ │ ├── import_recipe.py │ │ │ └── import_shoppinglist.py │ │ ├── import_language.py │ │ ├── ingredient_parsing.py │ │ ├── mail.py │ │ ├── recalculate_balances.py │ │ ├── recalculate_blurhash.py │ │ └── recipe_scraping.py │ ├── sockets │ │ ├── __init__.py │ │ ├── connection_socket.py │ │ ├── schemas.py │ │ └── shoppinglist_socket.py │ └── util │ │ ├── __init__.py │ │ ├── description_merger.py │ │ ├── description_splitter.py │ │ ├── filename_validator.py │ │ ├── kitchenowl_json_provider.py │ │ └── multi_dict_list.py ├── entrypoint.sh ├── manage.py ├── manage_default_items.py ├── migrations │ ├── README │ ├── alembic.ini │ ├── env.py │ ├── script.py.mako │ └── versions │ │ ├── 0c1f16a519d1_.py │ │ ├── 11c15698c8bf_.py │ │ ├── 144524c5cf79_.py │ │ ├── 1d3c1e2061f6_datetime_in_planner.py │ │ ├── 22d528c529ca_.py │ │ ├── 22dbfbf4cc33_.py │ │ ├── 23445ea65b2b_.py │ │ ├── 29381d24ec31_.py │ │ ├── 3647c9eb1881_.py │ │ ├── 3d3333ffb91e_.py │ │ ├── 3d667fcc5581_.py │ │ ├── 4acda0d5ca8a_.py │ │ ├── 4b4823a384e7_.py │ │ ├── 5140d8f9339b_.py │ │ ├── 55fe25bdf42b_.py │ │ ├── 5a064f9c14d0_.py │ │ ├── 681d624f0d5f_.py │ │ ├── 6c1be50bb858_.py │ │ ├── 6c669d9ec3bd_.py │ │ ├── 6d3027e07dc4_.py │ │ ├── 6d641b08aaa8_.py │ │ ├── 6d6984e216ff_.py │ │ ├── 718193c0581a_.py │ │ ├── 75e1eb3635c6_.py │ │ ├── 8897db89e7af_.py │ │ ├── 8f12363abaaf_.py │ │ ├── 9b45d9dd5b8e_.py │ │ ├── 9be38fc16ce9_.py │ │ ├── a9824159e4e5_.py │ │ ├── aa5d56fe28bb_.py │ │ ├── ade6487fe28a_.py │ │ ├── ade9ad0be1a5_.py │ │ ├── ae608469ef8b_.py │ │ ├── bd383e73ef4d_.py │ │ ├── c058421705ec_.py │ │ ├── c63508852dd1_.py │ │ ├── caa4cab82b41_.py │ │ ├── d611f88dafb2_.py │ │ ├── dedd014b6a59_.py │ │ ├── e209fcb83993_.py │ │ ├── ed32086bf606_.py │ │ ├── ee2ba4d37d8b_.py │ │ ├── fcd7cff0aea2_.py │ │ ├── fe3a5c9ac84c_.py │ │ └── fffa4ab33d2a_.py ├── pyproject.toml ├── templates │ ├── attributes.json │ └── l10n │ │ ├── ar.json │ │ ├── bg.json │ │ ├── bn.json │ │ ├── ca.json │ │ ├── cs.json │ │ ├── da.json │ │ ├── de.json │ │ ├── de_CH.json │ │ ├── el.json │ │ ├── en.json │ │ ├── en_AU.json │ │ ├── es.json │ │ ├── fa.json │ │ ├── fi.json │ │ ├── fr.json │ │ ├── he.json │ │ ├── hu.json │ │ ├── id.json │ │ ├── it.json │ │ ├── kab.json │ │ ├── ko.json │ │ ├── lt.json │ │ ├── nb_NO.json │ │ ├── nl.json │ │ ├── pl.json │ │ ├── pt.json │ │ ├── pt_BR.json │ │ ├── ro.json │ │ ├── ru.json │ │ ├── sk.json │ │ ├── sl.json │ │ ├── sv.json │ │ ├── ta.json │ │ ├── te.json │ │ ├── tr.json │ │ ├── uk.json │ │ └── zh_Hans.json ├── tests │ ├── __init__.py │ ├── api │ │ ├── __init__.py │ │ ├── conftest.py │ │ ├── test_api_household.py │ │ ├── test_api_onboarding.py │ │ ├── test_api_planner.py │ │ ├── test_api_recipe.py │ │ ├── test_api_shoppinglist.py │ │ ├── test_api_user.py │ │ └── test_auth.py │ └── util │ │ ├── __init__.py │ │ ├── test_description_merger.py │ │ └── test_description_splitter.py ├── upgrade_default_items.py ├── uv.lock ├── wsgi.ini └── wsgi.py ├── changelog_configuration.json ├── docker-compose-postgres.yml ├── docker-compose-rabbitmq.yml ├── docker-compose-single.yml ├── docker-compose.yml ├── docs ├── docs │ ├── Tips-&-Tricks │ │ ├── index.md │ │ └── markdown.md │ ├── img │ │ ├── badges │ │ │ ├── appstore.png │ │ │ ├── f-droid.png │ │ │ ├── hacs_repository.svg │ │ │ ├── playstore.png │ │ │ └── testflight.png │ │ ├── icon.png │ │ ├── logo.png │ │ └── screenshots │ │ │ ├── description.gif │ │ │ ├── more-info.gif │ │ │ └── oidc_button.png │ ├── index.md │ ├── reference │ │ ├── API.md │ │ ├── contributing.md │ │ └── management.md │ ├── self-hosting │ │ ├── advanced.md │ │ ├── index.md │ │ ├── ingredient_parsing.md │ │ ├── migration.md │ │ ├── oidc.md │ │ └── reverse-proxy.md │ └── stylesheets │ │ ├── extra.css │ │ └── mkdocsoad.css ├── mkdocs.yml ├── overrides │ └── main.html └── requirements.txt ├── icons ├── README.md ├── generate-item-icons.py └── icons8 │ ├── COPYRIGHT │ ├── almond.svg │ ├── ammo.svg │ ├── antiseptic-cream.svg │ ├── apple-jam.svg │ ├── apple.svg │ ├── appliances.svg │ ├── apricot.svg │ ├── arduino-uno-board.svg │ ├── aroma.svg │ ├── asparagus.svg │ ├── avocado.svg │ ├── baby-bottle.svg │ ├── backpack.svg │ ├── bacon.svg │ ├── baguette.svg │ ├── banana.svg │ ├── bandage.svg │ ├── barber-brush.svg │ ├── barley.svg │ ├── basil.svg │ ├── basketball.svg │ ├── beach-ball.svg │ ├── beard-trimmer.svg │ ├── beef.svg │ ├── beer-bottle.svg │ ├── beeswax.svg │ ├── beet.svg │ ├── bell.svg │ ├── bento.svg │ ├── berry-jam.svg │ ├── bib.svg │ ├── bicycle-floor-pump.svg │ ├── bicycle-helmet.svg │ ├── birdhouse.svg │ ├── biscuits.svg │ ├── blade.svg │ ├── blankie.svg │ ├── blender.svg │ ├── blister-pack.svg │ ├── blueberry.svg │ ├── bobbin.svg │ ├── bobby-pin.svg │ ├── box-tissue.svg │ ├── brazil-nut.svg │ ├── bread-loaf.svg │ ├── bread.svg │ ├── brezel.svg │ ├── broccoli.svg │ ├── broom.svg │ ├── burrito.svg │ ├── butter.svg │ ├── cabbage.svg │ ├── cake.svg │ ├── camera.svg │ ├── campfire.svg │ ├── can-soup.svg │ ├── candle.svg │ ├── candy-cane.svg │ ├── car-battery.svg │ ├── carrot.svg │ ├── cauliflower.svg │ ├── cd.svg │ ├── celery.svg │ ├── cereal.svg │ ├── chain.svg │ ├── champagne-bottle.svg │ ├── charcoal.svg │ ├── cheese.svg │ ├── cheesecake.svg │ ├── cherry.svg │ ├── chia-seeds.svg │ ├── chicken.svg │ ├── chili-pepper.svg │ ├── chocolate-bar.svg │ ├── chocolate-spread.svg │ ├── christmas-ball.svg │ ├── christmas-tree.svg │ ├── cigar.svg │ ├── cinnamon-roll.svg │ ├── cinnamon-sticks.svg │ ├── citrus.svg │ ├── cleaning-a-surface.svg │ ├── clew.svg │ ├── coal.svg │ ├── cocktail-shaker.svg │ ├── coconut-milk.svg │ ├── coconut.svg │ ├── coffee-beans.svg │ ├── coffee-capsule.svg │ ├── cola.svg │ ├── comb.svg │ ├── confetti.svg │ ├── contraception.svg │ ├── cookbook.svg │ ├── cookie-jar.svg │ ├── cookies.svg │ ├── corkscrew.svg │ ├── corn.svg │ ├── crab.svg │ ├── croissant.svg │ ├── cucumber.svg │ ├── cupcake.svg │ ├── cutting-board.svg │ ├── cycling.svg │ ├── date-fruit.svg │ ├── defrosting.svg │ ├── deodorant-stick.svg │ ├── dessert.svg │ ├── dim-sum.svg │ ├── dispenser.svg │ ├── dog-bone.svg │ ├── doggy-bag.svg │ ├── dolmades.svg │ ├── doughnut.svg │ ├── dowel.svg │ ├── dragon-fruit.svg │ ├── drawing.svg │ ├── dressing.svg │ ├── dumplings.svg │ ├── durian.svg │ ├── eco-friendly-cleaning.svg │ ├── eggplant.svg │ ├── eggs.svg │ ├── energy-drink.svg │ ├── eraser.svg │ ├── eye-shadows.svg │ ├── eyelash.svg │ ├── face-powder.svg │ ├── facemask.svg │ ├── fire-alarm.svg │ ├── fire-extinguisher.svg │ ├── firework.svg │ ├── fish-fillet.svg │ ├── fish-food.svg │ ├── fishing.svg │ ├── flat-alkaline-battery.svg │ ├── flat-mailer.svg │ ├── flax-seeds.svg │ ├── flour.svg │ ├── flowers.svg │ ├── fondue.svg │ ├── fork.svg │ ├── foundation-makeup.svg │ ├── french-fries.svg │ ├── frisbee-disk.svg │ ├── furniture.svg │ ├── garlic.svg │ ├── gas-bottle.svg │ ├── gas.svg │ ├── ginger.svg │ ├── gingerbread-house.svg │ ├── glasses.svg │ ├── glue.svg │ ├── grains-of-rice.svg │ ├── grapes.svg │ ├── guacamole.svg │ ├── hair-brush.svg │ ├── hair-clip.svg │ ├── hanger.svg │ ├── hanging-frame.svg │ ├── hazelnut.svg │ ├── herbicide.svg │ ├── honey.svg │ ├── honeycombs.svg │ ├── hot-dog.svg │ ├── ice-cream-cone.svg │ ├── inhaler.svg │ ├── insecticide.svg │ ├── insulin-pen.svg │ ├── jam.svg │ ├── jamon.svg │ ├── kebab.svg │ ├── ketchup.svg │ ├── kimchi-mandu.svg │ ├── kiwi.svg │ ├── knife.svg │ ├── kohlrabi.svg │ ├── lantern.svg │ ├── lasagna.svg │ ├── leather.svg │ ├── leek.svg │ ├── lentil.svg │ ├── lettuce.svg │ ├── life-jacket.svg │ ├── light.svg │ ├── lighter.svg │ ├── lip-gloss.svg │ ├── lipstick.svg │ ├── lychee.svg │ ├── macaron.svg │ ├── magazine.svg │ ├── mail.svg │ ├── makeup-brush.svg │ ├── mango.svg │ ├── mangosteen.svg │ ├── marker-pen.svg │ ├── mascara.svg │ ├── matches.svg │ ├── mayonnaise.svg │ ├── measuring-cup.svg │ ├── meat.svg │ ├── medical-bag.svg │ ├── melon.svg │ ├── mens-underwear.svg │ ├── menstrual-cup.svg │ ├── micro-sd.svg │ ├── milk-carton.svg │ ├── milkshake.svg │ ├── mixer.svg │ ├── mosquito-net.svg │ ├── mouse-trap.svg │ ├── mozzarella.svg │ ├── mushroom.svg │ ├── mustard.svg │ ├── naan.svg │ ├── nachos.svg │ ├── nail-polish.svg │ ├── nail.svg │ ├── nano-sim-card.svg │ ├── nappy.svg │ ├── natural-food.svg │ ├── necklace.svg │ ├── needle.svg │ ├── nonya-kueh.svg │ ├── noodles.svg │ ├── nut.svg │ ├── oat-milk.svg │ ├── octopus.svg │ ├── olive-oil.svg │ ├── olive.svg │ ├── omlette.svg │ ├── onion.svg │ ├── orange.svg │ ├── orchid.svg │ ├── pacifier.svg │ ├── pad.svg │ ├── paella.svg │ ├── paint-brush.svg │ ├── paint-bucket.svg │ ├── papaya.svg │ ├── paper-clamp.svg │ ├── paper.svg │ ├── paprika.svg │ ├── parcel.svg │ ├── pasta.svg │ ├── pastry-bag.svg │ ├── pastry-spatula.svg │ ├── peanuts.svg │ ├── pear.svg │ ├── peas.svg │ ├── pecan.svg │ ├── pelmen.svg │ ├── pencil.svg │ ├── penne.svg │ ├── perfume-bottle.svg │ ├── perfume.svg │ ├── petrol.svg │ ├── pharma.svg │ ├── pie.svg │ ├── pig.svg │ ├── pillow.svg │ ├── pills.svg │ ├── pineapple.svg │ ├── pizza-cutter.svg │ ├── plastic-bottle.svg │ ├── plastic.svg │ ├── plate.svg │ ├── plum.svg │ ├── pomegranate.svg │ ├── popcorn.svg │ ├── potato-chips.svg │ ├── potato.svg │ ├── potted-plant.svg │ ├── poultry-leg.svg │ ├── powder.svg │ ├── power-strip.svg │ ├── prawn.svg │ ├── processor.svg │ ├── pumpkin.svg │ ├── quesadilla.svg │ ├── quill-with-ink.svg │ ├── racket.svg │ ├── radish.svg │ ├── rambutan.svg │ ├── raspberry.svg │ ├── rattle.svg │ ├── razor.svg │ ├── resistor.svg │ ├── rice-vinegar.svg │ ├── rolled-oats.svg │ ├── rolling-pin.svg │ ├── romper.svg │ ├── rope.svg │ ├── rose.svg │ ├── rubber-gloves.svg │ ├── rugby.svg │ ├── sabzeh.svg │ ├── safety-pin.svg │ ├── safety-vest.svg │ ├── salami-pizza.svg │ ├── salami.svg │ ├── salt-shaker.svg │ ├── samosa.svg │ ├── sandwich.svg │ ├── sauce.svg │ ├── sausage.svg │ ├── sausages.svg │ ├── saw-blade.svg │ ├── scotch-tape.svg │ ├── screw.svg │ ├── screwdriver.svg │ ├── scrunchy.svg │ ├── seed-packet.svg │ ├── sesame.svg │ ├── sewing-button.svg │ ├── shampoo.svg │ ├── shaving.svg │ ├── sheets.svg │ ├── shellfish.svg │ ├── shoe-polish.svg │ ├── shopping-bag.svg │ ├── shuttlecock.svg │ ├── skein-of-yarn.svg │ ├── sleeping-bag.svg │ ├── smoking.svg │ ├── snail.svg │ ├── snorkel.svg │ ├── soap-bubble.svg │ ├── soap-dispenser.svg │ ├── soap.svg │ ├── soccer-ball.svg │ ├── soursop.svg │ ├── soy-sauce.svg │ ├── soy.svg │ ├── spatula.svg │ ├── spice.svg │ ├── spinach.svg │ ├── sponge.svg │ ├── sport-bottle.svg │ ├── sport.svg │ ├── spray.svg │ ├── squash.svg │ ├── stapler.svg │ ├── steak.svg │ ├── sticker.svg │ ├── straight-razor.svg │ ├── strawberry.svg │ ├── sugar.svg │ ├── sugarcane.svg │ ├── suitcase.svg │ ├── supplement-bottle.svg │ ├── sushi.svg │ ├── sweet-potato.svg │ ├── sweetener.svg │ ├── swiss-army-knife.svg │ ├── syringe.svg │ ├── t-shirt.svg │ ├── taco.svg │ ├── tampon.svg │ ├── tangelo.svg │ ├── tapas.svg │ ├── tape.svg │ ├── tea-tin.svg │ ├── tea.svg │ ├── tetra-pak.svg │ ├── ticket.svg │ ├── tin-can.svg │ ├── toaster-oven.svg │ ├── toaster.svg │ ├── tofu.svg │ ├── toilet-paper.svg │ ├── tomato.svg │ ├── tooth-cleaning-kit.svg │ ├── tooth.svg │ ├── toothpaste.svg │ ├── topping.svg │ ├── towel.svg │ ├── transistor.svg │ ├── trash-bag.svg │ ├── trousers.svg │ ├── tube.svg │ ├── tupperware.svg │ ├── turkey.svg │ ├── usb-connector.svg │ ├── vodka.svg │ ├── washing-dishes.svg │ ├── water.svg │ ├── watering-can.svg │ ├── watermelon.svg │ ├── wet.svg │ ├── wheat.svg │ ├── whipped-cream.svg │ ├── white-beans.svg │ ├── wine-bottle.svg │ ├── wipes.svg │ ├── wood-chips.svg │ ├── wood.svg │ ├── worcestershire-sauce.svg │ ├── wrap.svg │ ├── yarn.svg │ ├── yoga-mat.svg │ ├── yogurt.svg │ └── zipper.svg ├── kitchenowl ├── .dockerignore ├── .gitignore ├── .metadata ├── Dockerfile ├── README.md ├── analysis_options.yaml ├── android │ ├── .gitignore │ ├── Gemfile │ ├── app │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── ic_launcher-playstore.png │ │ │ ├── kotlin │ │ │ │ └── com │ │ │ │ │ └── tombursch │ │ │ │ │ └── kitchenowl │ │ │ │ │ └── MainActivity.kt │ │ │ └── res │ │ │ │ ├── drawable-night-v21 │ │ │ │ ├── background.png │ │ │ │ └── launch_background.xml │ │ │ │ ├── drawable-night │ │ │ │ ├── background.png │ │ │ │ └── launch_background.xml │ │ │ │ ├── drawable-v21 │ │ │ │ ├── background.png │ │ │ │ └── launch_background.xml │ │ │ │ ├── drawable │ │ │ │ ├── background.png │ │ │ │ └── launch_background.xml │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ ├── ic_launcher_monochrome.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ ├── ic_launcher_monochrome.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ ├── ic_launcher_monochrome.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ ├── ic_launcher_monochrome.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ ├── ic_launcher_monochrome.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── values-night-v31 │ │ │ │ └── styles.xml │ │ │ │ ├── values-night │ │ │ │ └── styles.xml │ │ │ │ ├── values-v31 │ │ │ │ └── styles.xml │ │ │ │ ├── values │ │ │ │ ├── colors.xml │ │ │ │ └── styles.xml │ │ │ │ └── xml │ │ │ │ ├── locales_config.xml │ │ │ │ └── network_security_config.xml │ │ │ └── profile │ │ │ └── AndroidManifest.xml │ ├── build.gradle.kts │ ├── fastlane │ │ ├── Appfile │ │ ├── Fastfile │ │ └── README.md │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ └── gradle-wrapper.properties │ └── settings.gradle.kts ├── assets │ ├── icon │ │ ├── favicon.png │ │ ├── icon-foreground.png │ │ ├── icon-padded.png │ │ ├── icon-rounded.png │ │ ├── icon-small-foreground.png │ │ ├── icon-small-green.png │ │ ├── icon-small.png │ │ └── icon.png │ ├── illustrations │ │ ├── apps.svg │ │ ├── clean_up.svg │ │ ├── cooking.svg │ │ ├── maintenance.svg │ │ ├── page_not_found.svg │ │ ├── people.svg │ │ ├── right_direction.svg │ │ ├── shopping_app.svg │ │ ├── under_construction.svg │ │ └── welcoming.svg │ └── images │ │ └── google_logo.png ├── dart_test.yaml ├── debian │ ├── build.sh │ └── kitchenowl │ │ ├── DEBIAN │ │ ├── control │ │ └── postinst │ │ └── usr │ │ └── bin │ │ └── kitchenowl ├── default.conf.template ├── devtools_options.yaml ├── docker-entrypoint-custom.sh ├── fedora │ ├── build.sh │ └── kitchenowl.spec ├── fonts │ ├── Items.ttf │ ├── README.md │ ├── Roboto-Black.ttf │ ├── Roboto-BlackItalic.ttf │ ├── Roboto-Bold.ttf │ ├── Roboto-BoldItalic.ttf │ ├── Roboto-Italic.ttf │ ├── Roboto-Light.ttf │ ├── Roboto-LightItalic.ttf │ ├── Roboto-Medium.ttf │ ├── Roboto-MediumItalic.ttf │ ├── Roboto-Regular.ttf │ ├── Roboto-Thin.ttf │ └── Roboto-ThinItalic.ttf ├── ios │ ├── .gitignore │ ├── Flutter │ │ ├── AppFrameworkInfo.plist │ │ ├── Debug.xcconfig │ │ └── Release.xcconfig │ ├── Gemfile │ ├── Podfile │ ├── PrivacyInfo.xcprivacy │ ├── Runner.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ └── WorkspaceSettings.xcsettings │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Runner.xcscheme │ ├── Runner.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── WorkspaceSettings.xcsettings │ ├── Runner │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ │ ├── Icon-App-20x20@1x.png │ │ │ │ ├── Icon-App-20x20@2x.png │ │ │ │ ├── Icon-App-20x20@3x.png │ │ │ │ ├── Icon-App-29x29@1x.png │ │ │ │ ├── Icon-App-29x29@2x.png │ │ │ │ ├── Icon-App-29x29@3x.png │ │ │ │ ├── Icon-App-38x38@2x.png │ │ │ │ ├── Icon-App-38x38@3x.png │ │ │ │ ├── Icon-App-40x40@1x.png │ │ │ │ ├── Icon-App-40x40@2x.png │ │ │ │ ├── Icon-App-40x40@3x.png │ │ │ │ ├── Icon-App-60x60@2x.png │ │ │ │ ├── Icon-App-60x60@3x.png │ │ │ │ ├── Icon-App-64x64@2x.png │ │ │ │ ├── Icon-App-64x64@3x.png │ │ │ │ ├── Icon-App-68x68@2x.png │ │ │ │ ├── Icon-App-76x76@1x.png │ │ │ │ ├── Icon-App-76x76@2x.png │ │ │ │ ├── Icon-App-83.5x83.5@2x.png │ │ │ │ ├── Icon-App-Dark-1024x1024@1x.png │ │ │ │ ├── Icon-App-Dark-20x20@2x.png │ │ │ │ ├── Icon-App-Dark-20x20@3x.png │ │ │ │ ├── Icon-App-Dark-29x29@2x.png │ │ │ │ ├── Icon-App-Dark-29x29@3x.png │ │ │ │ ├── Icon-App-Dark-38x38@2x.png │ │ │ │ ├── Icon-App-Dark-38x38@3x.png │ │ │ │ ├── Icon-App-Dark-40x40@2x.png │ │ │ │ ├── Icon-App-Dark-40x40@3x.png │ │ │ │ ├── Icon-App-Dark-60x60@2x.png │ │ │ │ ├── Icon-App-Dark-60x60@3x.png │ │ │ │ ├── Icon-App-Dark-64x64@2x.png │ │ │ │ ├── Icon-App-Dark-64x64@3x.png │ │ │ │ ├── Icon-App-Dark-68x68@2x.png │ │ │ │ ├── Icon-App-Dark-76x76@2x.png │ │ │ │ ├── Icon-App-Dark-83.5x83.5@2x.png │ │ │ │ ├── Icon-App-Tinted-1024x1024@1x.png │ │ │ │ ├── Icon-App-Tinted-20x20@2x.png │ │ │ │ ├── Icon-App-Tinted-20x20@3x.png │ │ │ │ ├── Icon-App-Tinted-29x29@2x.png │ │ │ │ ├── Icon-App-Tinted-29x29@3x.png │ │ │ │ ├── Icon-App-Tinted-38x38@2x.png │ │ │ │ ├── Icon-App-Tinted-38x38@3x.png │ │ │ │ ├── Icon-App-Tinted-40x40@2x.png │ │ │ │ ├── Icon-App-Tinted-40x40@3x.png │ │ │ │ ├── Icon-App-Tinted-60x60@2x.png │ │ │ │ ├── Icon-App-Tinted-60x60@3x.png │ │ │ │ ├── Icon-App-Tinted-64x64@2x.png │ │ │ │ ├── Icon-App-Tinted-64x64@3x.png │ │ │ │ ├── Icon-App-Tinted-68x68@2x.png │ │ │ │ ├── Icon-App-Tinted-76x76@2x.png │ │ │ │ └── Icon-App-Tinted-83.5x83.5@2x.png │ │ │ ├── LaunchBackground.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── background.png │ │ │ │ └── darkbackground.png │ │ │ └── LaunchImage.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── LaunchImage.png │ │ │ │ ├── LaunchImage@2x.png │ │ │ │ ├── LaunchImage@3x.png │ │ │ │ └── README.md │ │ ├── Base.lproj │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ ├── Info.plist │ │ ├── Runner-Bridging-Header.h │ │ └── Runner.entitlements │ ├── RunnerTests │ │ └── RunnerTests.swift │ ├── ShareExtension │ │ ├── Base.lproj │ │ │ └── MainInterface.storyboard │ │ ├── Info.plist │ │ ├── ShareExtension.entitlements │ │ └── ShareViewController.swift │ └── fastlane │ │ ├── Appfile │ │ ├── Fastfile │ │ └── README.md ├── l10n.yaml ├── lib │ ├── app.dart │ ├── config.dart │ ├── cubits │ │ ├── auth_cubit.dart │ │ ├── email_confirm_cubit.dart │ │ ├── expense_add_update_cubit.dart │ │ ├── expense_category_add_update_cubit.dart │ │ ├── expense_cubit.dart │ │ ├── expense_list_cubit.dart │ │ ├── expense_month_list_cubit.dart │ │ ├── expense_overview_cubit.dart │ │ ├── household_about_cubit.dart │ │ ├── household_add_update │ │ │ ├── household_add_cubit.dart │ │ │ ├── household_add_update_cubit.dart │ │ │ ├── household_settings_items_cubit.dart │ │ │ └── household_update_cubit.dart │ │ ├── household_cubit.dart │ │ ├── household_list_cubit.dart │ │ ├── household_member_cubit.dart │ │ ├── item_edit_cubit.dart │ │ ├── item_search_cubit.dart │ │ ├── item_selection_cubit.dart │ │ ├── password_reset_cubit.dart │ │ ├── planner_cubit.dart │ │ ├── recipe_add_update_cubit.dart │ │ ├── recipe_cubit.dart │ │ ├── recipe_discover_cubit.dart │ │ ├── recipe_list_cubit.dart │ │ ├── recipe_list_display_cubit.dart │ │ ├── recipe_scraper_cubit.dart │ │ ├── server_info_cubit.dart │ │ ├── settings_cubit.dart │ │ ├── settings_server_cubit.dart │ │ ├── settings_user_cubit.dart │ │ ├── shoppinglist_cubit.dart │ │ └── user_search_cubit.dart │ ├── enums │ │ ├── expenselist_sorting.dart │ │ ├── oidc_provider.dart │ │ ├── shoppinglist_sorting.dart │ │ ├── timeframe.dart │ │ ├── token_type_enum.dart │ │ ├── update_enum.dart │ │ └── views_enum.dart │ ├── helpers │ │ ├── build_context_extension.dart │ │ ├── currency_text_input_formatter.dart │ │ ├── debouncer.dart │ │ ├── fade_through_transition_page.dart │ │ ├── item_description_parser.dart │ │ ├── markdown_extract_item.dart │ │ ├── named_bytearray.dart │ │ ├── recipe_item_markdown_extension.dart │ │ ├── share.dart │ │ ├── shared_axis_transition_page.dart │ │ ├── short_image_markdown_extension.dart │ │ ├── string_scaler.dart │ │ ├── url_launcher.dart │ │ └── username_text_input_formatter.dart │ ├── item_icons.dart │ ├── kitchenowl.dart │ ├── l10n │ │ ├── app_ar.arb │ │ ├── app_be.arb │ │ ├── app_bg.arb │ │ ├── app_ca.arb │ │ ├── app_ca_valencia.arb │ │ ├── app_cs.arb │ │ ├── app_da.arb │ │ ├── app_de.arb │ │ ├── app_de_CH.arb │ │ ├── app_el.arb │ │ ├── app_en.arb │ │ ├── app_en_AU.arb │ │ ├── app_es.arb │ │ ├── app_fa.arb │ │ ├── app_fi.arb │ │ ├── app_fr.arb │ │ ├── app_he.arb │ │ ├── app_hi.arb │ │ ├── app_hr.arb │ │ ├── app_hu.arb │ │ ├── app_id.arb │ │ ├── app_it.arb │ │ ├── app_ja.arb │ │ ├── app_kab.arb │ │ ├── app_kk.arb │ │ ├── app_ko.arb │ │ ├── app_lt.arb │ │ ├── app_nb.arb │ │ ├── app_nl.arb │ │ ├── app_pa.arb │ │ ├── app_pl.arb │ │ ├── app_pt.arb │ │ ├── app_pt_BR.arb │ │ ├── app_ro.arb │ │ ├── app_ru.arb │ │ ├── app_sk.arb │ │ ├── app_sl.arb │ │ ├── app_sv.arb │ │ ├── app_ta.arb │ │ ├── app_te.arb │ │ ├── app_tr.arb │ │ ├── app_uk.arb │ │ ├── app_vi.arb │ │ ├── app_zh.arb │ │ └── app_zh_Hant.arb │ ├── main.dart │ ├── models │ │ ├── category.dart │ │ ├── expense.dart │ │ ├── expense_category.dart │ │ ├── expense_overview.dart │ │ ├── household.dart │ │ ├── import_settings.dart │ │ ├── item.dart │ │ ├── member.dart │ │ ├── model.dart │ │ ├── nullable.dart │ │ ├── planner.dart │ │ ├── recipe.dart │ │ ├── recipe_scrape.dart │ │ ├── recipe_suggestions.dart │ │ ├── report.dart │ │ ├── shoppinglist.dart │ │ ├── tag.dart │ │ ├── token.dart │ │ ├── update_value.dart │ │ └── user.dart │ ├── pages │ │ ├── analytics_page.dart │ │ ├── email_confirm_page.dart │ │ ├── expense_add_update_page.dart │ │ ├── expense_category_add_page.dart │ │ ├── expense_month_list_page.dart │ │ ├── expense_overview_page.dart │ │ ├── expense_page.dart │ │ ├── household_about_page.dart │ │ ├── household_add_page.dart │ │ ├── household_list_page.dart │ │ ├── household_member_page.dart │ │ ├── household_page.dart │ │ ├── household_page │ │ │ ├── _export.dart │ │ │ ├── expense_list.dart │ │ │ ├── household_drawer.dart │ │ │ ├── household_navigation_rail.dart │ │ │ ├── more.dart │ │ │ ├── planner.dart │ │ │ ├── recipe_list.dart │ │ │ └── shoppinglist.dart │ │ ├── household_update_page.dart │ │ ├── icon_selection_page.dart │ │ ├── item_page.dart │ │ ├── item_search_page.dart │ │ ├── item_selection_page.dart │ │ ├── login_page.dart │ │ ├── login_redirect_page.dart │ │ ├── onboarding_page.dart │ │ ├── page_not_found.dart │ │ ├── password_forgot_page.dart │ │ ├── password_reset_page.dart │ │ ├── photo_view_page.dart │ │ ├── recipe_add_update_page.dart │ │ ├── recipe_cooking_page.dart │ │ ├── recipe_discover_page.dart │ │ ├── recipe_list_display_page.dart │ │ ├── recipe_page.dart │ │ ├── recipe_scraper_page.dart │ │ ├── reports_list_page.dart │ │ ├── settings │ │ │ └── create_user_page.dart │ │ ├── settings_household │ │ │ ├── household_settings_category_page.dart │ │ │ ├── household_settings_expense_category_page.dart │ │ │ ├── household_settings_items_page.dart │ │ │ ├── household_settings_shoppinglist_page.dart │ │ │ └── household_settings_tags_page.dart │ │ ├── settings_page.dart │ │ ├── settings_server_user_page.dart │ │ ├── settings_user_email_page.dart │ │ ├── settings_user_linked_accounts_page.dart │ │ ├── settings_user_page.dart │ │ ├── settings_user_password_page.dart │ │ ├── settings_user_sessions_page.dart │ │ ├── setup_page.dart │ │ ├── signup_page.dart │ │ ├── splash_page.dart │ │ ├── tutorial_page.dart │ │ ├── unreachable_page.dart │ │ ├── unsupported_page.dart │ │ └── user_search_page.dart │ ├── platform │ │ └── dart_html │ │ │ ├── dart_html.dart │ │ │ ├── dart_non_web.dart │ │ │ └── dart_web.dart │ ├── router.dart │ ├── services │ │ ├── api │ │ │ ├── analytics.dart │ │ │ ├── api_service.dart │ │ │ ├── category.dart │ │ │ ├── expense.dart │ │ │ ├── household.dart │ │ │ ├── import_export.dart │ │ │ ├── item.dart │ │ │ ├── planner.dart │ │ │ ├── recipe.dart │ │ │ ├── report.dart │ │ │ ├── shoppinglist.dart │ │ │ ├── tag.dart │ │ │ ├── upload.dart │ │ │ └── user.dart │ │ ├── background_task.dart │ │ ├── storage │ │ │ ├── mem_storage.dart │ │ │ ├── storage.dart │ │ │ ├── temp_storage.dart │ │ │ └── transaction_storage.dart │ │ ├── transaction.dart │ │ ├── transaction_handler.dart │ │ └── transactions │ │ │ ├── category.dart │ │ │ ├── expense.dart │ │ │ ├── household.dart │ │ │ ├── item.dart │ │ │ ├── planner.dart │ │ │ ├── recipe.dart │ │ │ ├── shoppinglist.dart │ │ │ ├── tag.dart │ │ │ └── user.dart │ ├── styles │ │ ├── color_mapper.dart │ │ ├── colors.dart │ │ ├── dynamic.dart │ │ └── themes.dart │ └── widgets │ │ ├── _export.dart │ │ ├── avatar_list.dart │ │ ├── chart_bar_member_distribution.dart │ │ ├── chart_bar_months.dart │ │ ├── chart_line_current_month.dart │ │ ├── chart_pie_current_month.dart │ │ ├── checkbox_list_tile.dart │ │ ├── choice_scroll.dart │ │ ├── confirmation_dialog.dart │ │ ├── create_user_form_fields.dart │ │ ├── dismissible_card.dart │ │ ├── expandable_fab.dart │ │ ├── expense │ │ └── timeframe_dropdown_button.dart │ │ ├── expense_add_update │ │ └── paid_for_widget.dart │ │ ├── expense_category_icon.dart │ │ ├── expense_create_fab.dart │ │ ├── expense_item.dart │ │ ├── flexible_image_space_bar.dart │ │ ├── fractionally_sized_box.dart │ │ ├── home_page │ │ └── sliver_category_item_grid_list.dart │ │ ├── household_card.dart │ │ ├── household_circle_avatar.dart │ │ ├── household_image.dart │ │ ├── image_provider.dart │ │ ├── image_selector.dart │ │ ├── index_bar.dart │ │ ├── item_chip.dart │ │ ├── item_popup_menu_button.dart │ │ ├── item_wrap_menu.dart │ │ ├── kitchenowl_color_picker_dialog.dart │ │ ├── kitchenowl_fab.dart │ │ ├── kitchenowl_markdown_body.dart │ │ ├── kitchenowl_markdown_builder.dart │ │ ├── kitchenowl_persistent_search_anchor.dart │ │ ├── kitchenowl_search_anchor.dart │ │ ├── kitchenowl_switch.dart │ │ ├── language_bottom_sheet.dart │ │ ├── left_right_wrap.dart │ │ ├── loading_elevated_button.dart │ │ ├── loading_elevated_button_icon.dart │ │ ├── loading_filled_button.dart │ │ ├── loading_icon_button.dart │ │ ├── loading_list_tile.dart │ │ ├── loading_text_button.dart │ │ ├── number_selector.dart │ │ ├── recipe_card.dart │ │ ├── recipe_create_fab.dart │ │ ├── recipe_item.dart │ │ ├── recipe_markdown_body.dart │ │ ├── recipe_source_chip.dart │ │ ├── recipe_time_settings.dart │ │ ├── rendering │ │ └── sliver_with_pinned_footer.dart │ │ ├── report_dialog.dart │ │ ├── search_text_field.dart │ │ ├── select_dialog.dart │ │ ├── select_file.dart │ │ ├── selectable_button_card.dart │ │ ├── selectable_button_list_tile.dart │ │ ├── settings │ │ ├── color_button.dart │ │ ├── server_user_card.dart │ │ ├── token_bottom_sheet.dart │ │ └── token_card.dart │ │ ├── settings_household │ │ ├── import_settings_dialog.dart │ │ ├── sliver_household_danger_zone.dart │ │ ├── sliver_household_feature_settings.dart │ │ ├── update_member_bottom_sheet.dart │ │ └── view_settings_list_tile.dart │ │ ├── shimmer_card.dart │ │ ├── shimmer_recipe_card.dart │ │ ├── shimmer_shopping_item.dart │ │ ├── shopping_item.dart │ │ ├── shopping_list │ │ ├── shopping_list_choice_chip.dart │ │ └── sliver_shopinglist_item_view.dart │ │ ├── shoppinglist_confirm_remove_fab.dart │ │ ├── show_snack_bar.dart │ │ ├── sliver_expansion_tile.dart │ │ ├── sliver_image_app_bar.dart │ │ ├── sliver_implicit_animated_list.dart │ │ ├── sliver_item_grid_list.dart │ │ ├── sliver_recipe_carousel.dart │ │ ├── sliver_text.dart │ │ ├── sliver_with_pinned_footer.dart │ │ ├── string_item_match.dart │ │ ├── text_dialog.dart │ │ ├── text_with_icon_button.dart │ │ ├── trailing_icon_text_button.dart │ │ ├── user_circle_avatar.dart │ │ ├── user_image_selector.dart │ │ └── user_list_tile.dart ├── linux │ ├── .gitignore │ ├── CMakeLists.txt │ ├── flutter │ │ ├── CMakeLists.txt │ │ ├── generated_plugin_registrant.cc │ │ ├── generated_plugin_registrant.h │ │ └── generated_plugins.cmake │ ├── icon.png │ ├── kitchenowl.desktop │ ├── main.cc │ ├── my_application.cc │ └── my_application.h ├── macos │ ├── .gitignore │ ├── Flutter │ │ ├── Flutter-Debug.xcconfig │ │ └── Flutter-Release.xcconfig │ ├── Podfile │ ├── Runner.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Runner.xcscheme │ ├── Runner.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ ├── Runner │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ │ └── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── app_icon_1024.png │ │ │ │ ├── app_icon_128.png │ │ │ │ ├── app_icon_16.png │ │ │ │ ├── app_icon_256.png │ │ │ │ ├── app_icon_32.png │ │ │ │ ├── app_icon_512.png │ │ │ │ └── app_icon_64.png │ │ ├── Base.lproj │ │ │ └── MainMenu.xib │ │ ├── Configs │ │ │ ├── AppInfo.xcconfig │ │ │ ├── Debug.xcconfig │ │ │ ├── Release.xcconfig │ │ │ └── Warnings.xcconfig │ │ ├── DebugProfile.entitlements │ │ ├── Info.plist │ │ ├── MainFlutterWindow.swift │ │ └── Release.entitlements │ └── RunnerTests │ │ └── RunnerTests.swift ├── pubspec.lock ├── pubspec.yaml ├── test │ ├── cubits │ │ ├── local_only_transaction_handler.dart │ │ └── recipe_cubit_test.dart │ ├── helpers │ │ └── named_bytearray_test.dart │ └── models │ │ ├── category_test.dart │ │ ├── expense_category.dart │ │ ├── expense_test.dart │ │ ├── household_test.dart │ │ └── item.dart ├── web │ ├── .well-known │ │ ├── apple-app-site-association │ │ └── assetlinks.json │ ├── favicon.ico │ ├── favicon.png │ ├── icons │ │ ├── Icon-192.png │ │ ├── Icon-512.png │ │ ├── Icon-maskable-192.png │ │ └── Icon-maskable-512.png │ ├── index.html │ └── manifest.json ├── web_dev_config.yaml └── windows │ ├── .gitignore │ ├── CMakeLists.txt │ ├── flutter │ ├── CMakeLists.txt │ ├── generated_plugin_registrant.cc │ ├── generated_plugin_registrant.h │ └── generated_plugins.cmake │ └── runner │ ├── CMakeLists.txt │ ├── Runner.rc │ ├── flutter_window.cpp │ ├── flutter_window.h │ ├── main.cpp │ ├── resource.h │ ├── resources │ └── app_icon.ico │ ├── runner.exe.manifest │ ├── utils.cpp │ ├── utils.h │ ├── win32_window.cpp │ └── win32_window.h └── metadata └── en-US ├── changelogs ├── 100.txt ├── 101.txt ├── 102.txt ├── 105.txt ├── 106.txt ├── 107.txt ├── 108.txt ├── 109.txt ├── 110.txt ├── 111.txt ├── 112.txt ├── 113.txt ├── 114.txt ├── 115.txt ├── 116.txt ├── 117.txt ├── 118.txt ├── 57.txt ├── 58.txt ├── 59.txt ├── 61.txt ├── 62.txt ├── 63.txt ├── 67.txt ├── 70.txt ├── 74.txt ├── 75.txt ├── 76.txt ├── 79.txt ├── 82.txt ├── 83.txt ├── 84.txt ├── 85.txt ├── 86.txt ├── 87.txt ├── 88.txt ├── 89.txt ├── 90.txt ├── 91.txt ├── 92.txt ├── 94.txt ├── 96.txt ├── 97.txt └── 99.txt ├── full_description.txt ├── images ├── icon.png └── phoneScreenshots │ ├── expenses.png │ ├── groceries.png │ ├── plan.png │ ├── recipe.png │ └── theme.png └── short_description.txt /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/.github/ISSUE_TEMPLATE/bug.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/wiki_issue.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/.github/ISSUE_TEMPLATE/wiki_issue.yml -------------------------------------------------------------------------------- /.github/workflows/deploy_app_store.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/.github/workflows/deploy_app_store.yml -------------------------------------------------------------------------------- /.github/workflows/deploy_docker_hub.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/.github/workflows/deploy_docker_hub.yml -------------------------------------------------------------------------------- /.github/workflows/deploy_docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/.github/workflows/deploy_docs.yml -------------------------------------------------------------------------------- /.github/workflows/deploy_play_store.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/.github/workflows/deploy_play_store.yml -------------------------------------------------------------------------------- /.github/workflows/deploy_release_docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/.github/workflows/deploy_release_docs.yml -------------------------------------------------------------------------------- /.github/workflows/deploy_web_docker_hub.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/.github/workflows/deploy_web_docker_hub.yml -------------------------------------------------------------------------------- /.github/workflows/pytest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/.github/workflows/pytest.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/.github/workflows/tests.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/.gitmodules -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | See https://github.com/TomBursch/kitchenowl/releases -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/README.md -------------------------------------------------------------------------------- /backend/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/backend/.dockerignore -------------------------------------------------------------------------------- /backend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/backend/.gitignore -------------------------------------------------------------------------------- /backend/.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/backend/.pre-commit-config.yaml -------------------------------------------------------------------------------- /backend/.python-version: -------------------------------------------------------------------------------- 1 | 3.14 2 | -------------------------------------------------------------------------------- /backend/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/backend/Dockerfile -------------------------------------------------------------------------------- /backend/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/backend/LICENSE -------------------------------------------------------------------------------- /backend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/backend/README.md -------------------------------------------------------------------------------- /backend/app/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/backend/app/__init__.py -------------------------------------------------------------------------------- /backend/app/api/__init__.py: -------------------------------------------------------------------------------- 1 | from . import register_controller 2 | -------------------------------------------------------------------------------- /backend/app/api/register_controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/backend/app/api/register_controller.py -------------------------------------------------------------------------------- /backend/app/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/backend/app/config.py -------------------------------------------------------------------------------- /backend/app/controller/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/backend/app/controller/__init__.py -------------------------------------------------------------------------------- /backend/app/controller/auth/__init__.py: -------------------------------------------------------------------------------- 1 | from .auth_controller import auth 2 | -------------------------------------------------------------------------------- /backend/app/controller/auth/schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/backend/app/controller/auth/schemas.py -------------------------------------------------------------------------------- /backend/app/controller/category/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/backend/app/controller/category/__init__.py -------------------------------------------------------------------------------- /backend/app/controller/category/schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/backend/app/controller/category/schemas.py -------------------------------------------------------------------------------- /backend/app/controller/expense/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/backend/app/controller/expense/__init__.py -------------------------------------------------------------------------------- /backend/app/controller/expense/schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/backend/app/controller/expense/schemas.py -------------------------------------------------------------------------------- /backend/app/controller/health_controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/backend/app/controller/health_controller.py -------------------------------------------------------------------------------- /backend/app/controller/household/schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/backend/app/controller/household/schemas.py -------------------------------------------------------------------------------- /backend/app/controller/item/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/backend/app/controller/item/__init__.py -------------------------------------------------------------------------------- /backend/app/controller/item/schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/backend/app/controller/item/schemas.py -------------------------------------------------------------------------------- /backend/app/controller/planner/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/backend/app/controller/planner/__init__.py -------------------------------------------------------------------------------- /backend/app/controller/planner/schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/backend/app/controller/planner/schemas.py -------------------------------------------------------------------------------- /backend/app/controller/recipe/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/backend/app/controller/recipe/__init__.py -------------------------------------------------------------------------------- /backend/app/controller/recipe/schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/backend/app/controller/recipe/schemas.py -------------------------------------------------------------------------------- /backend/app/controller/report/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/backend/app/controller/report/__init__.py -------------------------------------------------------------------------------- /backend/app/controller/report/schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/backend/app/controller/report/schemas.py -------------------------------------------------------------------------------- /backend/app/controller/settings/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/backend/app/controller/settings/__init__.py -------------------------------------------------------------------------------- /backend/app/controller/settings/schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/backend/app/controller/settings/schemas.py -------------------------------------------------------------------------------- /backend/app/controller/tag/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/backend/app/controller/tag/__init__.py -------------------------------------------------------------------------------- /backend/app/controller/tag/schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/backend/app/controller/tag/schemas.py -------------------------------------------------------------------------------- /backend/app/controller/upload/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/backend/app/controller/upload/__init__.py -------------------------------------------------------------------------------- /backend/app/controller/user/__init__.py: -------------------------------------------------------------------------------- 1 | from .user_controller import user 2 | -------------------------------------------------------------------------------- /backend/app/controller/user/schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/backend/app/controller/user/schemas.py -------------------------------------------------------------------------------- /backend/app/errors/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/backend/app/errors/__init__.py -------------------------------------------------------------------------------- /backend/app/helpers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/backend/app/helpers/__init__.py -------------------------------------------------------------------------------- /backend/app/helpers/authorize_household.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/backend/app/helpers/authorize_household.py -------------------------------------------------------------------------------- /backend/app/helpers/db_list_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/backend/app/helpers/db_list_type.py -------------------------------------------------------------------------------- /backend/app/helpers/db_model_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/backend/app/helpers/db_model_base.py -------------------------------------------------------------------------------- /backend/app/helpers/db_set_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/backend/app/helpers/db_set_type.py -------------------------------------------------------------------------------- /backend/app/helpers/socket_jwt_required.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/backend/app/helpers/socket_jwt_required.py -------------------------------------------------------------------------------- /backend/app/helpers/validate_args.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/backend/app/helpers/validate_args.py -------------------------------------------------------------------------------- /backend/app/helpers/validate_socket_args.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/backend/app/helpers/validate_socket_args.py -------------------------------------------------------------------------------- /backend/app/jobs/__init__.py: -------------------------------------------------------------------------------- 1 | from . import jobs 2 | -------------------------------------------------------------------------------- /backend/app/jobs/cluster_shoppings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/backend/app/jobs/cluster_shoppings.py -------------------------------------------------------------------------------- /backend/app/jobs/item_ordering.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/backend/app/jobs/item_ordering.py -------------------------------------------------------------------------------- /backend/app/jobs/item_suggestions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/backend/app/jobs/item_suggestions.py -------------------------------------------------------------------------------- /backend/app/jobs/jobs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/backend/app/jobs/jobs.py -------------------------------------------------------------------------------- /backend/app/jobs/recipe_suggestions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/backend/app/jobs/recipe_suggestions.py -------------------------------------------------------------------------------- /backend/app/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/backend/app/models/__init__.py -------------------------------------------------------------------------------- /backend/app/models/association.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/backend/app/models/association.py -------------------------------------------------------------------------------- /backend/app/models/category.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/backend/app/models/category.py -------------------------------------------------------------------------------- /backend/app/models/challenge_mail_verify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/backend/app/models/challenge_mail_verify.py -------------------------------------------------------------------------------- /backend/app/models/expense.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/backend/app/models/expense.py -------------------------------------------------------------------------------- /backend/app/models/expense_category.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/backend/app/models/expense_category.py -------------------------------------------------------------------------------- /backend/app/models/file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/backend/app/models/file.py -------------------------------------------------------------------------------- /backend/app/models/history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/backend/app/models/history.py -------------------------------------------------------------------------------- /backend/app/models/household.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/backend/app/models/household.py -------------------------------------------------------------------------------- /backend/app/models/item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/backend/app/models/item.py -------------------------------------------------------------------------------- /backend/app/models/oidc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/backend/app/models/oidc.py -------------------------------------------------------------------------------- /backend/app/models/planner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/backend/app/models/planner.py -------------------------------------------------------------------------------- /backend/app/models/recipe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/backend/app/models/recipe.py -------------------------------------------------------------------------------- /backend/app/models/recipe_history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/backend/app/models/recipe_history.py -------------------------------------------------------------------------------- /backend/app/models/report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/backend/app/models/report.py -------------------------------------------------------------------------------- /backend/app/models/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/backend/app/models/settings.py -------------------------------------------------------------------------------- /backend/app/models/shoppinglist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/backend/app/models/shoppinglist.py -------------------------------------------------------------------------------- /backend/app/models/tag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/backend/app/models/tag.py -------------------------------------------------------------------------------- /backend/app/models/token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/backend/app/models/token.py -------------------------------------------------------------------------------- /backend/app/models/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/backend/app/models/user.py -------------------------------------------------------------------------------- /backend/app/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/app/service/delete_unused.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/backend/app/service/delete_unused.py -------------------------------------------------------------------------------- /backend/app/service/import_language.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/backend/app/service/import_language.py -------------------------------------------------------------------------------- /backend/app/service/ingredient_parsing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/backend/app/service/ingredient_parsing.py -------------------------------------------------------------------------------- /backend/app/service/mail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/backend/app/service/mail.py -------------------------------------------------------------------------------- /backend/app/service/recalculate_balances.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/backend/app/service/recalculate_balances.py -------------------------------------------------------------------------------- /backend/app/service/recalculate_blurhash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/backend/app/service/recalculate_blurhash.py -------------------------------------------------------------------------------- /backend/app/service/recipe_scraping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/backend/app/service/recipe_scraping.py -------------------------------------------------------------------------------- /backend/app/sockets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/backend/app/sockets/__init__.py -------------------------------------------------------------------------------- /backend/app/sockets/connection_socket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/backend/app/sockets/connection_socket.py -------------------------------------------------------------------------------- /backend/app/sockets/schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/backend/app/sockets/schemas.py -------------------------------------------------------------------------------- /backend/app/sockets/shoppinglist_socket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/backend/app/sockets/shoppinglist_socket.py -------------------------------------------------------------------------------- /backend/app/util/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/backend/app/util/__init__.py -------------------------------------------------------------------------------- /backend/app/util/description_merger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/backend/app/util/description_merger.py -------------------------------------------------------------------------------- /backend/app/util/description_splitter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/backend/app/util/description_splitter.py -------------------------------------------------------------------------------- /backend/app/util/filename_validator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/backend/app/util/filename_validator.py -------------------------------------------------------------------------------- /backend/app/util/multi_dict_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/backend/app/util/multi_dict_list.py -------------------------------------------------------------------------------- /backend/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/backend/entrypoint.sh -------------------------------------------------------------------------------- /backend/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/backend/manage.py -------------------------------------------------------------------------------- /backend/manage_default_items.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/backend/manage_default_items.py -------------------------------------------------------------------------------- /backend/migrations/README: -------------------------------------------------------------------------------- 1 | Single-database configuration for Flask. 2 | -------------------------------------------------------------------------------- /backend/migrations/alembic.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/backend/migrations/alembic.ini -------------------------------------------------------------------------------- /backend/migrations/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/backend/migrations/env.py -------------------------------------------------------------------------------- /backend/migrations/script.py.mako: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/backend/migrations/script.py.mako -------------------------------------------------------------------------------- /backend/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/backend/pyproject.toml -------------------------------------------------------------------------------- /backend/templates/attributes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/backend/templates/attributes.json -------------------------------------------------------------------------------- /backend/templates/l10n/ar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/backend/templates/l10n/ar.json -------------------------------------------------------------------------------- /backend/templates/l10n/bg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/backend/templates/l10n/bg.json -------------------------------------------------------------------------------- /backend/templates/l10n/bn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/backend/templates/l10n/bn.json -------------------------------------------------------------------------------- /backend/templates/l10n/ca.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/backend/templates/l10n/ca.json -------------------------------------------------------------------------------- /backend/templates/l10n/cs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/backend/templates/l10n/cs.json -------------------------------------------------------------------------------- /backend/templates/l10n/da.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/backend/templates/l10n/da.json -------------------------------------------------------------------------------- /backend/templates/l10n/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/backend/templates/l10n/de.json -------------------------------------------------------------------------------- /backend/templates/l10n/de_CH.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/backend/templates/l10n/de_CH.json -------------------------------------------------------------------------------- /backend/templates/l10n/el.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/backend/templates/l10n/el.json -------------------------------------------------------------------------------- /backend/templates/l10n/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/backend/templates/l10n/en.json -------------------------------------------------------------------------------- /backend/templates/l10n/en_AU.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/backend/templates/l10n/en_AU.json -------------------------------------------------------------------------------- /backend/templates/l10n/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/backend/templates/l10n/es.json -------------------------------------------------------------------------------- /backend/templates/l10n/fa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/backend/templates/l10n/fa.json -------------------------------------------------------------------------------- /backend/templates/l10n/fi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/backend/templates/l10n/fi.json -------------------------------------------------------------------------------- /backend/templates/l10n/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/backend/templates/l10n/fr.json -------------------------------------------------------------------------------- /backend/templates/l10n/he.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/backend/templates/l10n/he.json -------------------------------------------------------------------------------- /backend/templates/l10n/hu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/backend/templates/l10n/hu.json -------------------------------------------------------------------------------- /backend/templates/l10n/id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/backend/templates/l10n/id.json -------------------------------------------------------------------------------- /backend/templates/l10n/it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/backend/templates/l10n/it.json -------------------------------------------------------------------------------- /backend/templates/l10n/kab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/backend/templates/l10n/kab.json -------------------------------------------------------------------------------- /backend/templates/l10n/ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/backend/templates/l10n/ko.json -------------------------------------------------------------------------------- /backend/templates/l10n/lt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/backend/templates/l10n/lt.json -------------------------------------------------------------------------------- /backend/templates/l10n/nb_NO.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/backend/templates/l10n/nb_NO.json -------------------------------------------------------------------------------- /backend/templates/l10n/nl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/backend/templates/l10n/nl.json -------------------------------------------------------------------------------- /backend/templates/l10n/pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/backend/templates/l10n/pl.json -------------------------------------------------------------------------------- /backend/templates/l10n/pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/backend/templates/l10n/pt.json -------------------------------------------------------------------------------- /backend/templates/l10n/pt_BR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/backend/templates/l10n/pt_BR.json -------------------------------------------------------------------------------- /backend/templates/l10n/ro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/backend/templates/l10n/ro.json -------------------------------------------------------------------------------- /backend/templates/l10n/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/backend/templates/l10n/ru.json -------------------------------------------------------------------------------- /backend/templates/l10n/sk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/backend/templates/l10n/sk.json -------------------------------------------------------------------------------- /backend/templates/l10n/sl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/backend/templates/l10n/sl.json -------------------------------------------------------------------------------- /backend/templates/l10n/sv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/backend/templates/l10n/sv.json -------------------------------------------------------------------------------- /backend/templates/l10n/ta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/backend/templates/l10n/ta.json -------------------------------------------------------------------------------- /backend/templates/l10n/te.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/backend/templates/l10n/te.json -------------------------------------------------------------------------------- /backend/templates/l10n/tr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/backend/templates/l10n/tr.json -------------------------------------------------------------------------------- /backend/templates/l10n/uk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/backend/templates/l10n/uk.json -------------------------------------------------------------------------------- /backend/templates/l10n/zh_Hans.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/backend/templates/l10n/zh_Hans.json -------------------------------------------------------------------------------- /backend/tests/__init__.py: -------------------------------------------------------------------------------- 1 | import app 2 | -------------------------------------------------------------------------------- /backend/tests/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/tests/api/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/backend/tests/api/conftest.py -------------------------------------------------------------------------------- /backend/tests/api/test_api_household.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/backend/tests/api/test_api_household.py -------------------------------------------------------------------------------- /backend/tests/api/test_api_onboarding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/backend/tests/api/test_api_onboarding.py -------------------------------------------------------------------------------- /backend/tests/api/test_api_planner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/backend/tests/api/test_api_planner.py -------------------------------------------------------------------------------- /backend/tests/api/test_api_recipe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/backend/tests/api/test_api_recipe.py -------------------------------------------------------------------------------- /backend/tests/api/test_api_shoppinglist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/backend/tests/api/test_api_shoppinglist.py -------------------------------------------------------------------------------- /backend/tests/api/test_api_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/backend/tests/api/test_api_user.py -------------------------------------------------------------------------------- /backend/tests/api/test_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/backend/tests/api/test_auth.py -------------------------------------------------------------------------------- /backend/tests/util/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/upgrade_default_items.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/backend/upgrade_default_items.py -------------------------------------------------------------------------------- /backend/uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/backend/uv.lock -------------------------------------------------------------------------------- /backend/wsgi.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/backend/wsgi.ini -------------------------------------------------------------------------------- /backend/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/backend/wsgi.py -------------------------------------------------------------------------------- /changelog_configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/changelog_configuration.json -------------------------------------------------------------------------------- /docker-compose-postgres.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/docker-compose-postgres.yml -------------------------------------------------------------------------------- /docker-compose-rabbitmq.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/docker-compose-rabbitmq.yml -------------------------------------------------------------------------------- /docker-compose-single.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/docker-compose-single.yml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docs/docs/Tips-&-Tricks/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/docs/docs/Tips-&-Tricks/index.md -------------------------------------------------------------------------------- /docs/docs/Tips-&-Tricks/markdown.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/docs/docs/Tips-&-Tricks/markdown.md -------------------------------------------------------------------------------- /docs/docs/img/badges/appstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/docs/docs/img/badges/appstore.png -------------------------------------------------------------------------------- /docs/docs/img/badges/f-droid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/docs/docs/img/badges/f-droid.png -------------------------------------------------------------------------------- /docs/docs/img/badges/hacs_repository.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/docs/docs/img/badges/hacs_repository.svg -------------------------------------------------------------------------------- /docs/docs/img/badges/playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/docs/docs/img/badges/playstore.png -------------------------------------------------------------------------------- /docs/docs/img/badges/testflight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/docs/docs/img/badges/testflight.png -------------------------------------------------------------------------------- /docs/docs/img/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/docs/docs/img/icon.png -------------------------------------------------------------------------------- /docs/docs/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/docs/docs/img/logo.png -------------------------------------------------------------------------------- /docs/docs/img/screenshots/description.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/docs/docs/img/screenshots/description.gif -------------------------------------------------------------------------------- /docs/docs/img/screenshots/more-info.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/docs/docs/img/screenshots/more-info.gif -------------------------------------------------------------------------------- /docs/docs/img/screenshots/oidc_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/docs/docs/img/screenshots/oidc_button.png -------------------------------------------------------------------------------- /docs/docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/docs/docs/index.md -------------------------------------------------------------------------------- /docs/docs/reference/API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/docs/docs/reference/API.md -------------------------------------------------------------------------------- /docs/docs/reference/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/docs/docs/reference/contributing.md -------------------------------------------------------------------------------- /docs/docs/reference/management.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/docs/docs/reference/management.md -------------------------------------------------------------------------------- /docs/docs/self-hosting/advanced.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/docs/docs/self-hosting/advanced.md -------------------------------------------------------------------------------- /docs/docs/self-hosting/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/docs/docs/self-hosting/index.md -------------------------------------------------------------------------------- /docs/docs/self-hosting/migration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/docs/docs/self-hosting/migration.md -------------------------------------------------------------------------------- /docs/docs/self-hosting/oidc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/docs/docs/self-hosting/oidc.md -------------------------------------------------------------------------------- /docs/docs/self-hosting/reverse-proxy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/docs/docs/self-hosting/reverse-proxy.md -------------------------------------------------------------------------------- /docs/docs/stylesheets/extra.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/docs/docs/stylesheets/extra.css -------------------------------------------------------------------------------- /docs/docs/stylesheets/mkdocsoad.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/docs/docs/stylesheets/mkdocsoad.css -------------------------------------------------------------------------------- /docs/mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/docs/mkdocs.yml -------------------------------------------------------------------------------- /docs/overrides/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/docs/overrides/main.html -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /icons/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/README.md -------------------------------------------------------------------------------- /icons/generate-item-icons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/generate-item-icons.py -------------------------------------------------------------------------------- /icons/icons8/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/COPYRIGHT -------------------------------------------------------------------------------- /icons/icons8/almond.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/almond.svg -------------------------------------------------------------------------------- /icons/icons8/ammo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/ammo.svg -------------------------------------------------------------------------------- /icons/icons8/antiseptic-cream.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/antiseptic-cream.svg -------------------------------------------------------------------------------- /icons/icons8/apple-jam.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/apple-jam.svg -------------------------------------------------------------------------------- /icons/icons8/apple.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/apple.svg -------------------------------------------------------------------------------- /icons/icons8/appliances.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/appliances.svg -------------------------------------------------------------------------------- /icons/icons8/apricot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/apricot.svg -------------------------------------------------------------------------------- /icons/icons8/arduino-uno-board.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/arduino-uno-board.svg -------------------------------------------------------------------------------- /icons/icons8/aroma.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/aroma.svg -------------------------------------------------------------------------------- /icons/icons8/asparagus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/asparagus.svg -------------------------------------------------------------------------------- /icons/icons8/avocado.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/avocado.svg -------------------------------------------------------------------------------- /icons/icons8/baby-bottle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/baby-bottle.svg -------------------------------------------------------------------------------- /icons/icons8/backpack.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/backpack.svg -------------------------------------------------------------------------------- /icons/icons8/bacon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/bacon.svg -------------------------------------------------------------------------------- /icons/icons8/baguette.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/baguette.svg -------------------------------------------------------------------------------- /icons/icons8/banana.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/banana.svg -------------------------------------------------------------------------------- /icons/icons8/bandage.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/bandage.svg -------------------------------------------------------------------------------- /icons/icons8/barber-brush.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/barber-brush.svg -------------------------------------------------------------------------------- /icons/icons8/barley.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/barley.svg -------------------------------------------------------------------------------- /icons/icons8/basil.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/basil.svg -------------------------------------------------------------------------------- /icons/icons8/basketball.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/basketball.svg -------------------------------------------------------------------------------- /icons/icons8/beach-ball.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/beach-ball.svg -------------------------------------------------------------------------------- /icons/icons8/beard-trimmer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/beard-trimmer.svg -------------------------------------------------------------------------------- /icons/icons8/beef.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/beef.svg -------------------------------------------------------------------------------- /icons/icons8/beer-bottle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/beer-bottle.svg -------------------------------------------------------------------------------- /icons/icons8/beeswax.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/beeswax.svg -------------------------------------------------------------------------------- /icons/icons8/beet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/beet.svg -------------------------------------------------------------------------------- /icons/icons8/bell.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/bell.svg -------------------------------------------------------------------------------- /icons/icons8/bento.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/bento.svg -------------------------------------------------------------------------------- /icons/icons8/berry-jam.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/berry-jam.svg -------------------------------------------------------------------------------- /icons/icons8/bib.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/bib.svg -------------------------------------------------------------------------------- /icons/icons8/bicycle-floor-pump.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/bicycle-floor-pump.svg -------------------------------------------------------------------------------- /icons/icons8/bicycle-helmet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/bicycle-helmet.svg -------------------------------------------------------------------------------- /icons/icons8/birdhouse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/birdhouse.svg -------------------------------------------------------------------------------- /icons/icons8/biscuits.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/biscuits.svg -------------------------------------------------------------------------------- /icons/icons8/blade.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/blade.svg -------------------------------------------------------------------------------- /icons/icons8/blankie.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/blankie.svg -------------------------------------------------------------------------------- /icons/icons8/blender.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/blender.svg -------------------------------------------------------------------------------- /icons/icons8/blister-pack.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/blister-pack.svg -------------------------------------------------------------------------------- /icons/icons8/blueberry.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/blueberry.svg -------------------------------------------------------------------------------- /icons/icons8/bobbin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/bobbin.svg -------------------------------------------------------------------------------- /icons/icons8/bobby-pin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/bobby-pin.svg -------------------------------------------------------------------------------- /icons/icons8/box-tissue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/box-tissue.svg -------------------------------------------------------------------------------- /icons/icons8/brazil-nut.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/brazil-nut.svg -------------------------------------------------------------------------------- /icons/icons8/bread-loaf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/bread-loaf.svg -------------------------------------------------------------------------------- /icons/icons8/bread.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/bread.svg -------------------------------------------------------------------------------- /icons/icons8/brezel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/brezel.svg -------------------------------------------------------------------------------- /icons/icons8/broccoli.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/broccoli.svg -------------------------------------------------------------------------------- /icons/icons8/broom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/broom.svg -------------------------------------------------------------------------------- /icons/icons8/burrito.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/burrito.svg -------------------------------------------------------------------------------- /icons/icons8/butter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/butter.svg -------------------------------------------------------------------------------- /icons/icons8/cabbage.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/cabbage.svg -------------------------------------------------------------------------------- /icons/icons8/cake.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/cake.svg -------------------------------------------------------------------------------- /icons/icons8/camera.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/camera.svg -------------------------------------------------------------------------------- /icons/icons8/campfire.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/campfire.svg -------------------------------------------------------------------------------- /icons/icons8/can-soup.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/can-soup.svg -------------------------------------------------------------------------------- /icons/icons8/candle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/candle.svg -------------------------------------------------------------------------------- /icons/icons8/candy-cane.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/candy-cane.svg -------------------------------------------------------------------------------- /icons/icons8/car-battery.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/car-battery.svg -------------------------------------------------------------------------------- /icons/icons8/carrot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/carrot.svg -------------------------------------------------------------------------------- /icons/icons8/cauliflower.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/cauliflower.svg -------------------------------------------------------------------------------- /icons/icons8/cd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/cd.svg -------------------------------------------------------------------------------- /icons/icons8/celery.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/celery.svg -------------------------------------------------------------------------------- /icons/icons8/cereal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/cereal.svg -------------------------------------------------------------------------------- /icons/icons8/chain.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/chain.svg -------------------------------------------------------------------------------- /icons/icons8/champagne-bottle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/champagne-bottle.svg -------------------------------------------------------------------------------- /icons/icons8/charcoal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/charcoal.svg -------------------------------------------------------------------------------- /icons/icons8/cheese.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/cheese.svg -------------------------------------------------------------------------------- /icons/icons8/cheesecake.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/cheesecake.svg -------------------------------------------------------------------------------- /icons/icons8/cherry.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/cherry.svg -------------------------------------------------------------------------------- /icons/icons8/chia-seeds.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/chia-seeds.svg -------------------------------------------------------------------------------- /icons/icons8/chicken.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/chicken.svg -------------------------------------------------------------------------------- /icons/icons8/chili-pepper.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/chili-pepper.svg -------------------------------------------------------------------------------- /icons/icons8/chocolate-bar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/chocolate-bar.svg -------------------------------------------------------------------------------- /icons/icons8/chocolate-spread.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/chocolate-spread.svg -------------------------------------------------------------------------------- /icons/icons8/christmas-ball.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/christmas-ball.svg -------------------------------------------------------------------------------- /icons/icons8/christmas-tree.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/christmas-tree.svg -------------------------------------------------------------------------------- /icons/icons8/cigar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/cigar.svg -------------------------------------------------------------------------------- /icons/icons8/cinnamon-roll.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/cinnamon-roll.svg -------------------------------------------------------------------------------- /icons/icons8/cinnamon-sticks.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/cinnamon-sticks.svg -------------------------------------------------------------------------------- /icons/icons8/citrus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/citrus.svg -------------------------------------------------------------------------------- /icons/icons8/cleaning-a-surface.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/cleaning-a-surface.svg -------------------------------------------------------------------------------- /icons/icons8/clew.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/clew.svg -------------------------------------------------------------------------------- /icons/icons8/coal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/coal.svg -------------------------------------------------------------------------------- /icons/icons8/cocktail-shaker.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/cocktail-shaker.svg -------------------------------------------------------------------------------- /icons/icons8/coconut-milk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/coconut-milk.svg -------------------------------------------------------------------------------- /icons/icons8/coconut.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/coconut.svg -------------------------------------------------------------------------------- /icons/icons8/coffee-beans.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/coffee-beans.svg -------------------------------------------------------------------------------- /icons/icons8/coffee-capsule.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/coffee-capsule.svg -------------------------------------------------------------------------------- /icons/icons8/cola.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/cola.svg -------------------------------------------------------------------------------- /icons/icons8/comb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/comb.svg -------------------------------------------------------------------------------- /icons/icons8/confetti.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/confetti.svg -------------------------------------------------------------------------------- /icons/icons8/contraception.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/contraception.svg -------------------------------------------------------------------------------- /icons/icons8/cookbook.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/cookbook.svg -------------------------------------------------------------------------------- /icons/icons8/cookie-jar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/cookie-jar.svg -------------------------------------------------------------------------------- /icons/icons8/cookies.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/cookies.svg -------------------------------------------------------------------------------- /icons/icons8/corkscrew.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/corkscrew.svg -------------------------------------------------------------------------------- /icons/icons8/corn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/corn.svg -------------------------------------------------------------------------------- /icons/icons8/crab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/crab.svg -------------------------------------------------------------------------------- /icons/icons8/croissant.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/croissant.svg -------------------------------------------------------------------------------- /icons/icons8/cucumber.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/cucumber.svg -------------------------------------------------------------------------------- /icons/icons8/cupcake.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/cupcake.svg -------------------------------------------------------------------------------- /icons/icons8/cutting-board.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/cutting-board.svg -------------------------------------------------------------------------------- /icons/icons8/cycling.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/cycling.svg -------------------------------------------------------------------------------- /icons/icons8/date-fruit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/date-fruit.svg -------------------------------------------------------------------------------- /icons/icons8/defrosting.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/defrosting.svg -------------------------------------------------------------------------------- /icons/icons8/deodorant-stick.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/deodorant-stick.svg -------------------------------------------------------------------------------- /icons/icons8/dessert.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/dessert.svg -------------------------------------------------------------------------------- /icons/icons8/dim-sum.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/dim-sum.svg -------------------------------------------------------------------------------- /icons/icons8/dispenser.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/dispenser.svg -------------------------------------------------------------------------------- /icons/icons8/dog-bone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/dog-bone.svg -------------------------------------------------------------------------------- /icons/icons8/doggy-bag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/doggy-bag.svg -------------------------------------------------------------------------------- /icons/icons8/dolmades.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/dolmades.svg -------------------------------------------------------------------------------- /icons/icons8/doughnut.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/doughnut.svg -------------------------------------------------------------------------------- /icons/icons8/dowel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/dowel.svg -------------------------------------------------------------------------------- /icons/icons8/dragon-fruit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/dragon-fruit.svg -------------------------------------------------------------------------------- /icons/icons8/drawing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/drawing.svg -------------------------------------------------------------------------------- /icons/icons8/dressing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/dressing.svg -------------------------------------------------------------------------------- /icons/icons8/dumplings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/dumplings.svg -------------------------------------------------------------------------------- /icons/icons8/durian.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/durian.svg -------------------------------------------------------------------------------- /icons/icons8/eco-friendly-cleaning.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/eco-friendly-cleaning.svg -------------------------------------------------------------------------------- /icons/icons8/eggplant.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/eggplant.svg -------------------------------------------------------------------------------- /icons/icons8/eggs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/eggs.svg -------------------------------------------------------------------------------- /icons/icons8/energy-drink.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/energy-drink.svg -------------------------------------------------------------------------------- /icons/icons8/eraser.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/eraser.svg -------------------------------------------------------------------------------- /icons/icons8/eye-shadows.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/eye-shadows.svg -------------------------------------------------------------------------------- /icons/icons8/eyelash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/eyelash.svg -------------------------------------------------------------------------------- /icons/icons8/face-powder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/face-powder.svg -------------------------------------------------------------------------------- /icons/icons8/facemask.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/facemask.svg -------------------------------------------------------------------------------- /icons/icons8/fire-alarm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/fire-alarm.svg -------------------------------------------------------------------------------- /icons/icons8/fire-extinguisher.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/fire-extinguisher.svg -------------------------------------------------------------------------------- /icons/icons8/firework.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/firework.svg -------------------------------------------------------------------------------- /icons/icons8/fish-fillet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/fish-fillet.svg -------------------------------------------------------------------------------- /icons/icons8/fish-food.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/fish-food.svg -------------------------------------------------------------------------------- /icons/icons8/fishing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/fishing.svg -------------------------------------------------------------------------------- /icons/icons8/flat-alkaline-battery.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/flat-alkaline-battery.svg -------------------------------------------------------------------------------- /icons/icons8/flat-mailer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/flat-mailer.svg -------------------------------------------------------------------------------- /icons/icons8/flax-seeds.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/flax-seeds.svg -------------------------------------------------------------------------------- /icons/icons8/flour.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/flour.svg -------------------------------------------------------------------------------- /icons/icons8/flowers.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/flowers.svg -------------------------------------------------------------------------------- /icons/icons8/fondue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/fondue.svg -------------------------------------------------------------------------------- /icons/icons8/fork.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/fork.svg -------------------------------------------------------------------------------- /icons/icons8/foundation-makeup.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/foundation-makeup.svg -------------------------------------------------------------------------------- /icons/icons8/french-fries.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/french-fries.svg -------------------------------------------------------------------------------- /icons/icons8/frisbee-disk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/frisbee-disk.svg -------------------------------------------------------------------------------- /icons/icons8/furniture.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/furniture.svg -------------------------------------------------------------------------------- /icons/icons8/garlic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/garlic.svg -------------------------------------------------------------------------------- /icons/icons8/gas-bottle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/gas-bottle.svg -------------------------------------------------------------------------------- /icons/icons8/gas.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/gas.svg -------------------------------------------------------------------------------- /icons/icons8/ginger.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/ginger.svg -------------------------------------------------------------------------------- /icons/icons8/gingerbread-house.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/gingerbread-house.svg -------------------------------------------------------------------------------- /icons/icons8/glasses.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/glasses.svg -------------------------------------------------------------------------------- /icons/icons8/glue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/glue.svg -------------------------------------------------------------------------------- /icons/icons8/grains-of-rice.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/grains-of-rice.svg -------------------------------------------------------------------------------- /icons/icons8/grapes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/grapes.svg -------------------------------------------------------------------------------- /icons/icons8/guacamole.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/guacamole.svg -------------------------------------------------------------------------------- /icons/icons8/hair-brush.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/hair-brush.svg -------------------------------------------------------------------------------- /icons/icons8/hair-clip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/hair-clip.svg -------------------------------------------------------------------------------- /icons/icons8/hanger.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/hanger.svg -------------------------------------------------------------------------------- /icons/icons8/hanging-frame.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/hanging-frame.svg -------------------------------------------------------------------------------- /icons/icons8/hazelnut.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/hazelnut.svg -------------------------------------------------------------------------------- /icons/icons8/herbicide.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/herbicide.svg -------------------------------------------------------------------------------- /icons/icons8/honey.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/honey.svg -------------------------------------------------------------------------------- /icons/icons8/honeycombs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/honeycombs.svg -------------------------------------------------------------------------------- /icons/icons8/hot-dog.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/hot-dog.svg -------------------------------------------------------------------------------- /icons/icons8/ice-cream-cone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/ice-cream-cone.svg -------------------------------------------------------------------------------- /icons/icons8/inhaler.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/inhaler.svg -------------------------------------------------------------------------------- /icons/icons8/insecticide.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/insecticide.svg -------------------------------------------------------------------------------- /icons/icons8/insulin-pen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/insulin-pen.svg -------------------------------------------------------------------------------- /icons/icons8/jam.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/jam.svg -------------------------------------------------------------------------------- /icons/icons8/jamon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/jamon.svg -------------------------------------------------------------------------------- /icons/icons8/kebab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/kebab.svg -------------------------------------------------------------------------------- /icons/icons8/ketchup.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/ketchup.svg -------------------------------------------------------------------------------- /icons/icons8/kimchi-mandu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/kimchi-mandu.svg -------------------------------------------------------------------------------- /icons/icons8/kiwi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/kiwi.svg -------------------------------------------------------------------------------- /icons/icons8/knife.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/knife.svg -------------------------------------------------------------------------------- /icons/icons8/kohlrabi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/kohlrabi.svg -------------------------------------------------------------------------------- /icons/icons8/lantern.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/lantern.svg -------------------------------------------------------------------------------- /icons/icons8/lasagna.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/lasagna.svg -------------------------------------------------------------------------------- /icons/icons8/leather.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/leather.svg -------------------------------------------------------------------------------- /icons/icons8/leek.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/leek.svg -------------------------------------------------------------------------------- /icons/icons8/lentil.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/lentil.svg -------------------------------------------------------------------------------- /icons/icons8/lettuce.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/lettuce.svg -------------------------------------------------------------------------------- /icons/icons8/life-jacket.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/life-jacket.svg -------------------------------------------------------------------------------- /icons/icons8/light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/light.svg -------------------------------------------------------------------------------- /icons/icons8/lighter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/lighter.svg -------------------------------------------------------------------------------- /icons/icons8/lip-gloss.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/lip-gloss.svg -------------------------------------------------------------------------------- /icons/icons8/lipstick.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/lipstick.svg -------------------------------------------------------------------------------- /icons/icons8/lychee.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/lychee.svg -------------------------------------------------------------------------------- /icons/icons8/macaron.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/macaron.svg -------------------------------------------------------------------------------- /icons/icons8/magazine.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/magazine.svg -------------------------------------------------------------------------------- /icons/icons8/mail.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/mail.svg -------------------------------------------------------------------------------- /icons/icons8/makeup-brush.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/makeup-brush.svg -------------------------------------------------------------------------------- /icons/icons8/mango.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/mango.svg -------------------------------------------------------------------------------- /icons/icons8/mangosteen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/mangosteen.svg -------------------------------------------------------------------------------- /icons/icons8/marker-pen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/marker-pen.svg -------------------------------------------------------------------------------- /icons/icons8/mascara.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/mascara.svg -------------------------------------------------------------------------------- /icons/icons8/matches.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/matches.svg -------------------------------------------------------------------------------- /icons/icons8/mayonnaise.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/mayonnaise.svg -------------------------------------------------------------------------------- /icons/icons8/measuring-cup.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/measuring-cup.svg -------------------------------------------------------------------------------- /icons/icons8/meat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/meat.svg -------------------------------------------------------------------------------- /icons/icons8/medical-bag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/medical-bag.svg -------------------------------------------------------------------------------- /icons/icons8/melon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/melon.svg -------------------------------------------------------------------------------- /icons/icons8/mens-underwear.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/mens-underwear.svg -------------------------------------------------------------------------------- /icons/icons8/menstrual-cup.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/menstrual-cup.svg -------------------------------------------------------------------------------- /icons/icons8/micro-sd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/micro-sd.svg -------------------------------------------------------------------------------- /icons/icons8/milk-carton.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/milk-carton.svg -------------------------------------------------------------------------------- /icons/icons8/milkshake.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/milkshake.svg -------------------------------------------------------------------------------- /icons/icons8/mixer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/mixer.svg -------------------------------------------------------------------------------- /icons/icons8/mosquito-net.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/mosquito-net.svg -------------------------------------------------------------------------------- /icons/icons8/mouse-trap.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/mouse-trap.svg -------------------------------------------------------------------------------- /icons/icons8/mozzarella.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/mozzarella.svg -------------------------------------------------------------------------------- /icons/icons8/mushroom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/mushroom.svg -------------------------------------------------------------------------------- /icons/icons8/mustard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/mustard.svg -------------------------------------------------------------------------------- /icons/icons8/naan.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/naan.svg -------------------------------------------------------------------------------- /icons/icons8/nachos.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/nachos.svg -------------------------------------------------------------------------------- /icons/icons8/nail-polish.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/nail-polish.svg -------------------------------------------------------------------------------- /icons/icons8/nail.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/nail.svg -------------------------------------------------------------------------------- /icons/icons8/nano-sim-card.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/nano-sim-card.svg -------------------------------------------------------------------------------- /icons/icons8/nappy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/nappy.svg -------------------------------------------------------------------------------- /icons/icons8/natural-food.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/natural-food.svg -------------------------------------------------------------------------------- /icons/icons8/necklace.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/necklace.svg -------------------------------------------------------------------------------- /icons/icons8/needle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/needle.svg -------------------------------------------------------------------------------- /icons/icons8/nonya-kueh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/nonya-kueh.svg -------------------------------------------------------------------------------- /icons/icons8/noodles.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/noodles.svg -------------------------------------------------------------------------------- /icons/icons8/nut.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/nut.svg -------------------------------------------------------------------------------- /icons/icons8/oat-milk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/oat-milk.svg -------------------------------------------------------------------------------- /icons/icons8/octopus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/octopus.svg -------------------------------------------------------------------------------- /icons/icons8/olive-oil.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/olive-oil.svg -------------------------------------------------------------------------------- /icons/icons8/olive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/olive.svg -------------------------------------------------------------------------------- /icons/icons8/omlette.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/omlette.svg -------------------------------------------------------------------------------- /icons/icons8/onion.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/onion.svg -------------------------------------------------------------------------------- /icons/icons8/orange.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/orange.svg -------------------------------------------------------------------------------- /icons/icons8/orchid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/orchid.svg -------------------------------------------------------------------------------- /icons/icons8/pacifier.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/pacifier.svg -------------------------------------------------------------------------------- /icons/icons8/pad.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/pad.svg -------------------------------------------------------------------------------- /icons/icons8/paella.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/paella.svg -------------------------------------------------------------------------------- /icons/icons8/paint-brush.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/paint-brush.svg -------------------------------------------------------------------------------- /icons/icons8/paint-bucket.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/paint-bucket.svg -------------------------------------------------------------------------------- /icons/icons8/papaya.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/papaya.svg -------------------------------------------------------------------------------- /icons/icons8/paper-clamp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/paper-clamp.svg -------------------------------------------------------------------------------- /icons/icons8/paper.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/paper.svg -------------------------------------------------------------------------------- /icons/icons8/paprika.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/paprika.svg -------------------------------------------------------------------------------- /icons/icons8/parcel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/parcel.svg -------------------------------------------------------------------------------- /icons/icons8/pasta.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/pasta.svg -------------------------------------------------------------------------------- /icons/icons8/pastry-bag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/pastry-bag.svg -------------------------------------------------------------------------------- /icons/icons8/pastry-spatula.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/pastry-spatula.svg -------------------------------------------------------------------------------- /icons/icons8/peanuts.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/peanuts.svg -------------------------------------------------------------------------------- /icons/icons8/pear.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/pear.svg -------------------------------------------------------------------------------- /icons/icons8/peas.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/peas.svg -------------------------------------------------------------------------------- /icons/icons8/pecan.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/pecan.svg -------------------------------------------------------------------------------- /icons/icons8/pelmen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/pelmen.svg -------------------------------------------------------------------------------- /icons/icons8/pencil.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/pencil.svg -------------------------------------------------------------------------------- /icons/icons8/penne.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/penne.svg -------------------------------------------------------------------------------- /icons/icons8/perfume-bottle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/perfume-bottle.svg -------------------------------------------------------------------------------- /icons/icons8/perfume.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/perfume.svg -------------------------------------------------------------------------------- /icons/icons8/petrol.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/petrol.svg -------------------------------------------------------------------------------- /icons/icons8/pharma.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/pharma.svg -------------------------------------------------------------------------------- /icons/icons8/pie.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/pie.svg -------------------------------------------------------------------------------- /icons/icons8/pig.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/pig.svg -------------------------------------------------------------------------------- /icons/icons8/pillow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/pillow.svg -------------------------------------------------------------------------------- /icons/icons8/pills.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/pills.svg -------------------------------------------------------------------------------- /icons/icons8/pineapple.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/pineapple.svg -------------------------------------------------------------------------------- /icons/icons8/pizza-cutter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/pizza-cutter.svg -------------------------------------------------------------------------------- /icons/icons8/plastic-bottle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/plastic-bottle.svg -------------------------------------------------------------------------------- /icons/icons8/plastic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/plastic.svg -------------------------------------------------------------------------------- /icons/icons8/plate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/plate.svg -------------------------------------------------------------------------------- /icons/icons8/plum.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/plum.svg -------------------------------------------------------------------------------- /icons/icons8/pomegranate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/pomegranate.svg -------------------------------------------------------------------------------- /icons/icons8/popcorn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/popcorn.svg -------------------------------------------------------------------------------- /icons/icons8/potato-chips.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/potato-chips.svg -------------------------------------------------------------------------------- /icons/icons8/potato.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/potato.svg -------------------------------------------------------------------------------- /icons/icons8/potted-plant.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/potted-plant.svg -------------------------------------------------------------------------------- /icons/icons8/poultry-leg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/poultry-leg.svg -------------------------------------------------------------------------------- /icons/icons8/powder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/powder.svg -------------------------------------------------------------------------------- /icons/icons8/power-strip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/power-strip.svg -------------------------------------------------------------------------------- /icons/icons8/prawn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/prawn.svg -------------------------------------------------------------------------------- /icons/icons8/processor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/processor.svg -------------------------------------------------------------------------------- /icons/icons8/pumpkin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/pumpkin.svg -------------------------------------------------------------------------------- /icons/icons8/quesadilla.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/quesadilla.svg -------------------------------------------------------------------------------- /icons/icons8/quill-with-ink.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/quill-with-ink.svg -------------------------------------------------------------------------------- /icons/icons8/racket.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/racket.svg -------------------------------------------------------------------------------- /icons/icons8/radish.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/radish.svg -------------------------------------------------------------------------------- /icons/icons8/rambutan.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/rambutan.svg -------------------------------------------------------------------------------- /icons/icons8/raspberry.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/raspberry.svg -------------------------------------------------------------------------------- /icons/icons8/rattle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/rattle.svg -------------------------------------------------------------------------------- /icons/icons8/razor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/razor.svg -------------------------------------------------------------------------------- /icons/icons8/resistor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/resistor.svg -------------------------------------------------------------------------------- /icons/icons8/rice-vinegar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/rice-vinegar.svg -------------------------------------------------------------------------------- /icons/icons8/rolled-oats.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/rolled-oats.svg -------------------------------------------------------------------------------- /icons/icons8/rolling-pin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/rolling-pin.svg -------------------------------------------------------------------------------- /icons/icons8/romper.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/romper.svg -------------------------------------------------------------------------------- /icons/icons8/rope.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/rope.svg -------------------------------------------------------------------------------- /icons/icons8/rose.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/rose.svg -------------------------------------------------------------------------------- /icons/icons8/rubber-gloves.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/rubber-gloves.svg -------------------------------------------------------------------------------- /icons/icons8/rugby.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/rugby.svg -------------------------------------------------------------------------------- /icons/icons8/sabzeh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/sabzeh.svg -------------------------------------------------------------------------------- /icons/icons8/safety-pin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/safety-pin.svg -------------------------------------------------------------------------------- /icons/icons8/safety-vest.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/safety-vest.svg -------------------------------------------------------------------------------- /icons/icons8/salami-pizza.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/salami-pizza.svg -------------------------------------------------------------------------------- /icons/icons8/salami.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/salami.svg -------------------------------------------------------------------------------- /icons/icons8/salt-shaker.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/salt-shaker.svg -------------------------------------------------------------------------------- /icons/icons8/samosa.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/samosa.svg -------------------------------------------------------------------------------- /icons/icons8/sandwich.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/sandwich.svg -------------------------------------------------------------------------------- /icons/icons8/sauce.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/sauce.svg -------------------------------------------------------------------------------- /icons/icons8/sausage.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/sausage.svg -------------------------------------------------------------------------------- /icons/icons8/sausages.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/sausages.svg -------------------------------------------------------------------------------- /icons/icons8/saw-blade.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/saw-blade.svg -------------------------------------------------------------------------------- /icons/icons8/scotch-tape.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/scotch-tape.svg -------------------------------------------------------------------------------- /icons/icons8/screw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/screw.svg -------------------------------------------------------------------------------- /icons/icons8/screwdriver.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/screwdriver.svg -------------------------------------------------------------------------------- /icons/icons8/scrunchy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/scrunchy.svg -------------------------------------------------------------------------------- /icons/icons8/seed-packet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/seed-packet.svg -------------------------------------------------------------------------------- /icons/icons8/sesame.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/sesame.svg -------------------------------------------------------------------------------- /icons/icons8/sewing-button.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/sewing-button.svg -------------------------------------------------------------------------------- /icons/icons8/shampoo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/shampoo.svg -------------------------------------------------------------------------------- /icons/icons8/shaving.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/shaving.svg -------------------------------------------------------------------------------- /icons/icons8/sheets.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/sheets.svg -------------------------------------------------------------------------------- /icons/icons8/shellfish.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/shellfish.svg -------------------------------------------------------------------------------- /icons/icons8/shoe-polish.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/shoe-polish.svg -------------------------------------------------------------------------------- /icons/icons8/shopping-bag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/shopping-bag.svg -------------------------------------------------------------------------------- /icons/icons8/shuttlecock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/shuttlecock.svg -------------------------------------------------------------------------------- /icons/icons8/skein-of-yarn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/skein-of-yarn.svg -------------------------------------------------------------------------------- /icons/icons8/sleeping-bag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/sleeping-bag.svg -------------------------------------------------------------------------------- /icons/icons8/smoking.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/smoking.svg -------------------------------------------------------------------------------- /icons/icons8/snail.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/snail.svg -------------------------------------------------------------------------------- /icons/icons8/snorkel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/snorkel.svg -------------------------------------------------------------------------------- /icons/icons8/soap-bubble.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/soap-bubble.svg -------------------------------------------------------------------------------- /icons/icons8/soap-dispenser.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/soap-dispenser.svg -------------------------------------------------------------------------------- /icons/icons8/soap.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/soap.svg -------------------------------------------------------------------------------- /icons/icons8/soccer-ball.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/soccer-ball.svg -------------------------------------------------------------------------------- /icons/icons8/soursop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/soursop.svg -------------------------------------------------------------------------------- /icons/icons8/soy-sauce.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/soy-sauce.svg -------------------------------------------------------------------------------- /icons/icons8/soy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/soy.svg -------------------------------------------------------------------------------- /icons/icons8/spatula.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/spatula.svg -------------------------------------------------------------------------------- /icons/icons8/spice.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/spice.svg -------------------------------------------------------------------------------- /icons/icons8/spinach.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/spinach.svg -------------------------------------------------------------------------------- /icons/icons8/sponge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/sponge.svg -------------------------------------------------------------------------------- /icons/icons8/sport-bottle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/sport-bottle.svg -------------------------------------------------------------------------------- /icons/icons8/sport.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/sport.svg -------------------------------------------------------------------------------- /icons/icons8/spray.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/spray.svg -------------------------------------------------------------------------------- /icons/icons8/squash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/squash.svg -------------------------------------------------------------------------------- /icons/icons8/stapler.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/stapler.svg -------------------------------------------------------------------------------- /icons/icons8/steak.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/steak.svg -------------------------------------------------------------------------------- /icons/icons8/sticker.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/sticker.svg -------------------------------------------------------------------------------- /icons/icons8/straight-razor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/straight-razor.svg -------------------------------------------------------------------------------- /icons/icons8/strawberry.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/strawberry.svg -------------------------------------------------------------------------------- /icons/icons8/sugar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/sugar.svg -------------------------------------------------------------------------------- /icons/icons8/sugarcane.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/sugarcane.svg -------------------------------------------------------------------------------- /icons/icons8/suitcase.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/suitcase.svg -------------------------------------------------------------------------------- /icons/icons8/supplement-bottle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/supplement-bottle.svg -------------------------------------------------------------------------------- /icons/icons8/sushi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/sushi.svg -------------------------------------------------------------------------------- /icons/icons8/sweet-potato.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/sweet-potato.svg -------------------------------------------------------------------------------- /icons/icons8/sweetener.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/sweetener.svg -------------------------------------------------------------------------------- /icons/icons8/swiss-army-knife.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/swiss-army-knife.svg -------------------------------------------------------------------------------- /icons/icons8/syringe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/syringe.svg -------------------------------------------------------------------------------- /icons/icons8/t-shirt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/t-shirt.svg -------------------------------------------------------------------------------- /icons/icons8/taco.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/taco.svg -------------------------------------------------------------------------------- /icons/icons8/tampon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/tampon.svg -------------------------------------------------------------------------------- /icons/icons8/tangelo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/tangelo.svg -------------------------------------------------------------------------------- /icons/icons8/tapas.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/tapas.svg -------------------------------------------------------------------------------- /icons/icons8/tape.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/tape.svg -------------------------------------------------------------------------------- /icons/icons8/tea-tin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/tea-tin.svg -------------------------------------------------------------------------------- /icons/icons8/tea.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/tea.svg -------------------------------------------------------------------------------- /icons/icons8/tetra-pak.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/tetra-pak.svg -------------------------------------------------------------------------------- /icons/icons8/ticket.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/ticket.svg -------------------------------------------------------------------------------- /icons/icons8/tin-can.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/tin-can.svg -------------------------------------------------------------------------------- /icons/icons8/toaster-oven.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/toaster-oven.svg -------------------------------------------------------------------------------- /icons/icons8/toaster.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/toaster.svg -------------------------------------------------------------------------------- /icons/icons8/tofu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/tofu.svg -------------------------------------------------------------------------------- /icons/icons8/toilet-paper.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/toilet-paper.svg -------------------------------------------------------------------------------- /icons/icons8/tomato.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/tomato.svg -------------------------------------------------------------------------------- /icons/icons8/tooth-cleaning-kit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/tooth-cleaning-kit.svg -------------------------------------------------------------------------------- /icons/icons8/tooth.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/tooth.svg -------------------------------------------------------------------------------- /icons/icons8/toothpaste.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/toothpaste.svg -------------------------------------------------------------------------------- /icons/icons8/topping.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/topping.svg -------------------------------------------------------------------------------- /icons/icons8/towel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/towel.svg -------------------------------------------------------------------------------- /icons/icons8/transistor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/transistor.svg -------------------------------------------------------------------------------- /icons/icons8/trash-bag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/trash-bag.svg -------------------------------------------------------------------------------- /icons/icons8/trousers.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/trousers.svg -------------------------------------------------------------------------------- /icons/icons8/tube.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/tube.svg -------------------------------------------------------------------------------- /icons/icons8/tupperware.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/tupperware.svg -------------------------------------------------------------------------------- /icons/icons8/turkey.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/turkey.svg -------------------------------------------------------------------------------- /icons/icons8/usb-connector.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/usb-connector.svg -------------------------------------------------------------------------------- /icons/icons8/vodka.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/vodka.svg -------------------------------------------------------------------------------- /icons/icons8/washing-dishes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/washing-dishes.svg -------------------------------------------------------------------------------- /icons/icons8/water.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/water.svg -------------------------------------------------------------------------------- /icons/icons8/watering-can.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/watering-can.svg -------------------------------------------------------------------------------- /icons/icons8/watermelon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/watermelon.svg -------------------------------------------------------------------------------- /icons/icons8/wet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/wet.svg -------------------------------------------------------------------------------- /icons/icons8/wheat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/wheat.svg -------------------------------------------------------------------------------- /icons/icons8/whipped-cream.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/whipped-cream.svg -------------------------------------------------------------------------------- /icons/icons8/white-beans.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/white-beans.svg -------------------------------------------------------------------------------- /icons/icons8/wine-bottle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/wine-bottle.svg -------------------------------------------------------------------------------- /icons/icons8/wipes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/wipes.svg -------------------------------------------------------------------------------- /icons/icons8/wood-chips.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/wood-chips.svg -------------------------------------------------------------------------------- /icons/icons8/wood.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/wood.svg -------------------------------------------------------------------------------- /icons/icons8/worcestershire-sauce.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/worcestershire-sauce.svg -------------------------------------------------------------------------------- /icons/icons8/wrap.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/wrap.svg -------------------------------------------------------------------------------- /icons/icons8/yarn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/yarn.svg -------------------------------------------------------------------------------- /icons/icons8/yoga-mat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/yoga-mat.svg -------------------------------------------------------------------------------- /icons/icons8/yogurt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/yogurt.svg -------------------------------------------------------------------------------- /icons/icons8/zipper.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/icons/icons8/zipper.svg -------------------------------------------------------------------------------- /kitchenowl/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/.dockerignore -------------------------------------------------------------------------------- /kitchenowl/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/.gitignore -------------------------------------------------------------------------------- /kitchenowl/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/.metadata -------------------------------------------------------------------------------- /kitchenowl/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/Dockerfile -------------------------------------------------------------------------------- /kitchenowl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/README.md -------------------------------------------------------------------------------- /kitchenowl/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/analysis_options.yaml -------------------------------------------------------------------------------- /kitchenowl/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/android/.gitignore -------------------------------------------------------------------------------- /kitchenowl/android/Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gem "fastlane" 4 | -------------------------------------------------------------------------------- /kitchenowl/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/android/app/build.gradle -------------------------------------------------------------------------------- /kitchenowl/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /kitchenowl/android/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/android/build.gradle.kts -------------------------------------------------------------------------------- /kitchenowl/android/fastlane/Appfile: -------------------------------------------------------------------------------- 1 | package_name("com.tombursch.kitchenowl") # e.g. com.krausefx.app -------------------------------------------------------------------------------- /kitchenowl/android/fastlane/Fastfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/android/fastlane/Fastfile -------------------------------------------------------------------------------- /kitchenowl/android/fastlane/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/android/fastlane/README.md -------------------------------------------------------------------------------- /kitchenowl/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/android/gradle.properties -------------------------------------------------------------------------------- /kitchenowl/android/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/android/settings.gradle.kts -------------------------------------------------------------------------------- /kitchenowl/assets/icon/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/assets/icon/favicon.png -------------------------------------------------------------------------------- /kitchenowl/assets/icon/icon-padded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/assets/icon/icon-padded.png -------------------------------------------------------------------------------- /kitchenowl/assets/icon/icon-rounded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/assets/icon/icon-rounded.png -------------------------------------------------------------------------------- /kitchenowl/assets/icon/icon-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/assets/icon/icon-small.png -------------------------------------------------------------------------------- /kitchenowl/assets/icon/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/assets/icon/icon.png -------------------------------------------------------------------------------- /kitchenowl/assets/illustrations/apps.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/assets/illustrations/apps.svg -------------------------------------------------------------------------------- /kitchenowl/assets/images/google_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/assets/images/google_logo.png -------------------------------------------------------------------------------- /kitchenowl/dart_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/dart_test.yaml -------------------------------------------------------------------------------- /kitchenowl/debian/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/debian/build.sh -------------------------------------------------------------------------------- /kitchenowl/debian/kitchenowl/usr/bin/kitchenowl: -------------------------------------------------------------------------------- 1 | ../lib/kitchenowl/kitchenowl -------------------------------------------------------------------------------- /kitchenowl/default.conf.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/default.conf.template -------------------------------------------------------------------------------- /kitchenowl/devtools_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/devtools_options.yaml -------------------------------------------------------------------------------- /kitchenowl/docker-entrypoint-custom.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/docker-entrypoint-custom.sh -------------------------------------------------------------------------------- /kitchenowl/fedora/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/fedora/build.sh -------------------------------------------------------------------------------- /kitchenowl/fedora/kitchenowl.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/fedora/kitchenowl.spec -------------------------------------------------------------------------------- /kitchenowl/fonts/Items.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/fonts/Items.ttf -------------------------------------------------------------------------------- /kitchenowl/fonts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/fonts/README.md -------------------------------------------------------------------------------- /kitchenowl/fonts/Roboto-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/fonts/Roboto-Black.ttf -------------------------------------------------------------------------------- /kitchenowl/fonts/Roboto-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/fonts/Roboto-BlackItalic.ttf -------------------------------------------------------------------------------- /kitchenowl/fonts/Roboto-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/fonts/Roboto-Bold.ttf -------------------------------------------------------------------------------- /kitchenowl/fonts/Roboto-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/fonts/Roboto-BoldItalic.ttf -------------------------------------------------------------------------------- /kitchenowl/fonts/Roboto-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/fonts/Roboto-Italic.ttf -------------------------------------------------------------------------------- /kitchenowl/fonts/Roboto-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/fonts/Roboto-Light.ttf -------------------------------------------------------------------------------- /kitchenowl/fonts/Roboto-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/fonts/Roboto-LightItalic.ttf -------------------------------------------------------------------------------- /kitchenowl/fonts/Roboto-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/fonts/Roboto-Medium.ttf -------------------------------------------------------------------------------- /kitchenowl/fonts/Roboto-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/fonts/Roboto-MediumItalic.ttf -------------------------------------------------------------------------------- /kitchenowl/fonts/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/fonts/Roboto-Regular.ttf -------------------------------------------------------------------------------- /kitchenowl/fonts/Roboto-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/fonts/Roboto-Thin.ttf -------------------------------------------------------------------------------- /kitchenowl/fonts/Roboto-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/fonts/Roboto-ThinItalic.ttf -------------------------------------------------------------------------------- /kitchenowl/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/ios/.gitignore -------------------------------------------------------------------------------- /kitchenowl/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/ios/Flutter/Debug.xcconfig -------------------------------------------------------------------------------- /kitchenowl/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/ios/Flutter/Release.xcconfig -------------------------------------------------------------------------------- /kitchenowl/ios/Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gem "fastlane" 4 | -------------------------------------------------------------------------------- /kitchenowl/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/ios/Podfile -------------------------------------------------------------------------------- /kitchenowl/ios/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/ios/PrivacyInfo.xcprivacy -------------------------------------------------------------------------------- /kitchenowl/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /kitchenowl/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/ios/Runner/Info.plist -------------------------------------------------------------------------------- /kitchenowl/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /kitchenowl/ios/Runner/Runner.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/ios/Runner/Runner.entitlements -------------------------------------------------------------------------------- /kitchenowl/ios/ShareExtension/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/ios/ShareExtension/Info.plist -------------------------------------------------------------------------------- /kitchenowl/ios/fastlane/Appfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/ios/fastlane/Appfile -------------------------------------------------------------------------------- /kitchenowl/ios/fastlane/Fastfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/ios/fastlane/Fastfile -------------------------------------------------------------------------------- /kitchenowl/ios/fastlane/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/ios/fastlane/README.md -------------------------------------------------------------------------------- /kitchenowl/l10n.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/l10n.yaml -------------------------------------------------------------------------------- /kitchenowl/lib/app.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/lib/app.dart -------------------------------------------------------------------------------- /kitchenowl/lib/config.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/lib/config.dart -------------------------------------------------------------------------------- /kitchenowl/lib/cubits/auth_cubit.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/lib/cubits/auth_cubit.dart -------------------------------------------------------------------------------- /kitchenowl/lib/cubits/expense_cubit.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/lib/cubits/expense_cubit.dart -------------------------------------------------------------------------------- /kitchenowl/lib/cubits/planner_cubit.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/lib/cubits/planner_cubit.dart -------------------------------------------------------------------------------- /kitchenowl/lib/cubits/recipe_cubit.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/lib/cubits/recipe_cubit.dart -------------------------------------------------------------------------------- /kitchenowl/lib/cubits/settings_cubit.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/lib/cubits/settings_cubit.dart -------------------------------------------------------------------------------- /kitchenowl/lib/enums/expenselist_sorting.dart: -------------------------------------------------------------------------------- 1 | enum ExpenselistSorting { 2 | all, 3 | personal; 4 | } 5 | -------------------------------------------------------------------------------- /kitchenowl/lib/enums/oidc_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/lib/enums/oidc_provider.dart -------------------------------------------------------------------------------- /kitchenowl/lib/enums/timeframe.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/lib/enums/timeframe.dart -------------------------------------------------------------------------------- /kitchenowl/lib/enums/token_type_enum.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/lib/enums/token_type_enum.dart -------------------------------------------------------------------------------- /kitchenowl/lib/enums/update_enum.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/lib/enums/update_enum.dart -------------------------------------------------------------------------------- /kitchenowl/lib/enums/views_enum.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/lib/enums/views_enum.dart -------------------------------------------------------------------------------- /kitchenowl/lib/helpers/debouncer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/lib/helpers/debouncer.dart -------------------------------------------------------------------------------- /kitchenowl/lib/helpers/share.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/lib/helpers/share.dart -------------------------------------------------------------------------------- /kitchenowl/lib/helpers/string_scaler.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/lib/helpers/string_scaler.dart -------------------------------------------------------------------------------- /kitchenowl/lib/helpers/url_launcher.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/lib/helpers/url_launcher.dart -------------------------------------------------------------------------------- /kitchenowl/lib/item_icons.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/lib/item_icons.dart -------------------------------------------------------------------------------- /kitchenowl/lib/kitchenowl.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/lib/kitchenowl.dart -------------------------------------------------------------------------------- /kitchenowl/lib/l10n/app_ar.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/lib/l10n/app_ar.arb -------------------------------------------------------------------------------- /kitchenowl/lib/l10n/app_be.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/lib/l10n/app_be.arb -------------------------------------------------------------------------------- /kitchenowl/lib/l10n/app_bg.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/lib/l10n/app_bg.arb -------------------------------------------------------------------------------- /kitchenowl/lib/l10n/app_ca.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/lib/l10n/app_ca.arb -------------------------------------------------------------------------------- /kitchenowl/lib/l10n/app_ca_valencia.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/lib/l10n/app_ca_valencia.arb -------------------------------------------------------------------------------- /kitchenowl/lib/l10n/app_cs.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/lib/l10n/app_cs.arb -------------------------------------------------------------------------------- /kitchenowl/lib/l10n/app_da.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/lib/l10n/app_da.arb -------------------------------------------------------------------------------- /kitchenowl/lib/l10n/app_de.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/lib/l10n/app_de.arb -------------------------------------------------------------------------------- /kitchenowl/lib/l10n/app_de_CH.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/lib/l10n/app_de_CH.arb -------------------------------------------------------------------------------- /kitchenowl/lib/l10n/app_el.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/lib/l10n/app_el.arb -------------------------------------------------------------------------------- /kitchenowl/lib/l10n/app_en.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/lib/l10n/app_en.arb -------------------------------------------------------------------------------- /kitchenowl/lib/l10n/app_en_AU.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/lib/l10n/app_en_AU.arb -------------------------------------------------------------------------------- /kitchenowl/lib/l10n/app_es.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/lib/l10n/app_es.arb -------------------------------------------------------------------------------- /kitchenowl/lib/l10n/app_fa.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/lib/l10n/app_fa.arb -------------------------------------------------------------------------------- /kitchenowl/lib/l10n/app_fi.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/lib/l10n/app_fi.arb -------------------------------------------------------------------------------- /kitchenowl/lib/l10n/app_fr.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/lib/l10n/app_fr.arb -------------------------------------------------------------------------------- /kitchenowl/lib/l10n/app_he.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/lib/l10n/app_he.arb -------------------------------------------------------------------------------- /kitchenowl/lib/l10n/app_hi.arb: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /kitchenowl/lib/l10n/app_hr.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/lib/l10n/app_hr.arb -------------------------------------------------------------------------------- /kitchenowl/lib/l10n/app_hu.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/lib/l10n/app_hu.arb -------------------------------------------------------------------------------- /kitchenowl/lib/l10n/app_id.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/lib/l10n/app_id.arb -------------------------------------------------------------------------------- /kitchenowl/lib/l10n/app_it.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/lib/l10n/app_it.arb -------------------------------------------------------------------------------- /kitchenowl/lib/l10n/app_ja.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/lib/l10n/app_ja.arb -------------------------------------------------------------------------------- /kitchenowl/lib/l10n/app_kab.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/lib/l10n/app_kab.arb -------------------------------------------------------------------------------- /kitchenowl/lib/l10n/app_kk.arb: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /kitchenowl/lib/l10n/app_ko.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/lib/l10n/app_ko.arb -------------------------------------------------------------------------------- /kitchenowl/lib/l10n/app_lt.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/lib/l10n/app_lt.arb -------------------------------------------------------------------------------- /kitchenowl/lib/l10n/app_nb.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/lib/l10n/app_nb.arb -------------------------------------------------------------------------------- /kitchenowl/lib/l10n/app_nl.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/lib/l10n/app_nl.arb -------------------------------------------------------------------------------- /kitchenowl/lib/l10n/app_pa.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/lib/l10n/app_pa.arb -------------------------------------------------------------------------------- /kitchenowl/lib/l10n/app_pl.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/lib/l10n/app_pl.arb -------------------------------------------------------------------------------- /kitchenowl/lib/l10n/app_pt.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/lib/l10n/app_pt.arb -------------------------------------------------------------------------------- /kitchenowl/lib/l10n/app_pt_BR.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/lib/l10n/app_pt_BR.arb -------------------------------------------------------------------------------- /kitchenowl/lib/l10n/app_ro.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/lib/l10n/app_ro.arb -------------------------------------------------------------------------------- /kitchenowl/lib/l10n/app_ru.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/lib/l10n/app_ru.arb -------------------------------------------------------------------------------- /kitchenowl/lib/l10n/app_sk.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/lib/l10n/app_sk.arb -------------------------------------------------------------------------------- /kitchenowl/lib/l10n/app_sl.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/lib/l10n/app_sl.arb -------------------------------------------------------------------------------- /kitchenowl/lib/l10n/app_sv.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/lib/l10n/app_sv.arb -------------------------------------------------------------------------------- /kitchenowl/lib/l10n/app_ta.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/lib/l10n/app_ta.arb -------------------------------------------------------------------------------- /kitchenowl/lib/l10n/app_te.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/lib/l10n/app_te.arb -------------------------------------------------------------------------------- /kitchenowl/lib/l10n/app_tr.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/lib/l10n/app_tr.arb -------------------------------------------------------------------------------- /kitchenowl/lib/l10n/app_uk.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/lib/l10n/app_uk.arb -------------------------------------------------------------------------------- /kitchenowl/lib/l10n/app_vi.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/lib/l10n/app_vi.arb -------------------------------------------------------------------------------- /kitchenowl/lib/l10n/app_zh.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/lib/l10n/app_zh.arb -------------------------------------------------------------------------------- /kitchenowl/lib/l10n/app_zh_Hant.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/lib/l10n/app_zh_Hant.arb -------------------------------------------------------------------------------- /kitchenowl/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/lib/main.dart -------------------------------------------------------------------------------- /kitchenowl/lib/models/category.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/lib/models/category.dart -------------------------------------------------------------------------------- /kitchenowl/lib/models/expense.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/lib/models/expense.dart -------------------------------------------------------------------------------- /kitchenowl/lib/models/household.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/lib/models/household.dart -------------------------------------------------------------------------------- /kitchenowl/lib/models/item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/lib/models/item.dart -------------------------------------------------------------------------------- /kitchenowl/lib/models/member.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/lib/models/member.dart -------------------------------------------------------------------------------- /kitchenowl/lib/models/model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/lib/models/model.dart -------------------------------------------------------------------------------- /kitchenowl/lib/models/nullable.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/lib/models/nullable.dart -------------------------------------------------------------------------------- /kitchenowl/lib/models/planner.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/lib/models/planner.dart -------------------------------------------------------------------------------- /kitchenowl/lib/models/recipe.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/lib/models/recipe.dart -------------------------------------------------------------------------------- /kitchenowl/lib/models/recipe_scrape.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/lib/models/recipe_scrape.dart -------------------------------------------------------------------------------- /kitchenowl/lib/models/report.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/lib/models/report.dart -------------------------------------------------------------------------------- /kitchenowl/lib/models/shoppinglist.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/lib/models/shoppinglist.dart -------------------------------------------------------------------------------- /kitchenowl/lib/models/tag.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/lib/models/tag.dart -------------------------------------------------------------------------------- /kitchenowl/lib/models/token.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/lib/models/token.dart -------------------------------------------------------------------------------- /kitchenowl/lib/models/update_value.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/lib/models/update_value.dart -------------------------------------------------------------------------------- /kitchenowl/lib/models/user.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/lib/models/user.dart -------------------------------------------------------------------------------- /kitchenowl/lib/pages/analytics_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/lib/pages/analytics_page.dart -------------------------------------------------------------------------------- /kitchenowl/lib/pages/expense_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/lib/pages/expense_page.dart -------------------------------------------------------------------------------- /kitchenowl/lib/pages/household_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/lib/pages/household_page.dart -------------------------------------------------------------------------------- /kitchenowl/lib/pages/item_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/lib/pages/item_page.dart -------------------------------------------------------------------------------- /kitchenowl/lib/pages/login_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/lib/pages/login_page.dart -------------------------------------------------------------------------------- /kitchenowl/lib/pages/onboarding_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/lib/pages/onboarding_page.dart -------------------------------------------------------------------------------- /kitchenowl/lib/pages/page_not_found.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/lib/pages/page_not_found.dart -------------------------------------------------------------------------------- /kitchenowl/lib/pages/photo_view_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/lib/pages/photo_view_page.dart -------------------------------------------------------------------------------- /kitchenowl/lib/pages/recipe_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/lib/pages/recipe_page.dart -------------------------------------------------------------------------------- /kitchenowl/lib/pages/settings_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/lib/pages/settings_page.dart -------------------------------------------------------------------------------- /kitchenowl/lib/pages/setup_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/lib/pages/setup_page.dart -------------------------------------------------------------------------------- /kitchenowl/lib/pages/signup_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/lib/pages/signup_page.dart -------------------------------------------------------------------------------- /kitchenowl/lib/pages/splash_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/lib/pages/splash_page.dart -------------------------------------------------------------------------------- /kitchenowl/lib/pages/tutorial_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/lib/pages/tutorial_page.dart -------------------------------------------------------------------------------- /kitchenowl/lib/platform/dart_html/dart_non_web.dart: -------------------------------------------------------------------------------- 1 | String getBaseUri() { 2 | return ''; 3 | } 4 | -------------------------------------------------------------------------------- /kitchenowl/lib/router.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/lib/router.dart -------------------------------------------------------------------------------- /kitchenowl/lib/services/api/category.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/lib/services/api/category.dart -------------------------------------------------------------------------------- /kitchenowl/lib/services/api/expense.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/lib/services/api/expense.dart -------------------------------------------------------------------------------- /kitchenowl/lib/services/api/item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/lib/services/api/item.dart -------------------------------------------------------------------------------- /kitchenowl/lib/services/api/planner.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/lib/services/api/planner.dart -------------------------------------------------------------------------------- /kitchenowl/lib/services/api/recipe.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/lib/services/api/recipe.dart -------------------------------------------------------------------------------- /kitchenowl/lib/services/api/report.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/lib/services/api/report.dart -------------------------------------------------------------------------------- /kitchenowl/lib/services/api/tag.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/lib/services/api/tag.dart -------------------------------------------------------------------------------- /kitchenowl/lib/services/api/upload.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/lib/services/api/upload.dart -------------------------------------------------------------------------------- /kitchenowl/lib/services/api/user.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/lib/services/api/user.dart -------------------------------------------------------------------------------- /kitchenowl/lib/services/transaction.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/lib/services/transaction.dart -------------------------------------------------------------------------------- /kitchenowl/lib/styles/color_mapper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/lib/styles/color_mapper.dart -------------------------------------------------------------------------------- /kitchenowl/lib/styles/colors.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/lib/styles/colors.dart -------------------------------------------------------------------------------- /kitchenowl/lib/styles/dynamic.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/lib/styles/dynamic.dart -------------------------------------------------------------------------------- /kitchenowl/lib/styles/themes.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/lib/styles/themes.dart -------------------------------------------------------------------------------- /kitchenowl/lib/widgets/_export.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/lib/widgets/_export.dart -------------------------------------------------------------------------------- /kitchenowl/lib/widgets/avatar_list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/lib/widgets/avatar_list.dart -------------------------------------------------------------------------------- /kitchenowl/lib/widgets/choice_scroll.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/lib/widgets/choice_scroll.dart -------------------------------------------------------------------------------- /kitchenowl/lib/widgets/expense_item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/lib/widgets/expense_item.dart -------------------------------------------------------------------------------- /kitchenowl/lib/widgets/index_bar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/lib/widgets/index_bar.dart -------------------------------------------------------------------------------- /kitchenowl/lib/widgets/item_chip.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/lib/widgets/item_chip.dart -------------------------------------------------------------------------------- /kitchenowl/lib/widgets/recipe_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/lib/widgets/recipe_card.dart -------------------------------------------------------------------------------- /kitchenowl/lib/widgets/recipe_item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/lib/widgets/recipe_item.dart -------------------------------------------------------------------------------- /kitchenowl/lib/widgets/report_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/lib/widgets/report_dialog.dart -------------------------------------------------------------------------------- /kitchenowl/lib/widgets/select_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/lib/widgets/select_dialog.dart -------------------------------------------------------------------------------- /kitchenowl/lib/widgets/select_file.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/lib/widgets/select_file.dart -------------------------------------------------------------------------------- /kitchenowl/lib/widgets/shimmer_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/lib/widgets/shimmer_card.dart -------------------------------------------------------------------------------- /kitchenowl/lib/widgets/shopping_item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/lib/widgets/shopping_item.dart -------------------------------------------------------------------------------- /kitchenowl/lib/widgets/sliver_text.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/lib/widgets/sliver_text.dart -------------------------------------------------------------------------------- /kitchenowl/lib/widgets/text_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/lib/widgets/text_dialog.dart -------------------------------------------------------------------------------- /kitchenowl/linux/.gitignore: -------------------------------------------------------------------------------- 1 | flutter/ephemeral 2 | -------------------------------------------------------------------------------- /kitchenowl/linux/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/linux/CMakeLists.txt -------------------------------------------------------------------------------- /kitchenowl/linux/flutter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/linux/flutter/CMakeLists.txt -------------------------------------------------------------------------------- /kitchenowl/linux/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/linux/icon.png -------------------------------------------------------------------------------- /kitchenowl/linux/kitchenowl.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/linux/kitchenowl.desktop -------------------------------------------------------------------------------- /kitchenowl/linux/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/linux/main.cc -------------------------------------------------------------------------------- /kitchenowl/linux/my_application.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/linux/my_application.cc -------------------------------------------------------------------------------- /kitchenowl/linux/my_application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/linux/my_application.h -------------------------------------------------------------------------------- /kitchenowl/macos/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/macos/.gitignore -------------------------------------------------------------------------------- /kitchenowl/macos/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/macos/Podfile -------------------------------------------------------------------------------- /kitchenowl/macos/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/macos/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /kitchenowl/macos/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/macos/Runner/Info.plist -------------------------------------------------------------------------------- /kitchenowl/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/pubspec.lock -------------------------------------------------------------------------------- /kitchenowl/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/pubspec.yaml -------------------------------------------------------------------------------- /kitchenowl/test/models/category_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/test/models/category_test.dart -------------------------------------------------------------------------------- /kitchenowl/test/models/expense_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/test/models/expense_test.dart -------------------------------------------------------------------------------- /kitchenowl/test/models/item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/test/models/item.dart -------------------------------------------------------------------------------- /kitchenowl/web/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/web/favicon.ico -------------------------------------------------------------------------------- /kitchenowl/web/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/web/favicon.png -------------------------------------------------------------------------------- /kitchenowl/web/icons/Icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/web/icons/Icon-192.png -------------------------------------------------------------------------------- /kitchenowl/web/icons/Icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/web/icons/Icon-512.png -------------------------------------------------------------------------------- /kitchenowl/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/web/index.html -------------------------------------------------------------------------------- /kitchenowl/web/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/web/manifest.json -------------------------------------------------------------------------------- /kitchenowl/web_dev_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/web_dev_config.yaml -------------------------------------------------------------------------------- /kitchenowl/windows/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/windows/.gitignore -------------------------------------------------------------------------------- /kitchenowl/windows/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/windows/CMakeLists.txt -------------------------------------------------------------------------------- /kitchenowl/windows/flutter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/windows/flutter/CMakeLists.txt -------------------------------------------------------------------------------- /kitchenowl/windows/runner/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/windows/runner/CMakeLists.txt -------------------------------------------------------------------------------- /kitchenowl/windows/runner/Runner.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/windows/runner/Runner.rc -------------------------------------------------------------------------------- /kitchenowl/windows/runner/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/windows/runner/main.cpp -------------------------------------------------------------------------------- /kitchenowl/windows/runner/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/windows/runner/resource.h -------------------------------------------------------------------------------- /kitchenowl/windows/runner/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/windows/runner/utils.cpp -------------------------------------------------------------------------------- /kitchenowl/windows/runner/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/windows/runner/utils.h -------------------------------------------------------------------------------- /kitchenowl/windows/runner/win32_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/kitchenowl/windows/runner/win32_window.h -------------------------------------------------------------------------------- /metadata/en-US/changelogs/100.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/metadata/en-US/changelogs/100.txt -------------------------------------------------------------------------------- /metadata/en-US/changelogs/101.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/metadata/en-US/changelogs/101.txt -------------------------------------------------------------------------------- /metadata/en-US/changelogs/102.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/metadata/en-US/changelogs/102.txt -------------------------------------------------------------------------------- /metadata/en-US/changelogs/105.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/metadata/en-US/changelogs/105.txt -------------------------------------------------------------------------------- /metadata/en-US/changelogs/106.txt: -------------------------------------------------------------------------------- 1 | - New and updated translations 2 | - Some bug fixes 3 | -------------------------------------------------------------------------------- /metadata/en-US/changelogs/107.txt: -------------------------------------------------------------------------------- 1 | - New and updated translations 2 | - Bug fixes 3 | -------------------------------------------------------------------------------- /metadata/en-US/changelogs/108.txt: -------------------------------------------------------------------------------- 1 | - New and updated translations 2 | - Bug fixes 3 | -------------------------------------------------------------------------------- /metadata/en-US/changelogs/109.txt: -------------------------------------------------------------------------------- 1 | - New and updated translations 2 | - Bug fixes 3 | -------------------------------------------------------------------------------- /metadata/en-US/changelogs/110.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/metadata/en-US/changelogs/110.txt -------------------------------------------------------------------------------- /metadata/en-US/changelogs/111.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/metadata/en-US/changelogs/111.txt -------------------------------------------------------------------------------- /metadata/en-US/changelogs/112.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/metadata/en-US/changelogs/112.txt -------------------------------------------------------------------------------- /metadata/en-US/changelogs/113.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/metadata/en-US/changelogs/113.txt -------------------------------------------------------------------------------- /metadata/en-US/changelogs/114.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/metadata/en-US/changelogs/114.txt -------------------------------------------------------------------------------- /metadata/en-US/changelogs/115.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/metadata/en-US/changelogs/115.txt -------------------------------------------------------------------------------- /metadata/en-US/changelogs/116.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/metadata/en-US/changelogs/116.txt -------------------------------------------------------------------------------- /metadata/en-US/changelogs/117.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/metadata/en-US/changelogs/117.txt -------------------------------------------------------------------------------- /metadata/en-US/changelogs/118.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/metadata/en-US/changelogs/118.txt -------------------------------------------------------------------------------- /metadata/en-US/changelogs/57.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/metadata/en-US/changelogs/57.txt -------------------------------------------------------------------------------- /metadata/en-US/changelogs/58.txt: -------------------------------------------------------------------------------- 1 | - BugFixes and improvements -------------------------------------------------------------------------------- /metadata/en-US/changelogs/59.txt: -------------------------------------------------------------------------------- 1 | - Updated search behavior 2 | - Bug fixes -------------------------------------------------------------------------------- /metadata/en-US/changelogs/61.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/metadata/en-US/changelogs/61.txt -------------------------------------------------------------------------------- /metadata/en-US/changelogs/62.txt: -------------------------------------------------------------------------------- 1 | - Fix and improve offline mode 2 | - Updated translations -------------------------------------------------------------------------------- /metadata/en-US/changelogs/63.txt: -------------------------------------------------------------------------------- 1 | - Improve offline mode 2 | - Fix bugs -------------------------------------------------------------------------------- /metadata/en-US/changelogs/67.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/metadata/en-US/changelogs/67.txt -------------------------------------------------------------------------------- /metadata/en-US/changelogs/70.txt: -------------------------------------------------------------------------------- 1 | - Fixed some bugs -------------------------------------------------------------------------------- /metadata/en-US/changelogs/74.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/metadata/en-US/changelogs/74.txt -------------------------------------------------------------------------------- /metadata/en-US/changelogs/75.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/metadata/en-US/changelogs/75.txt -------------------------------------------------------------------------------- /metadata/en-US/changelogs/76.txt: -------------------------------------------------------------------------------- 1 | - Allow cloud sign up 2 | - Adds Belarusian & Polish 3 | - Fix bugs -------------------------------------------------------------------------------- /metadata/en-US/changelogs/79.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/metadata/en-US/changelogs/79.txt -------------------------------------------------------------------------------- /metadata/en-US/changelogs/82.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/metadata/en-US/changelogs/82.txt -------------------------------------------------------------------------------- /metadata/en-US/changelogs/83.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/metadata/en-US/changelogs/83.txt -------------------------------------------------------------------------------- /metadata/en-US/changelogs/84.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/metadata/en-US/changelogs/84.txt -------------------------------------------------------------------------------- /metadata/en-US/changelogs/85.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/metadata/en-US/changelogs/85.txt -------------------------------------------------------------------------------- /metadata/en-US/changelogs/86.txt: -------------------------------------------------------------------------------- 1 | - OIDC support 2 | - Bug-fixes and improvements -------------------------------------------------------------------------------- /metadata/en-US/changelogs/87.txt: -------------------------------------------------------------------------------- 1 | - OIDC support 2 | - Bug-fixes and improvements -------------------------------------------------------------------------------- /metadata/en-US/changelogs/88.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/metadata/en-US/changelogs/88.txt -------------------------------------------------------------------------------- /metadata/en-US/changelogs/89.txt: -------------------------------------------------------------------------------- 1 | - Bug-fixes and improvements -------------------------------------------------------------------------------- /metadata/en-US/changelogs/90.txt: -------------------------------------------------------------------------------- 1 | - Bug-fixes and improvements -------------------------------------------------------------------------------- /metadata/en-US/changelogs/91.txt: -------------------------------------------------------------------------------- 1 | - Bug-fixes and improvements -------------------------------------------------------------------------------- /metadata/en-US/changelogs/92.txt: -------------------------------------------------------------------------------- 1 | - Bug-fixes and improvements -------------------------------------------------------------------------------- /metadata/en-US/changelogs/94.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/metadata/en-US/changelogs/94.txt -------------------------------------------------------------------------------- /metadata/en-US/changelogs/96.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/metadata/en-US/changelogs/96.txt -------------------------------------------------------------------------------- /metadata/en-US/changelogs/97.txt: -------------------------------------------------------------------------------- 1 | - New and updated translations 2 | - Bug-fixes 3 | -------------------------------------------------------------------------------- /metadata/en-US/changelogs/99.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/metadata/en-US/changelogs/99.txt -------------------------------------------------------------------------------- /metadata/en-US/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/metadata/en-US/full_description.txt -------------------------------------------------------------------------------- /metadata/en-US/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/metadata/en-US/images/icon.png -------------------------------------------------------------------------------- /metadata/en-US/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomBursch/kitchenowl/HEAD/metadata/en-US/short_description.txt --------------------------------------------------------------------------------