feat(v1.4.1): Bugfixes + Checklist auto line wrap

Fixed:
- Delete notes from older app versions (v1.2.0 compatibility)
- Checklist sync backwards compatibility (v1.3.x)
  - Fallback content in GitHub task list format
  - Recovery mode for lost checklistItems

Improved:
- Checklist auto line wrap (no maxLines limit)
- Enter key creates new item (via TextWatcher)

Metadata:
- Changelogs for versionCode 12
- IzzyOnDroid metadata updated
This commit is contained in:
inventory69
2026-01-11 21:53:49 +01:00
parent 9b37078cce
commit 356ccde627
11 changed files with 211 additions and 31 deletions

View File

@@ -31,6 +31,7 @@
android:minHeight="0dp" />
<!-- Text Input (ohne Box, nur transparent) -->
<!-- v1.4.1: Auto-Zeilenumbruch für lange Texte -->
<EditText
android:id="@+id/etItemText"
android:layout_width="0dp"
@@ -38,9 +39,7 @@
android:layout_weight="1"
android:background="@null"
android:hint="@string/item_placeholder"
android:inputType="text"
android:imeOptions="actionNext"
android:maxLines="3"
android:inputType="textMultiLine|textCapSentences"
android:textAppearance="@style/TextAppearance.Material3.BodyLarge"
tools:text="Milch kaufen" />