Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion coffeebuddy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from flask_sqlalchemy import SQLAlchemy
from sqlalchemy.orm import DeclarativeBase

__version__ = "2.7.1"
__version__ = "2.8.0"


logging.basicConfig(
Expand Down
15 changes: 13 additions & 2 deletions coffeebuddy/model.py
Original file line number Diff line number Diff line change
Expand Up @@ -554,9 +554,20 @@ class CoffeeVariant(Base, Serializer):
"strength": CoffeeSettings(
"Strength",
min=1,
max=5,
max=10,
step=1,
names=["XMild", "Mild", "Normal", "Strong", "XStrong"],
names=[
"XMild",
"XMild+",
"Mild",
"Mild+",
"Normal",
"Normal+",
"Strong",
"Strong+",
"XStrong",
"XStrong+",
],
),
"grinder_ratio": CoffeeSettings(
"Grinder ratio",
Expand Down
8 changes: 4 additions & 4 deletions pdm.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ license = { text = "MIT" }

[dependency-groups]
coffeemaker = [
"jura-ble @ git+https://github.com/hackenbergstefan/jura_ble.git@v2.0.2",
"jura-ble @ git+https://github.com/hackenbergstefan/jura_ble.git@v2.0.3",
]
rpi = ["mfrc522>=0.0.7", "pi-rc522>=2.3.0", "pigpio>=1.78", "spidev>=3.6"]
pcsc = ["pyscard>=2.2.1"]
Expand Down