Skip to content

Commit

Permalink
Version 2.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
BourgeoisLab committed Apr 2, 2023
1 parent 58a6457 commit 01772cb
Show file tree
Hide file tree
Showing 7 changed files with 549 additions and 578 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## Version 2.5.1 (02.04.2023)
- Fix: Aktualisieren des Dropbox Access Tokens
- Fix: Berücksichtigung der Temperatur bei Spindelmessung

## Version 2.5.0 (27.02.2023)
- Neu: Kompatibel zum kleiner-brauhelfer-2 v2.5.0

Expand Down
2 changes: 1 addition & 1 deletion kleiner-brauhelfer-app/kleiner-brauhelfer-app.pro
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ ORGANIZATION = kleiner-brauhelfer
TARGET = kleiner-brauhelfer-app
VER_MAJ = 2
VER_MIN = 5
VER_PAT = 0
VER_PAT = 1
VERSION = $$sprintf("%1.%2.%3",$$VER_MAJ,$$VER_MIN,$$VER_PAT)
DEFINES += ORGANIZATION=\\\"$$ORGANIZATION\\\" TARGET=\\\"$$TARGET\\\" VERSION=\\\"$$VERSION\\\"
DEFINES += VER_MAJ=\"$$VER_MAJ\" VER_MIN=\"$$VER_MIN\" VER_PAT=\"$$VER_PAT\"
Expand Down
Binary file modified kleiner-brauhelfer-app/languages/kb_app_en.qm
Binary file not shown.
1,113 changes: 540 additions & 573 deletions kleiner-brauhelfer-app/languages/kb_app_en.ts

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ PopupBase {
id: messageDialog
text: qsTr("Rohstoff vom Bestand abziehen?")
buttons: MessageDialog.Yes | MessageDialog.No
onAccepted: Brauhelfer.rohstoffAbziehen(
onYesClicked: Brauhelfer.rohstoffAbziehen(
model.Typ === Brauhelfer.ZusatzTyp.Hopfen ? Brauhelfer.RohstoffTyp.Hopfen : Brauhelfer.RohstoffTyp.Zusatz,
model.Name,
model.erg_Menge)
Expand Down
4 changes: 2 additions & 2 deletions kleiner-brauhelfer-app/qml/main.qml
Original file line number Diff line number Diff line change
Expand Up @@ -286,8 +286,8 @@ ApplicationWindow {
MessageDialog {
id: messageDialogQuit
text: qsTr("Soll das Programm geschlossen werden?")
buttons: MessageDialog.Ok | MessageDialog.Cancel
onAccepted: Qt.quit()
buttons: MessageDialog.Yes | MessageDialog.No
onYesClicked: Qt.quit()
}

// message dialog to ask for save and quit
Expand Down
2 changes: 1 addition & 1 deletion kleiner-brauhelfer-app/qml/pagesSud/PageSudBrauen.qml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ PageBase {
id: messageDialog
text: qsTr("Verwendete Rohstoffe vom Bestand abziehen?")
buttons: MessageDialog.Yes | MessageDialog.No
onAccepted: Brauhelfer.sud.brauzutatenAbziehen()
onYesClicked: Brauhelfer.sud.brauzutatenAbziehen()
}

ColumnLayout {
Expand Down

0 comments on commit 01772cb

Please sign in to comment.