Skip to content

Commit

Permalink
v2.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
BourgeoisLab committed Jun 27, 2021
1 parent 02c71fc commit 04fb82e
Show file tree
Hide file tree
Showing 10 changed files with 261 additions and 244 deletions.
6 changes: 3 additions & 3 deletions README.md
Expand Up @@ -17,7 +17,7 @@ https://hobbybrauer.de/forum/viewtopic.php?f=3&t=21510
Flaggenicons erstellt von [Freepik](https://www.flaticon.com/authors/freepik) von [www.flaticon.com](http://www.flaticon.com/).

## Download letzte Version
- [Version 2.3.0](https://github.com/kleiner-brauhelfer/kleiner-brauhelfer-2/releases/latest/)
- [Version 2.3.1](https://github.com/kleiner-brauhelfer/kleiner-brauhelfer-2/releases/latest/)

### Windows
- **kbh2_v2.x.x_setup_win_x64.exe**: Installationsdatei für 64bit System
Expand All @@ -27,7 +27,7 @@ Flaggenicons erstellt von [Freepik](https://www.flaticon.com/authors/freepik) vo

### Linux
- **kbh2_v2.x.x_linux_x64.deb**: Installationsdatei für 64bit System
- Benötigt zusätzlich Installation von [Qt 5.15.0](https://www.qt.io/download-qt-installer) mit folgenden Komponenten
- Benötigt zusätzlich Installation von [Qt 5.15.2](https://www.qt.io/download-qt-installer) mit folgenden Komponenten
- Desktop gcc 64-bit, Qt Charts, Qt WebEngine
- Benötigt OpenSSL 1.1.1b oder höher
- **kleiner-brauhelfer-2-x86_64.AppImage**: Portable Version (AppImage) für 64bit System
Expand All @@ -47,7 +47,7 @@ Standardmässig wird der kleine-brauhelfer automatisch anhand der Pixeldichte de

## Änderungen & Erweiterungen

### Version 2.3.1 (in Entwicklung)
### Version 2.3.1 (27.06.2021)
- Neu: Offizielle version kompiliert mit **Qt 5.15.2**
- Neu: Die meisten Eingabefelder für Bemerkungen unterstützen HTML (inklusive Editor)
- Neu: Modul Schnellgärprobe ein- und ausschaltbar
Expand Down
5 changes: 5 additions & 0 deletions kleiner-brauhelfer/dialogs/dlghilfe.cpp
Expand Up @@ -32,5 +32,10 @@ DlgHilfe::~DlgHilfe()

void DlgHilfe::setUrl(const QUrl &url)
{
#ifdef QT_WEBENGINECORE_LIB
ui->webview->setUrl(url);
#else
Q_UNUSED(url)
ui->webview->setHtml(tr("Nicht unterstützt."));
#endif
}
4 changes: 4 additions & 0 deletions kleiner-brauhelfer/dialogs/dlgrichtexteditor.cpp
Expand Up @@ -98,7 +98,9 @@ void DlgRichTextEditor::on_tbRichText_cursorPositionChanged()
ui->btnListOrdered->setChecked(list && style == QTextListFormat::ListDecimal);

QTextBlockFormat blockFormat = cursor.blockFormat();
#if (QT_VERSION >= QT_VERSION_CHECK(5, 12, 0))
ui->cbStyle->setCurrentIndex(blockFormat.headingLevel());
#endif
ui->btnLeft->setChecked(blockFormat.alignment() & Qt::AlignLeft);
ui->btnCenter->setChecked(blockFormat.alignment() & Qt::AlignHCenter);
ui->btnRight->setChecked(blockFormat.alignment() & Qt::AlignRight);
Expand Down Expand Up @@ -131,7 +133,9 @@ void DlgRichTextEditor::on_cbStyle_currentIndexChanged(int index)
cursor.select(QTextCursor::BlockUnderCursor);

QTextBlockFormat blockFormat = cursor.blockFormat();
#if (QT_VERSION >= QT_VERSION_CHECK(5, 12, 0))
blockFormat.setHeadingLevel(index);
#endif
cursor.setBlockFormat(blockFormat);

QTextCharFormat format;
Expand Down
7 changes: 0 additions & 7 deletions kleiner-brauhelfer/tabbraudaten.ui
Expand Up @@ -1136,13 +1136,6 @@
</property>
</widget>
</item>
<item row="6" column="0" colspan="4">
<widget class="Line" name="line_22">
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
</widget>
</item>
<item row="2" column="5">
<widget class="QLabel" name="label_19">
<property name="toolTip">
Expand Down
Binary file modified kleiner-brauhelfer/translations/kbh_en.qm
Binary file not shown.
161 changes: 83 additions & 78 deletions kleiner-brauhelfer/translations/kbh_en.ts

Large diffs are not rendered by default.

Binary file modified kleiner-brauhelfer/translations/kbh_nl.qm
Binary file not shown.
161 changes: 83 additions & 78 deletions kleiner-brauhelfer/translations/kbh_nl.ts

Large diffs are not rendered by default.

Binary file modified kleiner-brauhelfer/translations/kbh_sv.qm
Binary file not shown.
161 changes: 83 additions & 78 deletions kleiner-brauhelfer/translations/kbh_sv.ts

Large diffs are not rendered by default.

0 comments on commit 04fb82e

Please sign in to comment.